1
2package Paws::CloudFormation::ListStacksOutput {
3  use Moose;
4  has NextToken => (is => 'ro', isa => 'Str');
5  has StackSummaries => (is => 'ro', isa => 'ArrayRef[Paws::CloudFormation::StackSummary]');
6
7}
81;
9
10### main pod documentation begin ###
11
12=head1 NAME
13
14Paws::CloudFormation::ListStacksOutput
15
16=head1 ATTRIBUTES
17
18=head2 NextToken => Str
19
20
21
22String that identifies the start of the next list of stacks, if there
23is one.
24
25
26
27
28
29
30
31
32
33=head2 StackSummaries => ArrayRef[Paws::CloudFormation::StackSummary]
34
35
36
37A list of C<StackSummary> structures containing information about the
38specified stacks.
39
40
41
42
43
44
45
46
47
48
49
50=cut
51
52