line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::CloudFormation::GetTemplateOutput; |
3
|
1
|
|
|
1
|
|
377
|
use Moose; |
|
1
|
|
|
1
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
|
1
|
|
|
|
|
340
|
|
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
4
|
|
|
|
|
|
|
has StagesAvailable => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
5
|
|
|
|
|
|
|
has TemplateBody => (is => 'ro', isa => 'Str', decode_as => 'JSON', method => 'Template', traits => ['JSONAttribute',]); |
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::GetTemplateOutput |
15
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head2 StagesAvailable => ArrayRef[Str|Undef] |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
The stage of the template that you can retrieve. For stacks, the |
22
|
|
|
|
|
|
|
C<Original> and C<Processed> templates are always available. For change |
23
|
|
|
|
|
|
|
sets, the C<Original> template is always available. After AWS |
24
|
|
|
|
|
|
|
CloudFormation finishes creating the change set, the C<Processed> |
25
|
|
|
|
|
|
|
template becomes available. |
26
|
|
|
|
|
|
|
|
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
=head2 TemplateBody => Str |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
Structure containing the template body. (For more information, go to |
31
|
|
|
|
|
|
|
Template Anatomy in the AWS CloudFormation User Guide.) |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
AWS CloudFormation returns the same template that was used when the |
34
|
|
|
|
|
|
|
stack was created. |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
=head2 _request_id => Str |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=cut |
41
|
|
|
|
|
|
|
|