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