PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` # Generated by default/object.tt package Paws::SageMaker::Filter; use Moose; has Name => (is => 'ro', isa => 'Str', required => 1); has Operator => (is => 'ro', isa => 'Str'); has Value => (is => 'ro', isa => 'Str'); 1; ### main pod documentation begin ### =head1 NAME Paws::SageMaker::Filter =head1 USAGE This class represents one of two things: =head3 Arguments in a call to a service Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. Each attribute should be used as a named argument in the calls that expect this type of object. As an example, if Att1 is expected to be a Paws::SageMaker::Filter object: $service_obj->Method(Att1 => { Name => $value, ..., Value => $value }); =head3 Results returned from an API call Use accessors for each attribute. If Att1 is expected to be an Paws::SageMaker::Filter object: $result = $service_obj->Method(...); $result->Att1->Name =head1 DESCRIPTION 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 C, but not an C, Amazon SageMaker uses the equals operator. In search, there are several property types: =over =item Metrics To define a metric filter, enter a value using the form C<"Metrics.EnameE">, where CnameE> is a metric name. For example, the following filter searches for training jobs with an C<"accuracy"> metric greater than C<"0.9">: C<{> C<"Name": "Metrics.accuracy",> C<"Operator": "GreaterThan",> C<"Value": "0.9"> C<}> =item HyperParameters To define a hyperparameter filter, enter a value with the form C<"HyperParameters.EnameE">. Decimal hyperparameter values are treated as a decimal in a comparison if the specified C is also a decimal value. If the specified C is an integer, the decimal hyperparameter values are treated as integers. For example, the following filter is satisfied by training jobs with a C<"learning_rate"> hyperparameter that is less than C<"0.5">: C<{> C<"Name": "HyperParameters.learning_rate",> C<"Operator": "LessThan",> C<"Value": "0.5"> C<}> =item Tags To define a tag filter, enter a value with the form CkeyE>. =back =head1 ATTRIBUTES =head2 B Name => Str A resource property name. For example, C. For valid property names, see SearchRecord. You must specify a valid property for the resource. =head2 Operator => Str A Boolean binary operator that is used to evaluate the filter. The operator field contains one of the following values: =over =item Equals The value of C equals C. =item NotEquals The value of C doesn't equal C. =item Exists The C property exists. =item NotExists The C property does not exist. =item GreaterThan The value of C is greater than C. Not supported for text properties. =item GreaterThanOrEqualTo The value of C is greater than or equal to C. Not supported for text properties. =item LessThan The value of C is less than C. Not supported for text properties. =item LessThanOrEqualTo The value of C is less than or equal to C. Not supported for text properties. =item In The value of C is one of the comma delimited strings in C. Only supported for text properties. =item Contains The value of C contains the string C. Only supported for text properties. A C can include the C operator multiple times when the value of C is one of the following: =over =item * C =item * C =item * C =item * C =item * C =item * C =item * C =item * C =item * C =item * C =item * C =back A C can include only one C operator for all other values of C. In these cases, if you include multiple C operators in the C, the result is the following error message: "C<'CONTAINS' operator usage limit of 1 exceeded.>" =back =head2 Value => Str A value used with C and C to determine which resources satisfy the filter's condition. For numerical properties, C must be an integer or floating-point decimal. For timestamp properties, C must be an ISO 8601 date-time string of the following format: C. =head1 SEE ALSO This class forms part of L, describing an object used in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut