File Coverage

blib/lib/Cfn/Resource/AWS/MediaStore/Container.pm
Criterion Covered Total %
statement 32 32 100.0
branch n/a
condition n/a
subroutine 12 12 100.0
pod 0 2 0.0
total 44 46 95.6


line stmt bran cond sub pod time code
1             # AWS::MediaStore::Container generated from spec 18.4.0
2 1     1   545 use Moose::Util::TypeConstraints;
  1         3  
  1         8  
3              
4             coerce 'Cfn::Resource::Properties::AWS::MediaStore::Container',
5             from 'HashRef',
6             via { Cfn::Resource::Properties::AWS::MediaStore::Container->new( %$_ ) };
7              
8             package Cfn::Resource::AWS::MediaStore::Container {
9 1     1   1986 use Moose;
  1         4  
  1         6  
10             extends 'Cfn::Resource';
11             has Properties => (isa => 'Cfn::Resource::Properties::AWS::MediaStore::Container', is => 'rw', coerce => 1);
12            
13             sub AttributeList {
14 1     1 0 5 [ 'Endpoint' ]
15             }
16             sub supported_regions {
17 1     1 0 1212 [ 'ap-northeast-1','ap-northeast-2','ap-southeast-2','eu-central-1','eu-north-1','eu-west-1','us-east-1','us-west-2' ]
18             }
19             }
20              
21              
22             subtype 'ArrayOfCfn::Resource::Properties::AWS::MediaStore::Container::MetricPolicyRule',
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::MediaStore::Container::MetricPolicyRule',
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::MediaStore::Container::MetricPolicyRule')->coerce($_)
41             } @$_
42             ]);
43             };
44              
45             subtype 'Cfn::Resource::Properties::AWS::MediaStore::Container::MetricPolicyRule',
46             as 'Cfn::Value';
47              
48             coerce 'Cfn::Resource::Properties::AWS::MediaStore::Container::MetricPolicyRule',
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::MediaStore::Container::MetricPolicyRule->new( %$_ );
55             }
56             };
57              
58             package Cfn::Resource::Properties::Object::AWS::MediaStore::Container::MetricPolicyRule {
59 1     1   7176 use Moose;
  1         3  
  1         6  
60 1     1   6748 use MooseX::StrictConstructor;
  1         4  
  1         8  
61             extends 'Cfn::Value::TypedValue';
62            
63             has ObjectGroup => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
64             has ObjectGroupName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
65             }
66              
67             subtype 'Cfn::Resource::Properties::AWS::MediaStore::Container::MetricPolicy',
68             as 'Cfn::Value';
69              
70             coerce 'Cfn::Resource::Properties::AWS::MediaStore::Container::MetricPolicy',
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::MediaStore::Container::MetricPolicy->new( %$_ );
77             }
78             };
79              
80             package Cfn::Resource::Properties::Object::AWS::MediaStore::Container::MetricPolicy {
81 1     1   3518 use Moose;
  1         3  
  1         6  
82 1     1   6675 use MooseX::StrictConstructor;
  1         4  
  1         9  
83             extends 'Cfn::Value::TypedValue';
84            
85             has ContainerLevelMetrics => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
86             has MetricPolicyRules => (isa => 'ArrayOfCfn::Resource::Properties::AWS::MediaStore::Container::MetricPolicyRule', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
87             }
88             subtype 'ArrayOfCfn::Resource::Properties::AWS::MediaStore::Container::CorsRule',
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::MediaStore::Container::CorsRule',
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::MediaStore::Container::CorsRule')->coerce($_)
107             } @$_
108             ]);
109             };
110              
111             subtype 'Cfn::Resource::Properties::AWS::MediaStore::Container::CorsRule',
112             as 'Cfn::Value';
113              
114             coerce 'Cfn::Resource::Properties::AWS::MediaStore::Container::CorsRule',
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::MediaStore::Container::CorsRule->new( %$_ );
121             }
122             };
123              
124             package Cfn::Resource::Properties::Object::AWS::MediaStore::Container::CorsRule {
125 1     1   3612 use Moose;
  1         2  
  1         7  
126 1     1   6811 use MooseX::StrictConstructor;
  1         3  
  1         5  
127             extends 'Cfn::Value::TypedValue';
128            
129             has AllowedHeaders => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
130             has AllowedMethods => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
131             has AllowedOrigins => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
132             has ExposeHeaders => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
133             has MaxAgeSeconds => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
134             }
135              
136             package Cfn::Resource::Properties::AWS::MediaStore::Container {
137 1     1   4135 use Moose;
  1         3  
  1         8  
138 1     1   6798 use MooseX::StrictConstructor;
  1         7  
  1         6  
139             extends 'Cfn::Resource::Properties';
140            
141             has AccessLoggingEnabled => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
142             has ContainerName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
143             has CorsPolicy => (isa => 'ArrayOfCfn::Resource::Properties::AWS::MediaStore::Container::CorsRule', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
144             has LifecyclePolicy => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
145             has MetricPolicy => (isa => 'Cfn::Resource::Properties::AWS::MediaStore::Container::MetricPolicy', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
146             has Policy => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
147             has Tags => (isa => 'ArrayOfCfn::Resource::Properties::TagType', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
148             }
149              
150             1;
151             ### main pod documentation begin ###
152              
153             =encoding UTF-8
154              
155             =head1 NAME
156              
157             Cfn::Resource::AWS::MediaStore::Container - Cfn resource for AWS::MediaStore::Container
158              
159             =head1 DESCRIPTION
160              
161             This module implements a Perl module that represents the CloudFormation object AWS::MediaStore::Container.
162              
163             See L<Cfn> for more information on how to use it.
164              
165             =head1 AUTHOR
166              
167             Jose Luis Martinez
168             CAPSiDE
169             jlmartinez@capside.com
170              
171             =head1 COPYRIGHT and LICENSE
172              
173             Copyright (c) 2013 by CAPSiDE
174             This code is distributed under the Apache 2 License. The full text of the
175             license can be found in the LICENSE file included with this module.
176              
177             =cut