| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::CloudFormation::ListStackSetOperationsOutput; |
|
3
|
1
|
|
|
1
|
|
345
|
use Moose; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
6
|
|
|
4
|
|
|
|
|
|
|
has NextToken => (is => 'ro', isa => 'Str'); |
|
5
|
|
|
|
|
|
|
has Summaries => (is => 'ro', isa => 'ArrayRef[Paws::CloudFormation::StackSetOperationSummary]'); |
|
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::ListStackSetOperationsOutput |
|
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::StackSetOperationSummary>] |
|
29
|
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
A list of C<StackSetOperationSummary> structures that contain summary |
|
31
|
|
|
|
|
|
|
information about operations for the specified stack set. |
|
32
|
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head2 _request_id => Str |
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=cut |
|
38
|
|
|
|
|
|
|
|