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 18.4.0
2 2     2   1315 use Moose::Util::TypeConstraints;
  2         7  
  2         24  
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   4340 use Moose;
  2         6  
  2         15  
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 6 [ 'Id','NameServers' ]
15             }
16             sub supported_regions {
17 1     1 0 1147 [ '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::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::Object::AWS::Route53::HostedZone::VPC->new( %$_ );
55             }
56             };
57              
58             package Cfn::Resource::Properties::Object::AWS::Route53::HostedZone::VPC {
59 2     2   15514 use Moose;
  2         5  
  2         13  
60 2     2   13486 use MooseX::StrictConstructor;
  2         9  
  2         18  
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::Object::AWS::Route53::HostedZone::QueryLoggingConfig->new( %$_ );
77             }
78             };
79              
80             package Cfn::Resource::Properties::Object::AWS::Route53::HostedZone::QueryLoggingConfig {
81 2     2   7405 use Moose;
  2         7  
  2         10  
82 2     2   13250 use MooseX::StrictConstructor;
  2         4  
  2         9  
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::Object::AWS::Route53::HostedZone::HostedZoneTag->new( %$_ );
120             }
121             };
122              
123             package Cfn::Resource::Properties::Object::AWS::Route53::HostedZone::HostedZoneTag {
124 2     2   7253 use Moose;
  2         6  
  2         13  
125 2     2   13599 use MooseX::StrictConstructor;
  2         9  
  2         12  
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::Object::AWS::Route53::HostedZone::HostedZoneConfig->new( %$_ );
142             }
143             };
144              
145             package Cfn::Resource::Properties::Object::AWS::Route53::HostedZone::HostedZoneConfig {
146 2     2   7103 use Moose;
  2         7  
  2         12  
147 2     2   13477 use MooseX::StrictConstructor;
  2         6  
  2         10  
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   6631 use Moose;
  2         9  
  2         13  
155 2     2   13225 use MooseX::StrictConstructor;
  2         5  
  2         13  
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 => 'Mutable');
163             }
164              
165             1;
166             ### main pod documentation begin ###
167              
168             =encoding UTF-8
169              
170             =head1 NAME
171              
172             Cfn::Resource::AWS::Route53::HostedZone - Cfn resource for AWS::Route53::HostedZone
173              
174             =head1 DESCRIPTION
175              
176             This module implements a Perl module that represents the CloudFormation object AWS::Route53::HostedZone.
177              
178             See L<Cfn> for more information on how to use it.
179              
180             =head1 AUTHOR
181              
182             Jose Luis Martinez
183             CAPSiDE
184             jlmartinez@capside.com
185              
186             =head1 COPYRIGHT and LICENSE
187              
188             Copyright (c) 2013 by CAPSiDE
189             This code is distributed under the Apache 2 License. The full text of the
190             license can be found in the LICENSE file included with this module.
191              
192             =cut