File Coverage

blib/lib/Cfn/Resource/AWS/Route53/HostedZone.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::Route53::HostedZone generated from spec 5.3.0
2 2     2   1436 use Moose::Util::TypeConstraints;
  2         5  
  2         25  
3              
4             coerce 'Cfn::Resource::Properties::AWS::Route53::HostedZone',
5             from 'HashRef',
6             via { Cfn::Resource::Properties::AWS::Route53::HostedZone->new( %$_ ) };
7              
8             package Cfn::Resource::AWS::Route53::HostedZone {
9 2     2   4530 use Moose;
  2         7  
  2         17  
10             extends 'Cfn::Resource';
11             has Properties => (isa => 'Cfn::Resource::Properties::AWS::Route53::HostedZone', is => 'rw', coerce => 1);
12            
13             sub AttributeList {
14 1     1 0 5 [ 'NameServers' ]
15             }
16             sub supported_regions {
17 1     1 0 1175 [ '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-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::Route53::HostedZone::VPC',
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::Route53::HostedZone::VPC',
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::Route53::HostedZone::VPC')->coerce($_)
41             } @$_
42             ]);
43             };
44              
45             subtype 'Cfn::Resource::Properties::AWS::Route53::HostedZone::VPC',
46             as 'Cfn::Value';
47              
48             coerce 'Cfn::Resource::Properties::AWS::Route53::HostedZone::VPC',
49             from 'HashRef',
50             via {
51             if (my $f = Cfn::TypeLibrary::try_function($_)) {
52             return $f
53             } else {
54             return Cfn::Resource::Properties::AWS::Route53::HostedZone::VPCValue->new( %$_ );
55             }
56             };
57              
58             package Cfn::Resource::Properties::AWS::Route53::HostedZone::VPCValue {
59 2     2   15423 use Moose;
  2         5  
  2         12  
60 2     2   13207 use MooseX::StrictConstructor;
  2         6  
  2         22  
61             extends 'Cfn::Value::TypedValue';
62            
63             has VPCId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
64             has VPCRegion => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
65             }
66              
67             subtype 'Cfn::Resource::Properties::AWS::Route53::HostedZone::QueryLoggingConfig',
68             as 'Cfn::Value';
69              
70             coerce 'Cfn::Resource::Properties::AWS::Route53::HostedZone::QueryLoggingConfig',
71             from 'HashRef',
72             via {
73             if (my $f = Cfn::TypeLibrary::try_function($_)) {
74             return $f
75             } else {
76             return Cfn::Resource::Properties::AWS::Route53::HostedZone::QueryLoggingConfigValue->new( %$_ );
77             }
78             };
79              
80             package Cfn::Resource::Properties::AWS::Route53::HostedZone::QueryLoggingConfigValue {
81 2     2   7395 use Moose;
  2         6  
  2         12  
82 2     2   13145 use MooseX::StrictConstructor;
  2         6  
  2         12  
83             extends 'Cfn::Value::TypedValue';
84            
85             has CloudWatchLogsLogGroupArn => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
86             }
87             subtype 'ArrayOfCfn::Resource::Properties::AWS::Route53::HostedZone::HostedZoneTag',
88             as 'Cfn::Value',
89             where { $_->isa('Cfn::Value::Array') or $_->isa('Cfn::Value::Function') },
90             message { "$_ is not a Cfn::Value or a Cfn::Value::Function" };
91              
92             coerce 'ArrayOfCfn::Resource::Properties::AWS::Route53::HostedZone::HostedZoneTag',
93             from 'HashRef',
94             via {
95             if (my $f = Cfn::TypeLibrary::try_function($_)) {
96             return $f
97             } else {
98             die 'Only accepts functions';
99             }
100             },
101             from 'ArrayRef',
102             via {
103             Cfn::Value::Array->new(Value => [
104             map {
105             Moose::Util::TypeConstraints::find_type_constraint('Cfn::Resource::Properties::AWS::Route53::HostedZone::HostedZoneTag')->coerce($_)
106             } @$_
107             ]);
108             };
109              
110             subtype 'Cfn::Resource::Properties::AWS::Route53::HostedZone::HostedZoneTag',
111             as 'Cfn::Value';
112              
113             coerce 'Cfn::Resource::Properties::AWS::Route53::HostedZone::HostedZoneTag',
114             from 'HashRef',
115             via {
116             if (my $f = Cfn::TypeLibrary::try_function($_)) {
117             return $f
118             } else {
119             return Cfn::Resource::Properties::AWS::Route53::HostedZone::HostedZoneTagValue->new( %$_ );
120             }
121             };
122              
123             package Cfn::Resource::Properties::AWS::Route53::HostedZone::HostedZoneTagValue {
124 2     2   7108 use Moose;
  2         6  
  2         12  
125 2     2   13232 use MooseX::StrictConstructor;
  2         6  
  2         17  
126             extends 'Cfn::Value::TypedValue';
127            
128             has Key => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
129             has Value => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
130             }
131              
132             subtype 'Cfn::Resource::Properties::AWS::Route53::HostedZone::HostedZoneConfig',
133             as 'Cfn::Value';
134              
135             coerce 'Cfn::Resource::Properties::AWS::Route53::HostedZone::HostedZoneConfig',
136             from 'HashRef',
137             via {
138             if (my $f = Cfn::TypeLibrary::try_function($_)) {
139             return $f
140             } else {
141             return Cfn::Resource::Properties::AWS::Route53::HostedZone::HostedZoneConfigValue->new( %$_ );
142             }
143             };
144              
145             package Cfn::Resource::Properties::AWS::Route53::HostedZone::HostedZoneConfigValue {
146 2     2   6671 use Moose;
  2         5  
  2         11  
147 2     2   13173 use MooseX::StrictConstructor;
  2         10  
  2         19  
148             extends 'Cfn::Value::TypedValue';
149            
150             has Comment => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
151             }
152              
153             package Cfn::Resource::Properties::AWS::Route53::HostedZone {
154 2     2   6667 use Moose;
  2         9  
  2         14  
155 2     2   13347 use MooseX::StrictConstructor;
  2         5  
  2         14  
156             extends 'Cfn::Resource::Properties';
157            
158             has HostedZoneConfig => (isa => 'Cfn::Resource::Properties::AWS::Route53::HostedZone::HostedZoneConfig', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
159             has HostedZoneTags => (isa => 'ArrayOfCfn::Resource::Properties::AWS::Route53::HostedZone::HostedZoneTag', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
160             has Name => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
161             has QueryLoggingConfig => (isa => 'Cfn::Resource::Properties::AWS::Route53::HostedZone::QueryLoggingConfig', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
162             has VPCs => (isa => 'ArrayOfCfn::Resource::Properties::AWS::Route53::HostedZone::VPC', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Conditional');
163             }
164              
165             1;