File Coverage

blib/lib/Paws/MachineLearning/GetBatchPredictionOutput.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::MachineLearning::GetBatchPredictionOutput;
3 1     1   490 use Moose;
  1         2  
  1         7  
4             has BatchPredictionDataSourceId => (is => 'ro', isa => 'Str');
5             has BatchPredictionId => (is => 'ro', isa => 'Str');
6             has ComputeTime => (is => 'ro', isa => 'Int');
7             has CreatedAt => (is => 'ro', isa => 'Str');
8             has CreatedByIamUser => (is => 'ro', isa => 'Str');
9             has FinishedAt => (is => 'ro', isa => 'Str');
10             has InputDataLocationS3 => (is => 'ro', isa => 'Str');
11             has InvalidRecordCount => (is => 'ro', isa => 'Int');
12             has LastUpdatedAt => (is => 'ro', isa => 'Str');
13             has LogUri => (is => 'ro', isa => 'Str');
14             has Message => (is => 'ro', isa => 'Str');
15             has MLModelId => (is => 'ro', isa => 'Str');
16             has Name => (is => 'ro', isa => 'Str');
17             has OutputUri => (is => 'ro', isa => 'Str');
18             has StartedAt => (is => 'ro', isa => 'Str');
19             has Status => (is => 'ro', isa => 'Str');
20             has TotalRecordCount => (is => 'ro', isa => 'Int');
21              
22             has _request_id => (is => 'ro', isa => 'Str');
23              
24             ### main pod documentation begin ###
25              
26             =head1 NAME
27              
28             Paws::MachineLearning::GetBatchPredictionOutput
29              
30             =head1 ATTRIBUTES
31              
32              
33             =head2 BatchPredictionDataSourceId => Str
34              
35             The ID of the C<DataSource> that was used to create the
36             C<BatchPrediction>.
37              
38              
39             =head2 BatchPredictionId => Str
40              
41             An ID assigned to the C<BatchPrediction> at creation. This value should
42             be identical to the value of the C<BatchPredictionID> in the request.
43              
44              
45             =head2 ComputeTime => Int
46              
47             The approximate CPU time in milliseconds that Amazon Machine Learning
48             spent processing the C<BatchPrediction>, normalized and scaled on
49             computation resources. C<ComputeTime> is only available if the
50             C<BatchPrediction> is in the C<COMPLETED> state.
51              
52              
53             =head2 CreatedAt => Str
54              
55             The time when the C<BatchPrediction> was created. The time is expressed
56             in epoch time.
57              
58              
59             =head2 CreatedByIamUser => Str
60              
61             The AWS user account that invoked the C<BatchPrediction>. The account
62             type can be either an AWS root account or an AWS Identity and Access
63             Management (IAM) user account.
64              
65              
66             =head2 FinishedAt => Str
67              
68             The epoch time when Amazon Machine Learning marked the
69             C<BatchPrediction> as C<COMPLETED> or C<FAILED>. C<FinishedAt> is only
70             available when the C<BatchPrediction> is in the C<COMPLETED> or
71             C<FAILED> state.
72              
73              
74             =head2 InputDataLocationS3 => Str
75              
76             The location of the data file or directory in Amazon Simple Storage
77             Service (Amazon S3).
78              
79              
80             =head2 InvalidRecordCount => Int
81              
82             The number of invalid records that Amazon Machine Learning saw while
83             processing the C<BatchPrediction>.
84              
85              
86             =head2 LastUpdatedAt => Str
87              
88             The time of the most recent edit to C<BatchPrediction>. The time is
89             expressed in epoch time.
90              
91              
92             =head2 LogUri => Str
93              
94             A link to the file that contains logs of the C<CreateBatchPrediction>
95             operation.
96              
97              
98             =head2 Message => Str
99              
100             A description of the most recent details about processing the batch
101             prediction request.
102              
103              
104             =head2 MLModelId => Str
105              
106             The ID of the C<MLModel> that generated predictions for the
107             C<BatchPrediction> request.
108              
109              
110             =head2 Name => Str
111              
112             A user-supplied name or description of the C<BatchPrediction>.
113              
114              
115             =head2 OutputUri => Str
116              
117             The location of an Amazon S3 bucket or directory to receive the
118             operation results.
119              
120              
121             =head2 StartedAt => Str
122              
123             The epoch time when Amazon Machine Learning marked the
124             C<BatchPrediction> as C<INPROGRESS>. C<StartedAt> isn't available if
125             the C<BatchPrediction> is in the C<PENDING> state.
126              
127              
128             =head2 Status => Str
129              
130             The status of the C<BatchPrediction>, which can be one of the following
131             values:
132              
133             =over
134              
135             =item * C<PENDING> - Amazon Machine Learning (Amazon ML) submitted a
136             request to generate batch predictions.
137              
138             =item * C<INPROGRESS> - The batch predictions are in progress.
139              
140             =item * C<FAILED> - The request to perform a batch prediction did not
141             run to completion. It is not usable.
142              
143             =item * C<COMPLETED> - The batch prediction process completed
144             successfully.
145              
146             =item * C<DELETED> - The C<BatchPrediction> is marked as deleted. It is
147             not usable.
148              
149             =back
150              
151              
152             Valid values are: C<"PENDING">, C<"INPROGRESS">, C<"FAILED">, C<"COMPLETED">, C<"DELETED">
153             =head2 TotalRecordCount => Int
154              
155             The number of total records that Amazon Machine Learning saw while
156             processing the C<BatchPrediction>.
157              
158              
159             =head2 _request_id => Str
160              
161              
162             =cut
163              
164             1;