File Coverage

blib/lib/Cfn/Resource/AWS/EC2/CarrierGateway.pm
Criterion Covered Total %
statement 20 20 100.0
branch n/a
condition n/a
subroutine 8 8 100.0
pod 0 2 0.0
total 28 30 93.3


line stmt bran cond sub pod time code
1             # AWS::EC2::CarrierGateway generated from spec 18.4.0
2 1     1   756 use Moose::Util::TypeConstraints;
  1         4  
  1         10  
3              
4             coerce 'Cfn::Resource::Properties::AWS::EC2::CarrierGateway',
5             from 'HashRef',
6             via { Cfn::Resource::Properties::AWS::EC2::CarrierGateway->new( %$_ ) };
7              
8             package Cfn::Resource::AWS::EC2::CarrierGateway {
9 1     1   2260 use Moose;
  1         4  
  1         8  
10             extends 'Cfn::Resource';
11             has Properties => (isa => 'Cfn::Resource::Properties::AWS::EC2::CarrierGateway', is => 'rw', coerce => 1);
12            
13             sub AttributeList {
14 1     1 0 6 [ 'CarrierGatewayId','OwnerId','State' ]
15             }
16             sub supported_regions {
17 1     1 0 1148 [ 'us-east-1','us-west-2' ]
18             }
19             }
20              
21              
22              
23             subtype 'Cfn::Resource::Properties::AWS::EC2::CarrierGateway::Tags',
24             as 'Cfn::Value';
25              
26             coerce 'Cfn::Resource::Properties::AWS::EC2::CarrierGateway::Tags',
27             from 'HashRef',
28             via {
29             if (my $f = Cfn::TypeLibrary::try_function($_)) {
30             return $f
31             } else {
32             return Cfn::Resource::Properties::Object::AWS::EC2::CarrierGateway::Tags->new( %$_ );
33             }
34             };
35              
36             package Cfn::Resource::Properties::Object::AWS::EC2::CarrierGateway::Tags {
37 1     1   7291 use Moose;
  1         3  
  1         7  
38 1     1   6592 use MooseX::StrictConstructor;
  1         3  
  1         9  
39             extends 'Cfn::Value::TypedValue';
40            
41             has Tags => (isa => 'ArrayOfCfn::Resource::Properties::TagType', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
42             }
43              
44             package Cfn::Resource::Properties::AWS::EC2::CarrierGateway {
45 1     1   3880 use Moose;
  1         3  
  1         5  
46 1     1   6610 use MooseX::StrictConstructor;
  1         3  
  1         6  
47             extends 'Cfn::Resource::Properties';
48            
49             has Tags => (isa => 'Cfn::Resource::Properties::AWS::EC2::CarrierGateway::Tags', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
50             has VpcId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
51             }
52              
53             1;
54             ### main pod documentation begin ###
55              
56             =encoding UTF-8
57              
58             =head1 NAME
59              
60             Cfn::Resource::AWS::EC2::CarrierGateway - Cfn resource for AWS::EC2::CarrierGateway
61              
62             =head1 DESCRIPTION
63              
64             This module implements a Perl module that represents the CloudFormation object AWS::EC2::CarrierGateway.
65              
66             See L<Cfn> for more information on how to use it.
67              
68             =head1 AUTHOR
69              
70             Jose Luis Martinez
71             CAPSiDE
72             jlmartinez@capside.com
73              
74             =head1 COPYRIGHT and LICENSE
75              
76             Copyright (c) 2013 by CAPSiDE
77             This code is distributed under the Apache 2 License. The full text of the
78             license can be found in the LICENSE file included with this module.
79              
80             =cut