File Coverage

blib/lib/Paws/CloudFormation/ListStackSetOperationResultsOutput.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::ListStackSetOperationResultsOutput;
3 1     1   452 use Moose;
  1         3  
  1         8  
4             has NextToken => (is => 'ro', isa => 'Str');
5             has Summaries => (is => 'ro', isa => 'ArrayRef[Paws::CloudFormation::StackSetOperationResultSummary]');
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::ListStackSetOperationResultsOutput
15              
16             =head1 ATTRIBUTES
17              
18              
19             =head2 NextToken => Str
20              
21             If the request doesn't return all results, C<NextToken> is set to a
22             token. To retrieve the next set of results, call
23             C<ListOperationResults> again and assign that token to the request
24             object's C<NextToken> parameter. If there are no remaining results,
25             C<NextToken> is set to C<null>.
26              
27              
28             =head2 Summaries => ArrayRef[L<Paws::CloudFormation::StackSetOperationResultSummary>]
29              
30             A list of C<StackSetOperationResultSummary> structures that contain
31             information about the specified operation results, for accounts and
32             regions that are included in the operation.
33              
34              
35             =head2 _request_id => Str
36              
37              
38             =cut
39