File Coverage

blib/lib/Paws/MachineLearning/GetDataSourceOutput.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::GetDataSourceOutput;
3 1     1   746 use Moose;
  1         5  
  1         16  
4             has ComputeStatistics => (is => 'ro', isa => 'Bool');
5             has ComputeTime => (is => 'ro', isa => 'Int');
6             has CreatedAt => (is => 'ro', isa => 'Str');
7             has CreatedByIamUser => (is => 'ro', isa => 'Str');
8             has DataLocationS3 => (is => 'ro', isa => 'Str');
9             has DataRearrangement => (is => 'ro', isa => 'Str');
10             has DataSizeInBytes => (is => 'ro', isa => 'Int');
11             has DataSourceId => (is => 'ro', isa => 'Str');
12             has DataSourceSchema => (is => 'ro', isa => 'Str');
13             has FinishedAt => (is => 'ro', isa => 'Str');
14             has LastUpdatedAt => (is => 'ro', isa => 'Str');
15             has LogUri => (is => 'ro', isa => 'Str');
16             has Message => (is => 'ro', isa => 'Str');
17             has Name => (is => 'ro', isa => 'Str');
18             has NumberOfFiles => (is => 'ro', isa => 'Int');
19             has RDSMetadata => (is => 'ro', isa => 'Paws::MachineLearning::RDSMetadata');
20             has RedshiftMetadata => (is => 'ro', isa => 'Paws::MachineLearning::RedshiftMetadata');
21             has RoleARN => (is => 'ro', isa => 'Str');
22             has StartedAt => (is => 'ro', isa => 'Str');
23             has Status => (is => 'ro', isa => 'Str');
24              
25             has _request_id => (is => 'ro', isa => 'Str');
26              
27             ### main pod documentation begin ###
28              
29             =head1 NAME
30              
31             Paws::MachineLearning::GetDataSourceOutput
32              
33             =head1 ATTRIBUTES
34              
35              
36             =head2 ComputeStatistics => Bool
37              
38             The parameter is C<true> if statistics need to be generated from the
39             observation data.
40              
41              
42             =head2 ComputeTime => Int
43              
44             The approximate CPU time in milliseconds that Amazon Machine Learning
45             spent processing the C<DataSource>, normalized and scaled on
46             computation resources. C<ComputeTime> is only available if the
47             C<DataSource> is in the C<COMPLETED> state and the C<ComputeStatistics>
48             is set to true.
49              
50              
51             =head2 CreatedAt => Str
52              
53             The time that the C<DataSource> was created. The time is expressed in
54             epoch time.
55              
56              
57             =head2 CreatedByIamUser => Str
58              
59             The AWS user account from which the C<DataSource> was created. The
60             account type can be either an AWS root account or an AWS Identity and
61             Access Management (IAM) user account.
62              
63              
64             =head2 DataLocationS3 => Str
65              
66             The location of the data file or directory in Amazon Simple Storage
67             Service (Amazon S3).
68              
69              
70             =head2 DataRearrangement => Str
71              
72             A JSON string that represents the splitting and rearrangement
73             requirement used when this C<DataSource> was created.
74              
75              
76             =head2 DataSizeInBytes => Int
77              
78             The total size of observations in the data files.
79              
80              
81             =head2 DataSourceId => Str
82              
83             The ID assigned to the C<DataSource> at creation. This value should be
84             identical to the value of the C<DataSourceId> in the request.
85              
86              
87             =head2 DataSourceSchema => Str
88              
89             The schema used by all of the data files of this C<DataSource>.
90              
91             This parameter is provided as part of the verbose format.
92              
93              
94             =head2 FinishedAt => Str
95              
96             The epoch time when Amazon Machine Learning marked the C<DataSource> as
97             C<COMPLETED> or C<FAILED>. C<FinishedAt> is only available when the
98             C<DataSource> is in the C<COMPLETED> or C<FAILED> state.
99              
100              
101             =head2 LastUpdatedAt => Str
102              
103             The time of the most recent edit to the C<DataSource>. The time is
104             expressed in epoch time.
105              
106              
107             =head2 LogUri => Str
108              
109             A link to the file containing logs of C<CreateDataSourceFrom*>
110             operations.
111              
112              
113             =head2 Message => Str
114              
115             The user-supplied description of the most recent details about creating
116             the C<DataSource>.
117              
118              
119             =head2 Name => Str
120              
121             A user-supplied name or description of the C<DataSource>.
122              
123              
124             =head2 NumberOfFiles => Int
125              
126             The number of data files referenced by the C<DataSource>.
127              
128              
129             =head2 RDSMetadata => L<Paws::MachineLearning::RDSMetadata>
130              
131              
132              
133              
134             =head2 RedshiftMetadata => L<Paws::MachineLearning::RedshiftMetadata>
135              
136              
137              
138              
139             =head2 RoleARN => Str
140              
141              
142              
143              
144             =head2 StartedAt => Str
145              
146             The epoch time when Amazon Machine Learning marked the C<DataSource> as
147             C<INPROGRESS>. C<StartedAt> isn't available if the C<DataSource> is in
148             the C<PENDING> state.
149              
150              
151             =head2 Status => Str
152              
153             The current status of the C<DataSource>. This element can have one of
154             the following values:
155              
156             =over
157              
158             =item * C<PENDING> - Amazon ML submitted a request to create a
159             C<DataSource>.
160              
161             =item * C<INPROGRESS> - The creation process is underway.
162              
163             =item * C<FAILED> - The request to create a C<DataSource> did not run
164             to completion. It is not usable.
165              
166             =item * C<COMPLETED> - The creation process completed successfully.
167              
168             =item * C<DELETED> - The C<DataSource> is marked as deleted. It is not
169             usable.
170              
171             =back
172              
173              
174             Valid values are: C<"PENDING">, C<"INPROGRESS">, C<"FAILED">, C<"COMPLETED">, C<"DELETED">
175             =head2 _request_id => Str
176              
177              
178             =cut
179              
180             1;