File Coverage

blib/lib/Paws/DS/DescribeSnapshotsResult.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::DS::DescribeSnapshotsResult;
3 1     1   450 use Moose;
  1         2  
  1         7  
4             has NextToken => (is => 'ro', isa => 'Str');
5             has Snapshots => (is => 'ro', isa => 'ArrayRef[Paws::DS::Snapshot]');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8              
9             ### main pod documentation begin ###
10              
11             =head1 NAME
12              
13             Paws::DS::DescribeSnapshotsResult
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 NextToken => Str
19              
20             If not null, more results are available. Pass this value in the
21             I<NextToken> member of a subsequent call to DescribeSnapshots.
22              
23              
24             =head2 Snapshots => ArrayRef[L<Paws::DS::Snapshot>]
25              
26             The list of Snapshot objects that were retrieved.
27              
28             It is possible that this list contains less than the number of items
29             specified in the I<Limit> member of the request. This occurs if there
30             are less than the requested number of items left to retrieve, or if the
31             limitations of the operation have been exceeded.
32              
33              
34             =head2 _request_id => Str
35              
36              
37             =cut
38              
39             1;