line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
|
2
|
|
|
|
|
|
|
package Paws::CloudFormation::ValidateTemplateOutput; |
3
|
1
|
|
|
1
|
|
358
|
use Moose; |
|
1
|
|
|
1
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
|
1
|
|
|
|
|
305
|
|
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
4
|
|
|
|
|
|
|
has Capabilities => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
5
|
|
|
|
|
|
|
has CapabilitiesReason => (is => 'ro', isa => 'Str'); |
6
|
|
|
|
|
|
|
has DeclaredTransforms => (is => 'ro', isa => 'ArrayRef[Str|Undef]'); |
7
|
|
|
|
|
|
|
has Description => (is => 'ro', isa => 'Str'); |
8
|
|
|
|
|
|
|
has Parameters => (is => 'ro', isa => 'ArrayRef[Paws::CloudFormation::TemplateParameter]'); |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
has _request_id => (is => 'ro', isa => 'Str'); |
11
|
|
|
|
|
|
|
1; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
### main pod documentation begin ### |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 NAME |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Paws::CloudFormation::ValidateTemplateOutput |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=head1 ATTRIBUTES |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head2 Capabilities => ArrayRef[Str|Undef] |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
The capabilities found within the template. If your template contains |
25
|
|
|
|
|
|
|
IAM resources, you must specify the CAPABILITY_IAM or |
26
|
|
|
|
|
|
|
CAPABILITY_NAMED_IAM value for this parameter when you use the |
27
|
|
|
|
|
|
|
CreateStack or UpdateStack actions with your template; otherwise, those |
28
|
|
|
|
|
|
|
actions return an InsufficientCapabilities error. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
For more information, see Acknowledging IAM Resources in AWS |
31
|
|
|
|
|
|
|
CloudFormation Templates. |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head2 CapabilitiesReason => Str |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
The list of resources that generated the values in the C<Capabilities> |
37
|
|
|
|
|
|
|
response element. |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head2 DeclaredTransforms => ArrayRef[Str|Undef] |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
A list of the transforms that are declared in the template. |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=head2 Description => Str |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
The description found within the template. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
=head2 Parameters => ArrayRef[L<Paws::CloudFormation::TemplateParameter>] |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
A list of C<TemplateParameter> structures. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=head2 _request_id => Str |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=cut |
59
|
|
|
|
|
|
|
|