| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
# AWS::ApiGatewayV2::Stage generated from spec 10.0.0 |
|
2
|
2
|
|
|
2
|
|
1364
|
use Moose::Util::TypeConstraints; |
|
|
2
|
|
|
|
|
7
|
|
|
|
2
|
|
|
|
|
21
|
|
|
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
|
|
4201
|
use Moose; |
|
|
2
|
|
|
|
|
5
|
|
|
|
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
|
3
|
[ ] |
|
15
|
|
|
|
|
|
|
} |
|
16
|
|
|
|
|
|
|
sub supported_regions { |
|
17
|
1
|
|
|
1
|
0
|
1120
|
[ '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::AWS::ApiGatewayV2::Stage::RouteSettingsValue->new( %$_ ); |
|
33
|
|
|
|
|
|
|
} |
|
34
|
|
|
|
|
|
|
}; |
|
35
|
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
package Cfn::Resource::Properties::AWS::ApiGatewayV2::Stage::RouteSettingsValue { |
|
37
|
2
|
|
|
2
|
|
15013
|
use Moose; |
|
|
2
|
|
|
|
|
15
|
|
|
|
2
|
|
|
|
|
12
|
|
|
38
|
2
|
|
|
2
|
|
13472
|
use MooseX::StrictConstructor; |
|
|
2
|
|
|
|
|
6
|
|
|
|
2
|
|
|
|
|
21
|
|
|
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::AWS::ApiGatewayV2::Stage::AccessLogSettingsValue->new( %$_ ); |
|
58
|
|
|
|
|
|
|
} |
|
59
|
|
|
|
|
|
|
}; |
|
60
|
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
package Cfn::Resource::Properties::AWS::ApiGatewayV2::Stage::AccessLogSettingsValue { |
|
62
|
2
|
|
|
2
|
|
7169
|
use Moose; |
|
|
2
|
|
|
|
|
8
|
|
|
|
2
|
|
|
|
|
13
|
|
|
63
|
2
|
|
|
2
|
|
14101
|
use MooseX::StrictConstructor; |
|
|
2
|
|
|
|
|
6
|
|
|
|
2
|
|
|
|
|
12
|
|
|
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
|
|
6778
|
use Moose; |
|
|
2
|
|
|
|
|
10
|
|
|
|
2
|
|
|
|
|
12
|
|
|
72
|
2
|
|
|
2
|
|
13221
|
use MooseX::StrictConstructor; |
|
|
2
|
|
|
|
|
5
|
|
|
|
2
|
|
|
|
|
12
|
|
|
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; |