File Coverage

blib/lib/Cfn/Resource/AWS/EFS/FileSystem.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::EFS::FileSystem generated from spec 18.4.0
2 2     2   1484 use Moose::Util::TypeConstraints;
  2         14  
  2         24  
3              
4             coerce 'Cfn::Resource::Properties::AWS::EFS::FileSystem',
5             from 'HashRef',
6             via { Cfn::Resource::Properties::AWS::EFS::FileSystem->new( %$_ ) };
7              
8             package Cfn::Resource::AWS::EFS::FileSystem {
9 2     2   4632 use Moose;
  2         8  
  2         17  
10             extends 'Cfn::Resource';
11             has Properties => (isa => 'Cfn::Resource::Properties::AWS::EFS::FileSystem', is => 'rw', coerce => 1);
12            
13             sub AttributeList {
14 1     1 0 4 [ 'Arn','FileSystemId' ]
15             }
16             sub supported_regions {
17 1     1 0 1160 [ 'af-south-1','ap-east-1','ap-northeast-1','ap-northeast-2','ap-northeast-3','ap-south-1','ap-southeast-1','ap-southeast-2','ca-central-1','cn-north-1','cn-northwest-1','eu-central-1','eu-north-1','eu-south-1','eu-west-1','eu-west-2','eu-west-3','me-south-1','sa-east-1','us-east-1','us-east-2','us-gov-east-1','us-gov-west-1','us-west-1','us-west-2' ]
18             }
19             }
20              
21              
22             subtype 'ArrayOfCfn::Resource::Properties::AWS::EFS::FileSystem::LifecyclePolicy',
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::EFS::FileSystem::LifecyclePolicy',
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::EFS::FileSystem::LifecyclePolicy')->coerce($_)
41             } @$_
42             ]);
43             };
44              
45             subtype 'Cfn::Resource::Properties::AWS::EFS::FileSystem::LifecyclePolicy',
46             as 'Cfn::Value';
47              
48             coerce 'Cfn::Resource::Properties::AWS::EFS::FileSystem::LifecyclePolicy',
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::EFS::FileSystem::LifecyclePolicy->new( %$_ );
55             }
56             };
57              
58             package Cfn::Resource::Properties::Object::AWS::EFS::FileSystem::LifecyclePolicy {
59 2     2   16144 use Moose;
  2         8  
  2         13  
60 2     2   13546 use MooseX::StrictConstructor;
  2         6  
  2         22  
61             extends 'Cfn::Value::TypedValue';
62            
63             has TransitionToIA => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
64             }
65             subtype 'ArrayOfCfn::Resource::Properties::AWS::EFS::FileSystem::ElasticFileSystemTag',
66             as 'Cfn::Value',
67             where { $_->isa('Cfn::Value::Array') or $_->isa('Cfn::Value::Function') },
68             message { "$_ is not a Cfn::Value or a Cfn::Value::Function" };
69              
70             coerce 'ArrayOfCfn::Resource::Properties::AWS::EFS::FileSystem::ElasticFileSystemTag',
71             from 'HashRef',
72             via {
73             if (my $f = Cfn::TypeLibrary::try_function($_)) {
74             return $f
75             } else {
76             die 'Only accepts functions';
77             }
78             },
79             from 'ArrayRef',
80             via {
81             Cfn::Value::Array->new(Value => [
82             map {
83             Moose::Util::TypeConstraints::find_type_constraint('Cfn::Resource::Properties::AWS::EFS::FileSystem::ElasticFileSystemTag')->coerce($_)
84             } @$_
85             ]);
86             };
87              
88             subtype 'Cfn::Resource::Properties::AWS::EFS::FileSystem::ElasticFileSystemTag',
89             as 'Cfn::Value';
90              
91             coerce 'Cfn::Resource::Properties::AWS::EFS::FileSystem::ElasticFileSystemTag',
92             from 'HashRef',
93             via {
94             if (my $f = Cfn::TypeLibrary::try_function($_)) {
95             return $f
96             } else {
97             return Cfn::Resource::Properties::Object::AWS::EFS::FileSystem::ElasticFileSystemTag->new( %$_ );
98             }
99             };
100              
101             package Cfn::Resource::Properties::Object::AWS::EFS::FileSystem::ElasticFileSystemTag {
102 2     2   8262 use Moose;
  2         7  
  2         55  
103 2     2   13969 use MooseX::StrictConstructor;
  2         6  
  2         9  
104             extends 'Cfn::Value::TypedValue';
105            
106             has Key => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
107             has Value => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
108             }
109              
110             subtype 'Cfn::Resource::Properties::AWS::EFS::FileSystem::BackupPolicy',
111             as 'Cfn::Value';
112              
113             coerce 'Cfn::Resource::Properties::AWS::EFS::FileSystem::BackupPolicy',
114             from 'HashRef',
115             via {
116             if (my $f = Cfn::TypeLibrary::try_function($_)) {
117             return $f
118             } else {
119             return Cfn::Resource::Properties::Object::AWS::EFS::FileSystem::BackupPolicy->new( %$_ );
120             }
121             };
122              
123             package Cfn::Resource::Properties::Object::AWS::EFS::FileSystem::BackupPolicy {
124 2     2   6831 use Moose;
  2         11  
  2         11  
125 2     2   13343 use MooseX::StrictConstructor;
  2         8  
  2         10  
126             extends 'Cfn::Value::TypedValue';
127            
128             has Status => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
129             }
130              
131             package Cfn::Resource::Properties::AWS::EFS::FileSystem {
132 2     2   6761 use Moose;
  2         5  
  2         12  
133 2     2   13617 use MooseX::StrictConstructor;
  2         8  
  2         17  
134             extends 'Cfn::Resource::Properties';
135            
136             has BackupPolicy => (isa => 'Cfn::Resource::Properties::AWS::EFS::FileSystem::BackupPolicy', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
137             has Encrypted => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
138             has FileSystemPolicy => (isa => 'Cfn::Value::Json|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
139             has FileSystemTags => (isa => 'ArrayOfCfn::Resource::Properties::AWS::EFS::FileSystem::ElasticFileSystemTag', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
140             has KmsKeyId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
141             has LifecyclePolicies => (isa => 'ArrayOfCfn::Resource::Properties::AWS::EFS::FileSystem::LifecyclePolicy', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
142             has PerformanceMode => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
143             has ProvisionedThroughputInMibps => (isa => 'Cfn::Value::Double', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
144             has ThroughputMode => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
145             }
146              
147             1;
148             ### main pod documentation begin ###
149              
150             =encoding UTF-8
151              
152             =head1 NAME
153              
154             Cfn::Resource::AWS::EFS::FileSystem - Cfn resource for AWS::EFS::FileSystem
155              
156             =head1 DESCRIPTION
157              
158             This module implements a Perl module that represents the CloudFormation object AWS::EFS::FileSystem.
159              
160             See L<Cfn> for more information on how to use it.
161              
162             =head1 AUTHOR
163              
164             Jose Luis Martinez
165             CAPSiDE
166             jlmartinez@capside.com
167              
168             =head1 COPYRIGHT and LICENSE
169              
170             Copyright (c) 2013 by CAPSiDE
171             This code is distributed under the Apache 2 License. The full text of the
172             license can be found in the LICENSE file included with this module.
173              
174             =cut