File Coverage

blib/lib/Paws/MachineLearning/DescribeEvaluations.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::MachineLearning::DescribeEvaluations;
3 1     1   612 use Moose;
  1         5  
  1         14  
4             has EQ => (is => 'ro', isa => 'Str');
5             has FilterVariable => (is => 'ro', isa => 'Str');
6             has GE => (is => 'ro', isa => 'Str');
7             has GT => (is => 'ro', isa => 'Str');
8             has LE => (is => 'ro', isa => 'Str');
9             has Limit => (is => 'ro', isa => 'Int');
10             has LT => (is => 'ro', isa => 'Str');
11             has NE => (is => 'ro', isa => 'Str');
12             has NextToken => (is => 'ro', isa => 'Str');
13             has Prefix => (is => 'ro', isa => 'Str');
14             has SortOrder => (is => 'ro', isa => 'Str');
15              
16 1     1   8694 use MooseX::ClassAttribute;
  1         4  
  1         9  
17              
18             class_has _api_call => (isa => 'Str', is => 'ro', default => 'DescribeEvaluations');
19             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::MachineLearning::DescribeEvaluationsOutput');
20             class_has _result_key => (isa => 'Str', is => 'ro');
21             1;
22              
23             ### main pod documentation begin ###
24              
25             =head1 NAME
26              
27             Paws::MachineLearning::DescribeEvaluations - Arguments for method DescribeEvaluations on Paws::MachineLearning
28              
29             =head1 DESCRIPTION
30              
31             This class represents the parameters used for calling the method DescribeEvaluations on the
32             Amazon Machine Learning service. Use the attributes of this class
33             as arguments to method DescribeEvaluations.
34              
35             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to DescribeEvaluations.
36              
37             As an example:
38              
39             $service_obj->DescribeEvaluations(Att1 => $value1, Att2 => $value2, ...);
40              
41             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.
42              
43             =head1 ATTRIBUTES
44              
45              
46             =head2 EQ => Str
47              
48             The equal to operator. The C<Evaluation> results will have
49             C<FilterVariable> values that exactly match the value specified with
50             C<EQ>.
51              
52              
53              
54             =head2 FilterVariable => Str
55              
56             Use one of the following variable to filter a list of C<Evaluation>
57             objects:
58              
59             =over
60              
61             =item * C<CreatedAt> - Sets the search criteria to the C<Evaluation>
62             creation date.
63              
64             =item * C<Status> - Sets the search criteria to the C<Evaluation>
65             status.
66              
67             =item * C<Name> - Sets the search criteria to the contents of
68             C<Evaluation> B< > C<Name>.
69              
70             =item * C<IAMUser> - Sets the search criteria to the user account that
71             invoked an C<Evaluation>.
72              
73             =item * C<MLModelId> - Sets the search criteria to the C<MLModel> that
74             was evaluated.
75              
76             =item * C<DataSourceId> - Sets the search criteria to the C<DataSource>
77             used in C<Evaluation>.
78              
79             =item * C<DataUri> - Sets the search criteria to the data file(s) used
80             in C<Evaluation>. The URL can identify either a file or an Amazon
81             Simple Storage Solution (Amazon S3) bucket or directory.
82              
83             =back
84              
85              
86             Valid values are: C<"CreatedAt">, C<"LastUpdatedAt">, C<"Status">, C<"Name">, C<"IAMUser">, C<"MLModelId">, C<"DataSourceId">, C<"DataURI">
87              
88             =head2 GE => Str
89              
90             The greater than or equal to operator. The C<Evaluation> results will
91             have C<FilterVariable> values that are greater than or equal to the
92             value specified with C<GE>.
93              
94              
95              
96             =head2 GT => Str
97              
98             The greater than operator. The C<Evaluation> results will have
99             C<FilterVariable> values that are greater than the value specified with
100             C<GT>.
101              
102              
103              
104             =head2 LE => Str
105              
106             The less than or equal to operator. The C<Evaluation> results will have
107             C<FilterVariable> values that are less than or equal to the value
108             specified with C<LE>.
109              
110              
111              
112             =head2 Limit => Int
113              
114             The maximum number of C<Evaluation> to include in the result.
115              
116              
117              
118             =head2 LT => Str
119              
120             The less than operator. The C<Evaluation> results will have
121             C<FilterVariable> values that are less than the value specified with
122             C<LT>.
123              
124              
125              
126             =head2 NE => Str
127              
128             The not equal to operator. The C<Evaluation> results will have
129             C<FilterVariable> values not equal to the value specified with C<NE>.
130              
131              
132              
133             =head2 NextToken => Str
134              
135             The ID of the page in the paginated results.
136              
137              
138              
139             =head2 Prefix => Str
140              
141             A string that is found at the beginning of a variable, such as C<Name>
142             or C<Id>.
143              
144             For example, an C<Evaluation> could have the C<Name>
145             C<2014-09-09-HolidayGiftMailer>. To search for this C<Evaluation>,
146             select C<Name> for the C<FilterVariable> and any of the following
147             strings for the C<Prefix>:
148              
149             =over
150              
151             =item *
152              
153             2014-09
154              
155             =item *
156              
157             2014-09-09
158              
159             =item *
160              
161             2014-09-09-Holiday
162              
163             =back
164              
165              
166              
167              
168             =head2 SortOrder => Str
169              
170             A two-value parameter that determines the sequence of the resulting
171             list of C<Evaluation>.
172              
173             =over
174              
175             =item * C<asc> - Arranges the list in ascending order (A-Z, 0-9).
176              
177             =item * C<dsc> - Arranges the list in descending order (Z-A, 9-0).
178              
179             =back
180              
181             Results are sorted by C<FilterVariable>.
182              
183             Valid values are: C<"asc">, C<"dsc">
184              
185              
186             =head1 SEE ALSO
187              
188             This class forms part of L<Paws>, documenting arguments for method DescribeEvaluations in L<Paws::MachineLearning>
189              
190             =head1 BUGS and CONTRIBUTIONS
191              
192             The source code is located here: https://github.com/pplu/aws-sdk-perl
193              
194             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
195              
196             =cut
197