File Coverage

blib/lib/Paws/CloudFormation/GetTemplateSummary.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1              
2             package Paws::CloudFormation::GetTemplateSummary;
3 1     1   689 use Moose;
  1         4  
  1         16  
4             has StackName => (is => 'ro', isa => 'Str');
5             has StackSetName => (is => 'ro', isa => 'Str');
6             has TemplateBody => (is => 'ro', isa => 'Str');
7             has TemplateURL => (is => 'ro', isa => 'Str');
8              
9 1     1   11117 use MooseX::ClassAttribute;
  1         4  
  1         10  
10              
11             class_has _api_call => (isa => 'Str', is => 'ro', default => 'GetTemplateSummary');
12             class_has _returns => (isa => 'Str', is => 'ro', default => 'Paws::CloudFormation::GetTemplateSummaryOutput');
13             class_has _result_key => (isa => 'Str', is => 'ro', default => 'GetTemplateSummaryResult');
14             1;
15              
16             ### main pod documentation begin ###
17              
18             =head1 NAME
19              
20             Paws::CloudFormation::GetTemplateSummary - Arguments for method GetTemplateSummary on Paws::CloudFormation
21              
22             =head1 DESCRIPTION
23              
24             This class represents the parameters used for calling the method GetTemplateSummary on the
25             AWS CloudFormation service. Use the attributes of this class
26             as arguments to method GetTemplateSummary.
27              
28             You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to GetTemplateSummary.
29              
30             As an example:
31              
32             $service_obj->GetTemplateSummary(Att1 => $value1, Att2 => $value2, ...);
33              
34             Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object.
35              
36             =head1 ATTRIBUTES
37              
38              
39             =head2 StackName => Str
40              
41             The name or the stack ID that is associated with the stack, which are
42             not always interchangeable. For running stacks, you can specify either
43             the stack's name or its unique stack ID. For deleted stack, you must
44             specify the unique stack ID.
45              
46             Conditional: You must specify only one of the following parameters:
47             C<StackName>, C<StackSetName>, C<TemplateBody>, or C<TemplateURL>.
48              
49              
50              
51             =head2 StackSetName => Str
52              
53             The name or unique ID of the stack set from which the stack was
54             created.
55              
56             Conditional: You must specify only one of the following parameters:
57             C<StackName>, C<StackSetName>, C<TemplateBody>, or C<TemplateURL>.
58              
59              
60              
61             =head2 TemplateBody => Str
62              
63             Structure containing the template body with a minimum length of 1 byte
64             and a maximum length of 51,200 bytes. For more information about
65             templates, see Template Anatomy in the AWS CloudFormation User Guide.
66              
67             Conditional: You must specify only one of the following parameters:
68             C<StackName>, C<StackSetName>, C<TemplateBody>, or C<TemplateURL>.
69              
70              
71              
72             =head2 TemplateURL => Str
73              
74             Location of file containing the template body. The URL must point to a
75             template (max size: 460,800 bytes) that is located in an Amazon S3
76             bucket. For more information about templates, see Template Anatomy in
77             the AWS CloudFormation User Guide.
78              
79             Conditional: You must specify only one of the following parameters:
80             C<StackName>, C<StackSetName>, C<TemplateBody>, or C<TemplateURL>.
81              
82              
83              
84              
85             =head1 SEE ALSO
86              
87             This class forms part of L<Paws>, documenting arguments for method GetTemplateSummary in L<Paws::CloudFormation>
88              
89             =head1 BUGS and CONTRIBUTIONS
90              
91             The source code is located here: https://github.com/pplu/aws-sdk-perl
92              
93             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
94              
95             =cut
96