File Coverage

blib/lib/Cfn/Resource/AWS/AppStream/Stack.pm
Criterion Covered Total %
statement 38 38 100.0
branch n/a
condition n/a
subroutine 14 14 100.0
pod 0 2 0.0
total 52 54 96.3


line stmt bran cond sub pod time code
1             # AWS::AppStream::Stack generated from spec 18.4.0
2 1     1   570 use Moose::Util::TypeConstraints;
  1         2  
  1         9  
3              
4             coerce 'Cfn::Resource::Properties::AWS::AppStream::Stack',
5             from 'HashRef',
6             via { Cfn::Resource::Properties::AWS::AppStream::Stack->new( %$_ ) };
7              
8             package Cfn::Resource::AWS::AppStream::Stack {
9 1     1   2162 use Moose;
  1         6  
  1         10  
10             extends 'Cfn::Resource';
11             has Properties => (isa => 'Cfn::Resource::Properties::AWS::AppStream::Stack', is => 'rw', coerce => 1);
12            
13             sub AttributeList {
14 1     1 0 4 [ ]
15             }
16             sub supported_regions {
17 1     1 0 1188 [ 'ap-northeast-1','ap-northeast-2','ap-south-1','ap-southeast-1','ap-southeast-2','eu-central-1','eu-west-1','us-east-1','us-gov-west-1','us-west-2' ]
18             }
19             }
20              
21              
22             subtype 'ArrayOfCfn::Resource::Properties::AWS::AppStream::Stack::UserSetting',
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::AppStream::Stack::UserSetting',
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::AppStream::Stack::UserSetting')->coerce($_)
41             } @$_
42             ]);
43             };
44              
45             subtype 'Cfn::Resource::Properties::AWS::AppStream::Stack::UserSetting',
46             as 'Cfn::Value';
47              
48             coerce 'Cfn::Resource::Properties::AWS::AppStream::Stack::UserSetting',
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::AppStream::Stack::UserSetting->new( %$_ );
55             }
56             };
57              
58             package Cfn::Resource::Properties::Object::AWS::AppStream::Stack::UserSetting {
59 1     1   7197 use Moose;
  1         5  
  1         5  
60 1     1   6811 use MooseX::StrictConstructor;
  1         3  
  1         9  
61             extends 'Cfn::Value::TypedValue';
62            
63             has Action => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
64             has Permission => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
65             }
66             subtype 'ArrayOfCfn::Resource::Properties::AWS::AppStream::Stack::StorageConnector',
67             as 'Cfn::Value',
68             where { $_->isa('Cfn::Value::Array') or $_->isa('Cfn::Value::Function') },
69             message { "$_ is not a Cfn::Value or a Cfn::Value::Function" };
70              
71             coerce 'ArrayOfCfn::Resource::Properties::AWS::AppStream::Stack::StorageConnector',
72             from 'HashRef',
73             via {
74             if (my $f = Cfn::TypeLibrary::try_function($_)) {
75             return $f
76             } else {
77             die 'Only accepts functions';
78             }
79             },
80             from 'ArrayRef',
81             via {
82             Cfn::Value::Array->new(Value => [
83             map {
84             Moose::Util::TypeConstraints::find_type_constraint('Cfn::Resource::Properties::AWS::AppStream::Stack::StorageConnector')->coerce($_)
85             } @$_
86             ]);
87             };
88              
89             subtype 'Cfn::Resource::Properties::AWS::AppStream::Stack::StorageConnector',
90             as 'Cfn::Value';
91              
92             coerce 'Cfn::Resource::Properties::AWS::AppStream::Stack::StorageConnector',
93             from 'HashRef',
94             via {
95             if (my $f = Cfn::TypeLibrary::try_function($_)) {
96             return $f
97             } else {
98             return Cfn::Resource::Properties::Object::AWS::AppStream::Stack::StorageConnector->new( %$_ );
99             }
100             };
101              
102             package Cfn::Resource::Properties::Object::AWS::AppStream::Stack::StorageConnector {
103 1     1   3650 use Moose;
  1         3  
  1         7  
104 1     1   6683 use MooseX::StrictConstructor;
  1         3  
  1         7  
105             extends 'Cfn::Value::TypedValue';
106            
107             has ConnectorType => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
108             has Domains => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
109             has ResourceIdentifier => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
110             }
111              
112             subtype 'Cfn::Resource::Properties::AWS::AppStream::Stack::ApplicationSettings',
113             as 'Cfn::Value';
114              
115             coerce 'Cfn::Resource::Properties::AWS::AppStream::Stack::ApplicationSettings',
116             from 'HashRef',
117             via {
118             if (my $f = Cfn::TypeLibrary::try_function($_)) {
119             return $f
120             } else {
121             return Cfn::Resource::Properties::Object::AWS::AppStream::Stack::ApplicationSettings->new( %$_ );
122             }
123             };
124              
125             package Cfn::Resource::Properties::Object::AWS::AppStream::Stack::ApplicationSettings {
126 1     1   3463 use Moose;
  1         3  
  1         6  
127 1     1   6806 use MooseX::StrictConstructor;
  1         2  
  1         5  
128             extends 'Cfn::Value::TypedValue';
129            
130             has Enabled => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
131             has SettingsGroup => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
132             }
133             subtype 'ArrayOfCfn::Resource::Properties::AWS::AppStream::Stack::AccessEndpoint',
134             as 'Cfn::Value',
135             where { $_->isa('Cfn::Value::Array') or $_->isa('Cfn::Value::Function') },
136             message { "$_ is not a Cfn::Value or a Cfn::Value::Function" };
137              
138             coerce 'ArrayOfCfn::Resource::Properties::AWS::AppStream::Stack::AccessEndpoint',
139             from 'HashRef',
140             via {
141             if (my $f = Cfn::TypeLibrary::try_function($_)) {
142             return $f
143             } else {
144             die 'Only accepts functions';
145             }
146             },
147             from 'ArrayRef',
148             via {
149             Cfn::Value::Array->new(Value => [
150             map {
151             Moose::Util::TypeConstraints::find_type_constraint('Cfn::Resource::Properties::AWS::AppStream::Stack::AccessEndpoint')->coerce($_)
152             } @$_
153             ]);
154             };
155              
156             subtype 'Cfn::Resource::Properties::AWS::AppStream::Stack::AccessEndpoint',
157             as 'Cfn::Value';
158              
159             coerce 'Cfn::Resource::Properties::AWS::AppStream::Stack::AccessEndpoint',
160             from 'HashRef',
161             via {
162             if (my $f = Cfn::TypeLibrary::try_function($_)) {
163             return $f
164             } else {
165             return Cfn::Resource::Properties::Object::AWS::AppStream::Stack::AccessEndpoint->new( %$_ );
166             }
167             };
168              
169             package Cfn::Resource::Properties::Object::AWS::AppStream::Stack::AccessEndpoint {
170 1     1   3659 use Moose;
  1         3  
  1         7  
171 1     1   6739 use MooseX::StrictConstructor;
  1         3  
  1         12  
172             extends 'Cfn::Value::TypedValue';
173            
174             has EndpointType => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
175             has VpceId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
176             }
177              
178             package Cfn::Resource::Properties::AWS::AppStream::Stack {
179 1     1   3474 use Moose;
  1         4  
  1         8  
180 1     1   6746 use MooseX::StrictConstructor;
  1         3  
  1         6  
181             extends 'Cfn::Resource::Properties';
182            
183             has AccessEndpoints => (isa => 'ArrayOfCfn::Resource::Properties::AWS::AppStream::Stack::AccessEndpoint', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
184             has ApplicationSettings => (isa => 'Cfn::Resource::Properties::AWS::AppStream::Stack::ApplicationSettings', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
185             has AttributesToDelete => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
186             has DeleteStorageConnectors => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
187             has Description => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
188             has DisplayName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
189             has EmbedHostDomains => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
190             has FeedbackURL => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
191             has Name => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
192             has RedirectURL => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
193             has StorageConnectors => (isa => 'ArrayOfCfn::Resource::Properties::AWS::AppStream::Stack::StorageConnector', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
194             has Tags => (isa => 'ArrayOfCfn::Resource::Properties::TagType', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
195             has UserSettings => (isa => 'ArrayOfCfn::Resource::Properties::AWS::AppStream::Stack::UserSetting', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
196             }
197              
198             1;
199             ### main pod documentation begin ###
200              
201             =encoding UTF-8
202              
203             =head1 NAME
204              
205             Cfn::Resource::AWS::AppStream::Stack - Cfn resource for AWS::AppStream::Stack
206              
207             =head1 DESCRIPTION
208              
209             This module implements a Perl module that represents the CloudFormation object AWS::AppStream::Stack.
210              
211             See L<Cfn> for more information on how to use it.
212              
213             =head1 AUTHOR
214              
215             Jose Luis Martinez
216             CAPSiDE
217             jlmartinez@capside.com
218              
219             =head1 COPYRIGHT and LICENSE
220              
221             Copyright (c) 2013 by CAPSiDE
222             This code is distributed under the Apache 2 License. The full text of the
223             license can be found in the LICENSE file included with this module.
224              
225             =cut