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