libZSservicesZSamazonka-sagemakerZSamazonka-sagemaker
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.SageMaker.Types.Filter

Description

 
Synopsis

Documentation

data Filter Source #

A conditional statement for a search expression that includes a resource property, a Boolean operator, and a value. Resources that match the statement are returned in the results from the Search API.

If you specify a Value, but not an Operator, Amazon SageMaker uses the equals operator.

In search, there are several property types:

Metrics
To define a metric filter, enter a value using the form "Metrics.<name>", where <name> is a metric name. For example, the following filter searches for training jobs with an "accuracy" metric greater than "0.9":
{
"Name": "Metrics.accuracy",
"Operator": "GreaterThan",
"Value": "0.9"
}
HyperParameters
To define a hyperparameter filter, enter a value with the form "HyperParameters.<name>". Decimal hyperparameter values are treated as a decimal in a comparison if the specified Value is also a decimal value. If the specified Value is an integer, the decimal hyperparameter values are treated as integers. For example, the following filter is satisfied by training jobs with a "learning_rate" hyperparameter that is less than "0.5":
 {
 "Name": "HyperParameters.learning_rate",
 "Operator": "LessThan",
 "Value": "0.5"
 }
Tags
To define a tag filter, enter a value with the form Tags.<key>.

See: newFilter smart constructor.

Constructors

Filter' 

Fields

  • operator :: Maybe Operator

    A Boolean binary operator that is used to evaluate the filter. The operator field contains one of the following values:

    Equals
    The value of Name equals Value.
    NotEquals
    The value of Name doesn't equal Value.
    Exists
    The Name property exists.
    NotExists
    The Name property does not exist.
    GreaterThan
    The value of Name is greater than Value. Not supported for text properties.
    GreaterThanOrEqualTo
    The value of Name is greater than or equal to Value. Not supported for text properties.
    LessThan
    The value of Name is less than Value. Not supported for text properties.
    LessThanOrEqualTo
    The value of Name is less than or equal to Value. Not supported for text properties.
    In
    The value of Name is one of the comma delimited strings in Value. Only supported for text properties.
    Contains
    The value of Name contains the string Value. Only supported for text properties.

    A SearchExpression can include the Contains operator multiple times when the value of Name is one of the following:

    • Experiment.DisplayName
    • Experiment.ExperimentName
    • Experiment.Tags
    • Trial.DisplayName
    • Trial.TrialName
    • Trial.Tags
    • TrialComponent.DisplayName
    • TrialComponent.TrialComponentName
    • TrialComponent.Tags
    • TrialComponent.InputArtifacts
    • TrialComponent.OutputArtifacts

    A SearchExpression can include only one Contains operator for all other values of Name. In these cases, if you include multiple Contains operators in the SearchExpression, the result is the following error message: "'CONTAINS' operator usage limit of 1 exceeded."

  • value :: Maybe Text

    A value used with Name and Operator to determine which resources satisfy the filter's condition. For numerical properties, Value must be an integer or floating-point decimal. For timestamp properties, Value must be an ISO 8601 date-time string of the following format: YYYY-mm-dd'T'HH:MM:SS.

  • name :: Text

    A resource property name. For example, TrainingJobName. For valid property names, see SearchRecord. You must specify a valid property for the resource.

Instances

Instances details
Eq Filter Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Filter

Methods

(==) :: Filter -> Filter -> Bool #

(/=) :: Filter -> Filter -> Bool #

Read Filter Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Filter

Show Filter Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Filter

Generic Filter Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Filter

Associated Types

type Rep Filter :: Type -> Type #

Methods

from :: Filter -> Rep Filter x #

to :: Rep Filter x -> Filter #

NFData Filter Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Filter

Methods

rnf :: Filter -> () #

Hashable Filter Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Filter

Methods

hashWithSalt :: Int -> Filter -> Int #

hash :: Filter -> Int #

ToJSON Filter Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Filter

type Rep Filter Source # 
Instance details

Defined in Amazonka.SageMaker.Types.Filter

type Rep Filter = D1 ('MetaData "Filter" "Amazonka.SageMaker.Types.Filter" "libZSservicesZSamazonka-sagemakerZSamazonka-sagemaker" 'False) (C1 ('MetaCons "Filter'" 'PrefixI 'True) (S1 ('MetaSel ('Just "operator") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Operator)) :*: (S1 ('MetaSel ('Just "value") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))

newFilter Source #

Create a value of Filter with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:operator:Filter', filter_operator - A Boolean binary operator that is used to evaluate the filter. The operator field contains one of the following values:

Equals
The value of Name equals Value.
NotEquals
The value of Name doesn't equal Value.
Exists
The Name property exists.
NotExists
The Name property does not exist.
GreaterThan
The value of Name is greater than Value. Not supported for text properties.
GreaterThanOrEqualTo
The value of Name is greater than or equal to Value. Not supported for text properties.
LessThan
The value of Name is less than Value. Not supported for text properties.
LessThanOrEqualTo
The value of Name is less than or equal to Value. Not supported for text properties.
In
The value of Name is one of the comma delimited strings in Value. Only supported for text properties.
Contains
The value of Name contains the string Value. Only supported for text properties.

A SearchExpression can include the Contains operator multiple times when the value of Name is one of the following:

  • Experiment.DisplayName
  • Experiment.ExperimentName
  • Experiment.Tags
  • Trial.DisplayName
  • Trial.TrialName
  • Trial.Tags
  • TrialComponent.DisplayName
  • TrialComponent.TrialComponentName
  • TrialComponent.Tags
  • TrialComponent.InputArtifacts
  • TrialComponent.OutputArtifacts

A SearchExpression can include only one Contains operator for all other values of Name. In these cases, if you include multiple Contains operators in the SearchExpression, the result is the following error message: "'CONTAINS' operator usage limit of 1 exceeded."

$sel:value:Filter', filter_value - A value used with Name and Operator to determine which resources satisfy the filter's condition. For numerical properties, Value must be an integer or floating-point decimal. For timestamp properties, Value must be an ISO 8601 date-time string of the following format: YYYY-mm-dd'T'HH:MM:SS.

$sel:name:Filter', filter_name - A resource property name. For example, TrainingJobName. For valid property names, see SearchRecord. You must specify a valid property for the resource.

filter_operator :: Lens' Filter (Maybe Operator) Source #

A Boolean binary operator that is used to evaluate the filter. The operator field contains one of the following values:

Equals
The value of Name equals Value.
NotEquals
The value of Name doesn't equal Value.
Exists
The Name property exists.
NotExists
The Name property does not exist.
GreaterThan
The value of Name is greater than Value. Not supported for text properties.
GreaterThanOrEqualTo
The value of Name is greater than or equal to Value. Not supported for text properties.
LessThan
The value of Name is less than Value. Not supported for text properties.
LessThanOrEqualTo
The value of Name is less than or equal to Value. Not supported for text properties.
In
The value of Name is one of the comma delimited strings in Value. Only supported for text properties.
Contains
The value of Name contains the string Value. Only supported for text properties.

A SearchExpression can include the Contains operator multiple times when the value of Name is one of the following:

  • Experiment.DisplayName
  • Experiment.ExperimentName
  • Experiment.Tags
  • Trial.DisplayName
  • Trial.TrialName
  • Trial.Tags
  • TrialComponent.DisplayName
  • TrialComponent.TrialComponentName
  • TrialComponent.Tags
  • TrialComponent.InputArtifacts
  • TrialComponent.OutputArtifacts

A SearchExpression can include only one Contains operator for all other values of Name. In these cases, if you include multiple Contains operators in the SearchExpression, the result is the following error message: "'CONTAINS' operator usage limit of 1 exceeded."

filter_value :: Lens' Filter (Maybe Text) Source #

A value used with Name and Operator to determine which resources satisfy the filter's condition. For numerical properties, Value must be an integer or floating-point decimal. For timestamp properties, Value must be an ISO 8601 date-time string of the following format: YYYY-mm-dd'T'HH:MM:SS.

filter_name :: Lens' Filter Text Source #

A resource property name. For example, TrainingJobName. For valid property names, see SearchRecord. You must specify a valid property for the resource.