File Coverage

blib/lib/Paws/Snowball/ListJobsResult.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::Snowball::ListJobsResult;
3 1     1   571 use Moose;
  1         17  
  1         10  
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::ListJobsResult
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 this automatically generated
28             C<NextToken> value in your next C<ListJobs> call, your returned
29             C<JobListEntry> objects will start from this point in the array.
30              
31              
32             =head2 _request_id => Str
33              
34              
35             =cut
36              
37             1;