line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Snowball::DescribeJobResult; |
3
|
1
|
|
|
1
|
|
403
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has JobMetadata => (is => 'ro', isa => 'Paws::Snowball::JobMetadata'); |
5
|
|
|
|
|
|
|
has SubJobMetadata => (is => 'ro', isa => 'ArrayRef[Paws::Snowball::JobMetadata]'); |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
### main pod documentation begin ### |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Paws::Snowball::DescribeJobResult |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 JobMetadata => L<Paws::Snowball::JobMetadata> |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Information about a specific job, including shipping information, job |
21
|
|
|
|
|
|
|
status, and other important metadata. |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head2 SubJobMetadata => ArrayRef[L<Paws::Snowball::JobMetadata>] |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
Information about a specific job part (in the case of an export job), |
27
|
|
|
|
|
|
|
including shipping information, job status, and other important |
28
|
|
|
|
|
|
|
metadata. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head2 _request_id => Str |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=cut |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
1; |