File Coverage

blib/lib/Cfn/Resource/AWS/CloudFormation/StackSet.pm
Criterion Covered Total %
statement 44 44 100.0
branch n/a
condition n/a
subroutine 16 16 100.0
pod 0 2 0.0
total 60 62 96.7


line stmt bran cond sub pod time code
1             # AWS::CloudFormation::StackSet generated from spec 18.4.0
2 1     1   709 use Moose::Util::TypeConstraints;
  1         2  
  1         10  
3              
4             coerce 'Cfn::Resource::Properties::AWS::CloudFormation::StackSet',
5             from 'HashRef',
6             via { Cfn::Resource::Properties::AWS::CloudFormation::StackSet->new( %$_ ) };
7              
8             package Cfn::Resource::AWS::CloudFormation::StackSet {
9 1     1   2210 use Moose;
  1         3  
  1         7  
10             extends 'Cfn::Resource';
11             has Properties => (isa => 'Cfn::Resource::Properties::AWS::CloudFormation::StackSet', is => 'rw', coerce => 1);
12            
13             sub AttributeList {
14 1     1 0 5 [ 'StackSetId' ]
15             }
16             sub supported_regions {
17 1     1 0 1181 [ 'ap-northeast-1','ap-northeast-2','ap-south-1','ap-southeast-1','ap-southeast-2','ca-central-1','eu-central-1','eu-west-1','eu-west-2','eu-west-3','sa-east-1','us-east-1','us-east-2','us-west-1','us-west-2' ]
18             }
19             }
20              
21              
22             subtype 'ArrayOfCfn::Resource::Properties::AWS::CloudFormation::StackSet::Parameter',
23             as 'Cfn::Value',
24             where { $_->isa('Cfn::Value::Array') or $_->isa('Cfn::Value::Function') },
25             message { "$_ is not a Cfn::Value or a Cfn::Value::Function" };
26              
27             coerce 'ArrayOfCfn::Resource::Properties::AWS::CloudFormation::StackSet::Parameter',
28             from 'HashRef',
29             via {
30             if (my $f = Cfn::TypeLibrary::try_function($_)) {
31             return $f
32             } else {
33             die 'Only accepts functions';
34             }
35             },
36             from 'ArrayRef',
37             via {
38             Cfn::Value::Array->new(Value => [
39             map {
40             Moose::Util::TypeConstraints::find_type_constraint('Cfn::Resource::Properties::AWS::CloudFormation::StackSet::Parameter')->coerce($_)
41             } @$_
42             ]);
43             };
44              
45             subtype 'Cfn::Resource::Properties::AWS::CloudFormation::StackSet::Parameter',
46             as 'Cfn::Value';
47              
48             coerce 'Cfn::Resource::Properties::AWS::CloudFormation::StackSet::Parameter',
49             from 'HashRef',
50             via {
51             if (my $f = Cfn::TypeLibrary::try_function($_)) {
52             return $f
53             } else {
54             return Cfn::Resource::Properties::Object::AWS::CloudFormation::StackSet::Parameter->new( %$_ );
55             }
56             };
57              
58             package Cfn::Resource::Properties::Object::AWS::CloudFormation::StackSet::Parameter {
59 1     1   7569 use Moose;
  1         4  
  1         5  
60 1     1   6796 use MooseX::StrictConstructor;
  1         3  
  1         10  
61             extends 'Cfn::Value::TypedValue';
62            
63             has ParameterKey => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
64             has ParameterValue => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
65             }
66              
67             subtype 'Cfn::Resource::Properties::AWS::CloudFormation::StackSet::DeploymentTargets',
68             as 'Cfn::Value';
69              
70             coerce 'Cfn::Resource::Properties::AWS::CloudFormation::StackSet::DeploymentTargets',
71             from 'HashRef',
72             via {
73             if (my $f = Cfn::TypeLibrary::try_function($_)) {
74             return $f
75             } else {
76             return Cfn::Resource::Properties::Object::AWS::CloudFormation::StackSet::DeploymentTargets->new( %$_ );
77             }
78             };
79              
80             package Cfn::Resource::Properties::Object::AWS::CloudFormation::StackSet::DeploymentTargets {
81 1     1   3679 use Moose;
  1         4  
  1         6  
82 1     1   6725 use MooseX::StrictConstructor;
  1         3  
  1         6  
83             extends 'Cfn::Value::TypedValue';
84            
85             has Accounts => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
86             has OrganizationalUnitIds => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
87             }
88             subtype 'ArrayOfCfn::Resource::Properties::AWS::CloudFormation::StackSet::StackInstances',
89             as 'Cfn::Value',
90             where { $_->isa('Cfn::Value::Array') or $_->isa('Cfn::Value::Function') },
91             message { "$_ is not a Cfn::Value or a Cfn::Value::Function" };
92              
93             coerce 'ArrayOfCfn::Resource::Properties::AWS::CloudFormation::StackSet::StackInstances',
94             from 'HashRef',
95             via {
96             if (my $f = Cfn::TypeLibrary::try_function($_)) {
97             return $f
98             } else {
99             die 'Only accepts functions';
100             }
101             },
102             from 'ArrayRef',
103             via {
104             Cfn::Value::Array->new(Value => [
105             map {
106             Moose::Util::TypeConstraints::find_type_constraint('Cfn::Resource::Properties::AWS::CloudFormation::StackSet::StackInstances')->coerce($_)
107             } @$_
108             ]);
109             };
110              
111             subtype 'Cfn::Resource::Properties::AWS::CloudFormation::StackSet::StackInstances',
112             as 'Cfn::Value';
113              
114             coerce 'Cfn::Resource::Properties::AWS::CloudFormation::StackSet::StackInstances',
115             from 'HashRef',
116             via {
117             if (my $f = Cfn::TypeLibrary::try_function($_)) {
118             return $f
119             } else {
120             return Cfn::Resource::Properties::Object::AWS::CloudFormation::StackSet::StackInstances->new( %$_ );
121             }
122             };
123              
124             package Cfn::Resource::Properties::Object::AWS::CloudFormation::StackSet::StackInstances {
125 1     1   3643 use Moose;
  1         3  
  1         6  
126 1     1   7066 use MooseX::StrictConstructor;
  1         3  
  1         8  
127             extends 'Cfn::Value::TypedValue';
128            
129             has DeploymentTargets => (isa => 'Cfn::Resource::Properties::AWS::CloudFormation::StackSet::DeploymentTargets', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
130             has ParameterOverrides => (isa => 'ArrayOfCfn::Resource::Properties::AWS::CloudFormation::StackSet::Parameter', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
131             has Regions => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
132             }
133              
134             subtype 'Cfn::Resource::Properties::AWS::CloudFormation::StackSet::OperationPreferences',
135             as 'Cfn::Value';
136              
137             coerce 'Cfn::Resource::Properties::AWS::CloudFormation::StackSet::OperationPreferences',
138             from 'HashRef',
139             via {
140             if (my $f = Cfn::TypeLibrary::try_function($_)) {
141             return $f
142             } else {
143             return Cfn::Resource::Properties::Object::AWS::CloudFormation::StackSet::OperationPreferences->new( %$_ );
144             }
145             };
146              
147             package Cfn::Resource::Properties::Object::AWS::CloudFormation::StackSet::OperationPreferences {
148 1     1   3547 use Moose;
  1         4  
  1         6  
149 1     1   6700 use MooseX::StrictConstructor;
  1         4  
  1         4  
150             extends 'Cfn::Value::TypedValue';
151            
152             has FailureToleranceCount => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
153             has FailureTolerancePercentage => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
154             has MaxConcurrentCount => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
155             has MaxConcurrentPercentage => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
156             has RegionOrder => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
157             }
158              
159             subtype 'Cfn::Resource::Properties::AWS::CloudFormation::StackSet::AutoDeployment',
160             as 'Cfn::Value';
161              
162             coerce 'Cfn::Resource::Properties::AWS::CloudFormation::StackSet::AutoDeployment',
163             from 'HashRef',
164             via {
165             if (my $f = Cfn::TypeLibrary::try_function($_)) {
166             return $f
167             } else {
168             return Cfn::Resource::Properties::Object::AWS::CloudFormation::StackSet::AutoDeployment->new( %$_ );
169             }
170             };
171              
172             package Cfn::Resource::Properties::Object::AWS::CloudFormation::StackSet::AutoDeployment {
173 1     1   3508 use Moose;
  1         3  
  1         7  
174 1     1   6766 use MooseX::StrictConstructor;
  1         3  
  1         5  
175             extends 'Cfn::Value::TypedValue';
176            
177             has Enabled => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
178             has RetainStacksOnAccountRemoval => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
179             }
180              
181             package Cfn::Resource::Properties::AWS::CloudFormation::StackSet {
182 1     1   3442 use Moose;
  1         3  
  1         18  
183 1     1   6869 use MooseX::StrictConstructor;
  1         5  
  1         8  
184             extends 'Cfn::Resource::Properties';
185            
186             has AdministrationRoleARN => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
187             has AutoDeployment => (isa => 'Cfn::Resource::Properties::AWS::CloudFormation::StackSet::AutoDeployment', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
188             has Capabilities => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
189             has Description => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
190             has ExecutionRoleName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
191             has OperationPreferences => (isa => 'Cfn::Resource::Properties::AWS::CloudFormation::StackSet::OperationPreferences', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
192             has Parameters => (isa => 'ArrayOfCfn::Resource::Properties::AWS::CloudFormation::StackSet::Parameter', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
193             has PermissionModel => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
194             has StackInstancesGroup => (isa => 'ArrayOfCfn::Resource::Properties::AWS::CloudFormation::StackSet::StackInstances', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
195             has StackSetName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
196             has Tags => (isa => 'ArrayOfCfn::Resource::Properties::TagType', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
197             has TemplateBody => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
198             has TemplateURL => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
199             }
200              
201             1;
202             ### main pod documentation begin ###
203              
204             =encoding UTF-8
205              
206             =head1 NAME
207              
208             Cfn::Resource::AWS::CloudFormation::StackSet - Cfn resource for AWS::CloudFormation::StackSet
209              
210             =head1 DESCRIPTION
211              
212             This module implements a Perl module that represents the CloudFormation object AWS::CloudFormation::StackSet.
213              
214             See L<Cfn> for more information on how to use it.
215              
216             =head1 AUTHOR
217              
218             Jose Luis Martinez
219             CAPSiDE
220             jlmartinez@capside.com
221              
222             =head1 COPYRIGHT and LICENSE
223              
224             Copyright (c) 2013 by CAPSiDE
225             This code is distributed under the Apache 2 License. The full text of the
226             license can be found in the LICENSE file included with this module.
227              
228             =cut