File Coverage

blib/lib/Paws/OpsWorksCM/DescribeBackupsResponse.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::OpsWorksCM::DescribeBackupsResponse;
3 1     1   583 use Moose;
  1         4  
  1         9  
4             has Backups => (is => 'ro', isa => 'ArrayRef[Paws::OpsWorksCM::Backup]');
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::OpsWorksCM::DescribeBackupsResponse
14              
15             =head1 ATTRIBUTES
16              
17              
18             =head2 Backups => ArrayRef[L<Paws::OpsWorksCM::Backup>]
19              
20             Contains the response to a C<DescribeBackups> request.
21              
22              
23             =head2 NextToken => Str
24              
25             NextToken is a string that is returned in some command responses. It
26             indicates that not all entries have been returned, and that you must
27             run at least one more request to get remaining items. To get remaining
28             results, call C<DescribeBackups> again, and assign the token from the
29             previous results as the value of the C<nextToken> parameter. If there
30             are no more results, the response object's C<nextToken> parameter value
31             is C<null>. Setting a C<nextToken> value that was not returned in your
32             previous results causes an C<InvalidNextTokenException> to occur.
33              
34              
35             =head2 _request_id => Str
36              
37              
38             =cut
39              
40             1;