File Coverage

blib/lib/Paws/CloudFormation/ListStackSetsOutput.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::CloudFormation::ListStackSetsOutput;
3 1     1   417 use Moose;
  1         3  
  1         9  
4             has NextToken => (is => 'ro', isa => 'Str');
5             has Summaries => (is => 'ro', isa => 'ArrayRef[Paws::CloudFormation::StackSetSummary]');
6              
7             has _request_id => (is => 'ro', isa => 'Str');
8             1;
9              
10             ### main pod documentation begin ###
11              
12             =head1 NAME
13              
14             Paws::CloudFormation::ListStackSetsOutput
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 NextToken => Str
20              
21             If the request doesn't return all of the remaining results,
22             C<NextToken> is set to a token. To retrieve the next set of results,
23             call C<ListStackInstances> again and assign that token to the request
24             object's C<NextToken> parameter. If the request returns all results,
25             C<NextToken> is set to C<null>.
26              
27              
28             =head2 Summaries => ArrayRef[L<Paws::CloudFormation::StackSetSummary>]
29              
30             A list of C<StackSetSummary> structures that contain information about
31             the user's stack sets.
32              
33              
34             =head2 _request_id => Str
35              
36              
37             =cut
38