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` package Paws::MachineLearning::DescribeEvaluations; use Moose; has EQ => (is => 'ro', isa => 'Str'); has FilterVariable => (is => 'ro', isa => 'Str'); has GE => (is => 'ro', isa => 'Str'); has GT => (is => 'ro', isa => 'Str'); has LE => (is => 'ro', isa => 'Str'); has Limit => (is => 'ro', isa => 'Int'); has LT => (is => 'ro', isa => 'Str'); has NE => (is => 'ro', isa => 'Str'); has NextToken => (is => 'ro', isa => 'Str'); has Prefix => (is => 'ro', isa => 'Str'); has SortOrder => (is => 'ro', isa => 'Str'); use MooseX::ClassAttribute; class_has _api_call => (isa => 'Str', is => 'ro', default => 'DescribeEvaluations'); class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::MachineLearning::DescribeEvaluationsOutput'); class_has _result_key => (isa => 'Str', is => 'ro'); 1; ### main pod documentation begin ### =head1 NAME Paws::MachineLearning::DescribeEvaluations - Arguments for method DescribeEvaluations on L =head1 DESCRIPTION This class represents the parameters used for calling the method DescribeEvaluations on the L service. Use the attributes of this class as arguments to method DescribeEvaluations. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DescribeEvaluations. =head1 SYNOPSIS my $machinelearning = Paws->service('MachineLearning'); my $DescribeEvaluationsOutput = $machinelearning->DescribeEvaluations( EQ => 'MyComparatorValue', # OPTIONAL FilterVariable => 'CreatedAt', # OPTIONAL GE => 'MyComparatorValue', # OPTIONAL GT => 'MyComparatorValue', # OPTIONAL LE => 'MyComparatorValue', # OPTIONAL LT => 'MyComparatorValue', # OPTIONAL Limit => 1, # OPTIONAL NE => 'MyComparatorValue', # OPTIONAL NextToken => 'MyStringType', # OPTIONAL Prefix => 'MyComparatorValue', # OPTIONAL SortOrder => 'asc', # OPTIONAL ); # Results: my $NextToken = $DescribeEvaluationsOutput->NextToken; my $Results = $DescribeEvaluationsOutput->Results; # Returns a L object. Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see L =head1 ATTRIBUTES =head2 EQ => Str The equal to operator. The C results will have C values that exactly match the value specified with C. =head2 FilterVariable => Str Use one of the following variable to filter a list of C objects: =over =item * C - Sets the search criteria to the C creation date. =item * C - Sets the search criteria to the C status. =item * C - Sets the search criteria to the contents of C B< > C. =item * C - Sets the search criteria to the user account that invoked an C. =item * C - Sets the search criteria to the C that was evaluated. =item * C - Sets the search criteria to the C used in C. =item * C - Sets the search criteria to the data file(s) used in C. The URL can identify either a file or an Amazon Simple Storage Solution (Amazon S3) bucket or directory. =back Valid values are: C<"CreatedAt">, C<"LastUpdatedAt">, C<"Status">, C<"Name">, C<"IAMUser">, C<"MLModelId">, C<"DataSourceId">, C<"DataURI"> =head2 GE => Str The greater than or equal to operator. The C results will have C values that are greater than or equal to the value specified with C. =head2 GT => Str The greater than operator. The C results will have C values that are greater than the value specified with C. =head2 LE => Str The less than or equal to operator. The C results will have C values that are less than or equal to the value specified with C. =head2 Limit => Int The maximum number of C to include in the result. =head2 LT => Str The less than operator. The C results will have C values that are less than the value specified with C. =head2 NE => Str The not equal to operator. The C results will have C values not equal to the value specified with C. =head2 NextToken => Str The ID of the page in the paginated results. =head2 Prefix => Str A string that is found at the beginning of a variable, such as C or C. For example, an C could have the C C<2014-09-09-HolidayGiftMailer>. To search for this C, select C for the C and any of the following strings for the C: =over =item * 2014-09 =item * 2014-09-09 =item * 2014-09-09-Holiday =back =head2 SortOrder => Str A two-value parameter that determines the sequence of the resulting list of C. =over =item * C - Arranges the list in ascending order (A-Z, 0-9). =item * C - Arranges the list in descending order (Z-A, 9-0). =back Results are sorted by C. Valid values are: C<"asc">, C<"dsc"> =head1 SEE ALSO This class forms part of L, documenting arguments for method DescribeEvaluations in L =head1 BUGS and CONTRIBUTIONS The source code is located here: L Please report bugs to: L =cut