File Coverage

blib/lib/Paws/CloudFormation/DescribeChangeSetOutput.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::DescribeChangeSetOutput;
3 1     1   421 use Moose;
  1         3  
  1         7  
4             has Capabilities => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
5             has Changes => (is => 'ro', isa => 'ArrayRef[Paws::CloudFormation::Change]');
6             has ChangeSetId => (is => 'ro', isa => 'Str');
7             has ChangeSetName => (is => 'ro', isa => 'Str');
8             has CreationTime => (is => 'ro', isa => 'Str');
9             has Description => (is => 'ro', isa => 'Str');
10             has ExecutionStatus => (is => 'ro', isa => 'Str');
11             has NextToken => (is => 'ro', isa => 'Str');
12             has NotificationARNs => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
13             has Parameters => (is => 'ro', isa => 'ArrayRef[Paws::CloudFormation::Parameter]');
14             has RollbackConfiguration => (is => 'ro', isa => 'Paws::CloudFormation::RollbackConfiguration');
15             has StackId => (is => 'ro', isa => 'Str');
16             has StackName => (is => 'ro', isa => 'Str');
17             has Status => (is => 'ro', isa => 'Str');
18             has StatusReason => (is => 'ro', isa => 'Str');
19             has Tags => (is => 'ro', isa => 'ArrayRef[Paws::CloudFormation::Tag]');
20              
21             has _request_id => (is => 'ro', isa => 'Str');
22             1;
23              
24             ### main pod documentation begin ###
25              
26             =head1 NAME
27              
28             Paws::CloudFormation::DescribeChangeSetOutput
29              
30             =head1 ATTRIBUTES
31              
32              
33             =head2 Capabilities => ArrayRef[Str|Undef]
34              
35             If you execute the change set, the list of capabilities that were
36             explicitly acknowledged when the change set was created.
37              
38              
39             =head2 Changes => ArrayRef[L<Paws::CloudFormation::Change>]
40              
41             A list of C<Change> structures that describes the resources AWS
42             CloudFormation changes if you execute the change set.
43              
44              
45             =head2 ChangeSetId => Str
46              
47             The ARN of the change set.
48              
49              
50             =head2 ChangeSetName => Str
51              
52             The name of the change set.
53              
54              
55             =head2 CreationTime => Str
56              
57             The start time when the change set was created, in UTC.
58              
59              
60             =head2 Description => Str
61              
62             Information about the change set.
63              
64              
65             =head2 ExecutionStatus => Str
66              
67             If the change set execution status is C<AVAILABLE>, you can execute the
68             change set. If you canE<rsquo>t execute the change set, the status
69             indicates why. For example, a change set might be in an C<UNAVAILABLE>
70             state because AWS CloudFormation is still creating it or in an
71             C<OBSOLETE> state because the stack was already updated.
72              
73             Valid values are: C<"UNAVAILABLE">, C<"AVAILABLE">, C<"EXECUTE_IN_PROGRESS">, C<"EXECUTE_COMPLETE">, C<"EXECUTE_FAILED">, C<"OBSOLETE">
74             =head2 NextToken => Str
75              
76             If the output exceeds 1 MB, a string that identifies the next page of
77             changes. If there is no additional page, this value is null.
78              
79              
80             =head2 NotificationARNs => ArrayRef[Str|Undef]
81              
82             The ARNs of the Amazon Simple Notification Service (Amazon SNS) topics
83             that will be associated with the stack if you execute the change set.
84              
85              
86             =head2 Parameters => ArrayRef[L<Paws::CloudFormation::Parameter>]
87              
88             A list of C<Parameter> structures that describes the input parameters
89             and their values used to create the change set. For more information,
90             see the Parameter data type.
91              
92              
93             =head2 RollbackConfiguration => L<Paws::CloudFormation::RollbackConfiguration>
94              
95             The rollback triggers for AWS CloudFormation to monitor during stack
96             creation and updating operations, and for the specified monitoring
97             period afterwards.
98              
99              
100             =head2 StackId => Str
101              
102             The ARN of the stack that is associated with the change set.
103              
104              
105             =head2 StackName => Str
106              
107             The name of the stack that is associated with the change set.
108              
109              
110             =head2 Status => Str
111              
112             The current status of the change set, such as C<CREATE_IN_PROGRESS>,
113             C<CREATE_COMPLETE>, or C<FAILED>.
114              
115             Valid values are: C<"CREATE_PENDING">, C<"CREATE_IN_PROGRESS">, C<"CREATE_COMPLETE">, C<"DELETE_COMPLETE">, C<"FAILED">
116             =head2 StatusReason => Str
117              
118             A description of the change set's status. For example, if your attempt
119             to create a change set failed, AWS CloudFormation shows the error
120             message.
121              
122              
123             =head2 Tags => ArrayRef[L<Paws::CloudFormation::Tag>]
124              
125             If you execute the change set, the tags that will be associated with
126             the stack.
127              
128              
129             =head2 _request_id => Str
130              
131              
132             =cut
133