File Coverage

blib/lib/Paws/CloudFormation/StackSet.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             package Paws::CloudFormation::StackSet;
2 1     1   265 use Moose;
  1         3  
  1         5  
3             has Capabilities => (is => 'ro', isa => 'ArrayRef[Str|Undef]');
4             has Description => (is => 'ro', isa => 'Str');
5             has Parameters => (is => 'ro', isa => 'ArrayRef[Paws::CloudFormation::Parameter]');
6             has StackSetId => (is => 'ro', isa => 'Str');
7             has StackSetName => (is => 'ro', isa => 'Str');
8             has Status => (is => 'ro', isa => 'Str');
9             has Tags => (is => 'ro', isa => 'ArrayRef[Paws::CloudFormation::Tag]');
10             has TemplateBody => (is => 'ro', isa => 'Str', decode_as => 'JSON', method => 'Template', traits => ['JSONAttribute']);
11             1;
12              
13             ### main pod documentation begin ###
14              
15             =head1 NAME
16              
17             Paws::CloudFormation::StackSet
18              
19             =head1 USAGE
20              
21             This class represents one of two things:
22              
23             =head3 Arguments in a call to a service
24              
25             Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
26             Each attribute should be used as a named argument in the calls that expect this type of object.
27              
28             As an example, if Att1 is expected to be a Paws::CloudFormation::StackSet object:
29              
30             $service_obj->Method(Att1 => { Capabilities => $value, ..., TemplateBody => $value });
31              
32             =head3 Results returned from an API call
33              
34             Use accessors for each attribute. If Att1 is expected to be an Paws::CloudFormation::StackSet object:
35              
36             $result = $service_obj->Method(...);
37             $result->Att1->Capabilities
38              
39             =head1 DESCRIPTION
40              
41             A structure that contains information about a stack set. A stack set
42             enables you to provision stacks into AWS accounts and across regions by
43             using a single CloudFormation template. In the stack set, you specify
44             the template to use, as well as any parameters and capabilities that
45             the template requires.
46              
47             =head1 ATTRIBUTES
48              
49              
50             =head2 Capabilities => ArrayRef[Str|Undef]
51              
52             The capabilities that are allowed in the stack set. Some stack set
53             templates might include resources that can affect permissions in your
54             AWS accountE<mdash>for example, by creating new AWS Identity and Access
55             Management (IAM) users. For more information, see Acknowledging IAM
56             Resources in AWS CloudFormation Templates.
57              
58              
59             =head2 Description => Str
60              
61             A description of the stack set that you specify when the stack set is
62             created or updated.
63              
64              
65             =head2 Parameters => ArrayRef[L<Paws::CloudFormation::Parameter>]
66              
67             A list of input parameters for a stack set.
68              
69              
70             =head2 StackSetId => Str
71              
72             The ID of the stack set.
73              
74              
75             =head2 StackSetName => Str
76              
77             The name that's associated with the stack set.
78              
79              
80             =head2 Status => Str
81              
82             The status of the stack set.
83              
84              
85             =head2 Tags => ArrayRef[L<Paws::CloudFormation::Tag>]
86              
87             A list of tags that specify information about the stack set. A maximum
88             number of 50 tags can be specified.
89              
90              
91             =head2 TemplateBody => Str
92              
93             The structure that contains the body of the template that was used to
94             create or update the stack set.
95              
96              
97              
98             =head1 SEE ALSO
99              
100             This class forms part of L<Paws>, describing an object used in L<Paws::CloudFormation>
101              
102             =head1 BUGS and CONTRIBUTIONS
103              
104             The source code is located here: https://github.com/pplu/aws-sdk-perl
105              
106             Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues
107              
108             =cut
109