File Coverage

blib/lib/Cfn/Resource/AWS/ApiGatewayV2/Stage.pm
Criterion Covered Total %
statement 26 26 100.0
branch n/a
condition n/a
subroutine 10 10 100.0
pod 0 2 0.0
total 36 38 94.7


line stmt bran cond sub pod time code
1             # AWS::ApiGatewayV2::Stage generated from spec 18.4.0
2 2     2   1520 use Moose::Util::TypeConstraints;
  2         5  
  2         22  
3              
4             coerce 'Cfn::Resource::Properties::AWS::ApiGatewayV2::Stage',
5             from 'HashRef',
6             via { Cfn::Resource::Properties::AWS::ApiGatewayV2::Stage->new( %$_ ) };
7              
8             package Cfn::Resource::AWS::ApiGatewayV2::Stage {
9 2     2   4834 use Moose;
  2         6  
  2         16  
10             extends 'Cfn::Resource';
11             has Properties => (isa => 'Cfn::Resource::Properties::AWS::ApiGatewayV2::Stage', is => 'rw', coerce => 1);
12            
13             sub AttributeList {
14 1     1 0 4 [ ]
15             }
16             sub supported_regions {
17 1     1 0 1138 [ 'ap-east-1','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-gov-east-1','us-gov-west-1','us-west-1','us-west-2' ]
18             }
19             }
20              
21              
22              
23             subtype 'Cfn::Resource::Properties::AWS::ApiGatewayV2::Stage::RouteSettings',
24             as 'Cfn::Value';
25              
26             coerce 'Cfn::Resource::Properties::AWS::ApiGatewayV2::Stage::RouteSettings',
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::ApiGatewayV2::Stage::RouteSettings->new( %$_ );
33             }
34             };
35              
36             package Cfn::Resource::Properties::Object::AWS::ApiGatewayV2::Stage::RouteSettings {
37 2     2   14951 use Moose;
  2         14  
  2         12  
38 2     2   13195 use MooseX::StrictConstructor;
  2         5  
  2         20  
39             extends 'Cfn::Value::TypedValue';
40            
41             has DataTraceEnabled => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
42             has DetailedMetricsEnabled => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
43             has LoggingLevel => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
44             has ThrottlingBurstLimit => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
45             has ThrottlingRateLimit => (isa => 'Cfn::Value::Double', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
46             }
47              
48             subtype 'Cfn::Resource::Properties::AWS::ApiGatewayV2::Stage::AccessLogSettings',
49             as 'Cfn::Value';
50              
51             coerce 'Cfn::Resource::Properties::AWS::ApiGatewayV2::Stage::AccessLogSettings',
52             from 'HashRef',
53             via {
54             if (my $f = Cfn::TypeLibrary::try_function($_)) {
55             return $f
56             } else {
57             return Cfn::Resource::Properties::Object::AWS::ApiGatewayV2::Stage::AccessLogSettings->new( %$_ );
58             }
59             };
60              
61             package Cfn::Resource::Properties::Object::AWS::ApiGatewayV2::Stage::AccessLogSettings {
62 2     2   7495 use Moose;
  2         5  
  2         9  
63 2     2   13410 use MooseX::StrictConstructor;
  2         5  
  2         10  
64             extends 'Cfn::Value::TypedValue';
65            
66             has DestinationArn => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
67             has Format => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
68             }
69              
70             package Cfn::Resource::Properties::AWS::ApiGatewayV2::Stage {
71 2     2   6588 use Moose;
  2         7  
  2         9  
72 2     2   13232 use MooseX::StrictConstructor;
  2         5  
  2         11  
73             extends 'Cfn::Resource::Properties';
74            
75             has AccessLogSettings => (isa => 'Cfn::Resource::Properties::AWS::ApiGatewayV2::Stage::AccessLogSettings', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
76             has ApiId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
77             has AutoDeploy => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
78             has ClientCertificateId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
79             has DefaultRouteSettings => (isa => 'Cfn::Resource::Properties::AWS::ApiGatewayV2::Stage::RouteSettings', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
80             has DeploymentId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
81             has Description => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
82             has RouteSettings => (isa => 'Cfn::Value::Json|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
83             has StageName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable');
84             has StageVariables => (isa => 'Cfn::Value::Json|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
85             has Tags => (isa => 'Cfn::Value::Json|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable');
86             }
87              
88             1;
89             ### main pod documentation begin ###
90              
91             =encoding UTF-8
92              
93             =head1 NAME
94              
95             Cfn::Resource::AWS::ApiGatewayV2::Stage - Cfn resource for AWS::ApiGatewayV2::Stage
96              
97             =head1 DESCRIPTION
98              
99             This module implements a Perl module that represents the CloudFormation object AWS::ApiGatewayV2::Stage.
100              
101             See L<Cfn> for more information on how to use it.
102              
103             =head1 AUTHOR
104              
105             Jose Luis Martinez
106             CAPSiDE
107             jlmartinez@capside.com
108              
109             =head1 COPYRIGHT and LICENSE
110              
111             Copyright (c) 2013 by CAPSiDE
112             This code is distributed under the Apache 2 License. The full text of the
113             license can be found in the LICENSE file included with this module.
114              
115             =cut