line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Paws::CloudFormation::ChangeSetSummary; |
2
|
1
|
|
|
1
|
|
359
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
3
|
|
|
|
|
|
|
has ChangeSetId => (is => 'ro', isa => 'Str'); |
4
|
|
|
|
|
|
|
has ChangeSetName => (is => 'ro', isa => 'Str'); |
5
|
|
|
|
|
|
|
has CreationTime => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has Description => (is => 'ro', isa => 'Str'); |
7
|
|
|
|
|
|
|
has ExecutionStatus => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
has StackId => (is => 'ro', isa => 'Str'); |
9
|
|
|
|
|
|
|
has StackName => (is => 'ro', isa => 'Str'); |
10
|
|
|
|
|
|
|
has Status => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
has StatusReason => (is => 'ro', isa => 'Str'); |
12
|
|
|
|
|
|
|
1; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
### main pod documentation begin ### |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 NAME |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
Paws::CloudFormation::ChangeSetSummary |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
=head1 USAGE |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
This class represents one of two things: |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head3 Arguments in a call to a service |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class. |
27
|
|
|
|
|
|
|
Each attribute should be used as a named argument in the calls that expect this type of object. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
As an example, if Att1 is expected to be a Paws::CloudFormation::ChangeSetSummary object: |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
$service_obj->Method(Att1 => { ChangeSetId => $value, ..., StatusReason => $value }); |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head3 Results returned from an API call |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
Use accessors for each attribute. If Att1 is expected to be an Paws::CloudFormation::ChangeSetSummary object: |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
$result = $service_obj->Method(...); |
38
|
|
|
|
|
|
|
$result->Att1->ChangeSetId |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 DESCRIPTION |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
The C<ChangeSetSummary> structure describes a change set, its status, |
43
|
|
|
|
|
|
|
and the stack with which it's associated. |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
=head2 ChangeSetId => Str |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
The ID of the change set. |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=head2 ChangeSetName => Str |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
The name of the change set. |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=head2 CreationTime => Str |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
The start time when the change set was created, in UTC. |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=head2 Description => Str |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
Descriptive information about the change set. |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=head2 ExecutionStatus => Str |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
If the change set execution status is C<AVAILABLE>, you can execute the |
71
|
|
|
|
|
|
|
change set. If you canE<rsquo>t execute the change set, the status |
72
|
|
|
|
|
|
|
indicates why. For example, a change set might be in an C<UNAVAILABLE> |
73
|
|
|
|
|
|
|
state because AWS CloudFormation is still creating it or in an |
74
|
|
|
|
|
|
|
C<OBSOLETE> state because the stack was already updated. |
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
=head2 StackId => Str |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
The ID of the stack with which the change set is associated. |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
=head2 StackName => Str |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
The name of the stack with which the change set is associated. |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
=head2 Status => Str |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
The state of the change set, such as C<CREATE_IN_PROGRESS>, |
90
|
|
|
|
|
|
|
C<CREATE_COMPLETE>, or C<FAILED>. |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
=head2 StatusReason => Str |
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
A description of the change set's status. For example, if your change |
96
|
|
|
|
|
|
|
set is in the C<FAILED> state, AWS CloudFormation shows the error |
97
|
|
|
|
|
|
|
message. |
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
=head1 SEE ALSO |
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
This class forms part of L<Paws>, describing an object used in L<Paws::CloudFormation> |
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
=head1 BUGS and CONTRIBUTIONS |
106
|
|
|
|
|
|
|
|
107
|
|
|
|
|
|
|
The source code is located here: https://github.com/pplu/aws-sdk-perl |
108
|
|
|
|
|
|
|
|
109
|
|
|
|
|
|
|
Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues |
110
|
|
|
|
|
|
|
|
111
|
|
|
|
|
|
|
=cut |
112
|
|
|
|
|
|
|
|