line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::Snowball::ListClusterJobsResult; |
3
|
1
|
|
|
1
|
|
841
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has JobListEntries => (is => 'ro', isa => 'ArrayRef[Paws::Snowball::JobListEntry]'); |
5
|
|
|
|
|
|
|
has NextToken => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
### main pod documentation begin ### |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Paws::Snowball::ListClusterJobsResult |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head2 JobListEntries => ArrayRef[L<Paws::Snowball::JobListEntry>] |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
Each C<JobListEntry> object contains a job's state, a job's ID, and a |
21
|
|
|
|
|
|
|
value that indicates whether the job is a job part, in the case of |
22
|
|
|
|
|
|
|
export jobs. |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
=head2 NextToken => Str |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
HTTP requests are stateless. If you use the automatically generated |
28
|
|
|
|
|
|
|
C<NextToken> value in your next C<ListClusterJobsResult> call, your |
29
|
|
|
|
|
|
|
list of returned jobs will start from this point in the array. |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
=head2 _request_id => Str |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=cut |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
1; |