File Coverage

blib/lib/Cfn/Resource/AWS/FMS/Policy.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::FMS::Policy generated from spec 18.4.0
2 1     1   741 use Moose::Util::TypeConstraints;
  1         2  
  1         11  
3              
4             coerce 'Cfn::Resource::Properties::AWS::FMS::Policy',
5             from 'HashRef',
6             via { Cfn::Resource::Properties::AWS::FMS::Policy->new( %$_ ) };
7              
8             package Cfn::Resource::AWS::FMS::Policy {
9 1     1   2279 use Moose;
  1         3  
  1         7  
10             extends 'Cfn::Resource';
11             has Properties => (isa => 'Cfn::Resource::Properties::AWS::FMS::Policy', is => 'rw', coerce => 1);
12            
13             sub AttributeList {
14 1     1 0 31 [ 'Arn','Id' ]
15             }
16             sub supported_regions {
17 1     1 0 1096 [ 'ap-northeast-1','ap-northeast-2','ap-south-1','ap-southeast-1','ap-southeast-2','ca-central-1','eu-central-1','eu-north-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::FMS::Policy::ResourceTag',
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::FMS::Policy::ResourceTag',
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::FMS::Policy::ResourceTag')->coerce($_)
41             } @$_
42             ]);
43             };
44              
45             subtype 'Cfn::Resource::Properties::AWS::FMS::Policy::ResourceTag',
46             as 'Cfn::Value';
47              
48             coerce 'Cfn::Resource::Properties::AWS::FMS::Policy::ResourceTag',
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::FMS::Policy::ResourceTag->new( %$_ );
55             }
56             };
57              
58             package Cfn::Resource::Properties::Object::AWS::FMS::Policy::ResourceTag {
59 1     1   7497 use Moose;
  1         2  
  1         16  
60 1     1   6599 use MooseX::StrictConstructor;
  1         2  
  1         9  
61             extends 'Cfn::Value::TypedValue';
62            
63             has Key => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
64             has Value => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
65             }
66             subtype 'ArrayOfCfn::Resource::Properties::AWS::FMS::Policy::PolicyTag',
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::FMS::Policy::PolicyTag',
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::FMS::Policy::PolicyTag')->coerce($_)
85             } @$_
86             ]);
87             };
88              
89             subtype 'Cfn::Resource::Properties::AWS::FMS::Policy::PolicyTag',
90             as 'Cfn::Value';
91              
92             coerce 'Cfn::Resource::Properties::AWS::FMS::Policy::PolicyTag',
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::FMS::Policy::PolicyTag->new( %$_ );
99             }
100             };
101              
102             package Cfn::Resource::Properties::Object::AWS::FMS::Policy::PolicyTag {
103 1     1   3807 use Moose;
  1         2  
  1         6  
104 1     1   6530 use MooseX::StrictConstructor;
  1         2  
  1         5  
105             extends 'Cfn::Value::TypedValue';
106            
107             has Key => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
108             has Value => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
109             }
110              
111             subtype 'Cfn::Resource::Properties::AWS::FMS::Policy::IEMap',
112             as 'Cfn::Value';
113              
114             coerce 'Cfn::Resource::Properties::AWS::FMS::Policy::IEMap',
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::FMS::Policy::IEMap->new( %$_ );
121             }
122             };
123              
124             package Cfn::Resource::Properties::Object::AWS::FMS::Policy::IEMap {
125 1     1   3391 use Moose;
  1         3  
  1         5  
126 1     1   6906 use MooseX::StrictConstructor;
  1         2  
  1         6  
127             extends 'Cfn::Value::TypedValue';
128            
129             has ACCOUNT => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
130             has ORGUNIT => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
131             }
132              
133             package Cfn::Resource::Properties::AWS::FMS::Policy {
134 1     1   3473 use Moose;
  1         3  
  1         6  
135 1     1   6571 use MooseX::StrictConstructor;
  1         3  
  1         6  
136             extends 'Cfn::Resource::Properties';
137            
138             has DeleteAllPolicyResources => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
139             has ExcludeMap => (isa => 'Cfn::Resource::Properties::AWS::FMS::Policy::IEMap', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
140             has ExcludeResourceTags => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
141             has IncludeMap => (isa => 'Cfn::Resource::Properties::AWS::FMS::Policy::IEMap', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
142             has PolicyName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
143             has RemediationEnabled => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
144             has ResourceTags => (isa => 'ArrayOfCfn::Resource::Properties::AWS::FMS::Policy::ResourceTag', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
145             has ResourceType => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
146             has ResourceTypeList => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
147             has SecurityServicePolicyData => (isa => 'Cfn::Value::Json|Cfn::DynamicValue', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
148             has Tags => (isa => 'ArrayOfCfn::Resource::Properties::AWS::FMS::Policy::PolicyTag', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
149             }
150              
151             1;
152             ### main pod documentation begin ###
153              
154             =encoding UTF-8
155              
156             =head1 NAME
157              
158             Cfn::Resource::AWS::FMS::Policy - Cfn resource for AWS::FMS::Policy
159              
160             =head1 DESCRIPTION
161              
162             This module implements a Perl module that represents the CloudFormation object AWS::FMS::Policy.
163              
164             See L<Cfn> for more information on how to use it.
165              
166             =head1 AUTHOR
167              
168             Jose Luis Martinez
169             CAPSiDE
170             jlmartinez@capside.com
171              
172             =head1 COPYRIGHT and LICENSE
173              
174             Copyright (c) 2013 by CAPSiDE
175             This code is distributed under the Apache 2 License. The full text of the
176             license can be found in the LICENSE file included with this module.
177              
178             =cut