line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# AWS::AppMesh::VirtualService generated from spec 18.4.0 |
2
|
1
|
|
|
1
|
|
777
|
use Moose::Util::TypeConstraints; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
13
|
|
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::AppMesh::VirtualService', |
5
|
|
|
|
|
|
|
from 'HashRef', |
6
|
|
|
|
|
|
|
via { Cfn::Resource::Properties::AWS::AppMesh::VirtualService->new( %$_ ) }; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
package Cfn::Resource::AWS::AppMesh::VirtualService { |
9
|
1
|
|
|
1
|
|
2329
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
8
|
|
10
|
|
|
|
|
|
|
extends 'Cfn::Resource'; |
11
|
|
|
|
|
|
|
has Properties => (isa => 'Cfn::Resource::Properties::AWS::AppMesh::VirtualService', is => 'rw', coerce => 1); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
sub AttributeList { |
14
|
1
|
|
|
1
|
0
|
8
|
[ 'Arn','MeshName','MeshOwner','ResourceOwner','Uid','VirtualServiceName' ] |
15
|
|
|
|
|
|
|
} |
16
|
|
|
|
|
|
|
sub supported_regions { |
17
|
1
|
|
|
1
|
0
|
1276
|
[ 'ap-northeast-1','ap-northeast-2','ap-south-1','ap-southeast-1','ap-southeast-2','ca-central-1','eu-central-1','eu-west-1','eu-west-2','us-east-1','us-east-2','us-west-1','us-west-2' ] |
18
|
|
|
|
|
|
|
} |
19
|
|
|
|
|
|
|
} |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::AWS::AppMesh::VirtualService::VirtualRouterServiceProvider', |
24
|
|
|
|
|
|
|
as 'Cfn::Value'; |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::AppMesh::VirtualService::VirtualRouterServiceProvider', |
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::AppMesh::VirtualService::VirtualRouterServiceProvider->new( %$_ ); |
33
|
|
|
|
|
|
|
} |
34
|
|
|
|
|
|
|
}; |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Object::AWS::AppMesh::VirtualService::VirtualRouterServiceProvider { |
37
|
1
|
|
|
1
|
|
7639
|
use Moose; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
6
|
|
38
|
1
|
|
|
1
|
|
6750
|
use MooseX::StrictConstructor; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
11
|
|
39
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
has VirtualRouterName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
42
|
|
|
|
|
|
|
} |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::AWS::AppMesh::VirtualService::VirtualNodeServiceProvider', |
45
|
|
|
|
|
|
|
as 'Cfn::Value'; |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::AppMesh::VirtualService::VirtualNodeServiceProvider', |
48
|
|
|
|
|
|
|
from 'HashRef', |
49
|
|
|
|
|
|
|
via { |
50
|
|
|
|
|
|
|
if (my $f = Cfn::TypeLibrary::try_function($_)) { |
51
|
|
|
|
|
|
|
return $f |
52
|
|
|
|
|
|
|
} else { |
53
|
|
|
|
|
|
|
return Cfn::Resource::Properties::Object::AWS::AppMesh::VirtualService::VirtualNodeServiceProvider->new( %$_ ); |
54
|
|
|
|
|
|
|
} |
55
|
|
|
|
|
|
|
}; |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Object::AWS::AppMesh::VirtualService::VirtualNodeServiceProvider { |
58
|
1
|
|
|
1
|
|
3698
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
59
|
1
|
|
|
1
|
|
6696
|
use MooseX::StrictConstructor; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
5
|
|
60
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
has VirtualNodeName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
63
|
|
|
|
|
|
|
} |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::AWS::AppMesh::VirtualService::VirtualServiceProvider', |
66
|
|
|
|
|
|
|
as 'Cfn::Value'; |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::AppMesh::VirtualService::VirtualServiceProvider', |
69
|
|
|
|
|
|
|
from 'HashRef', |
70
|
|
|
|
|
|
|
via { |
71
|
|
|
|
|
|
|
if (my $f = Cfn::TypeLibrary::try_function($_)) { |
72
|
|
|
|
|
|
|
return $f |
73
|
|
|
|
|
|
|
} else { |
74
|
|
|
|
|
|
|
return Cfn::Resource::Properties::Object::AWS::AppMesh::VirtualService::VirtualServiceProvider->new( %$_ ); |
75
|
|
|
|
|
|
|
} |
76
|
|
|
|
|
|
|
}; |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Object::AWS::AppMesh::VirtualService::VirtualServiceProvider { |
79
|
1
|
|
|
1
|
|
3405
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
80
|
1
|
|
|
1
|
|
6631
|
use MooseX::StrictConstructor; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
12
|
|
81
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
has VirtualNode => (isa => 'Cfn::Resource::Properties::AWS::AppMesh::VirtualService::VirtualNodeServiceProvider', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
84
|
|
|
|
|
|
|
has VirtualRouter => (isa => 'Cfn::Resource::Properties::AWS::AppMesh::VirtualService::VirtualRouterServiceProvider', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
85
|
|
|
|
|
|
|
} |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::AWS::AppMesh::VirtualService::VirtualServiceSpec', |
88
|
|
|
|
|
|
|
as 'Cfn::Value'; |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::AppMesh::VirtualService::VirtualServiceSpec', |
91
|
|
|
|
|
|
|
from 'HashRef', |
92
|
|
|
|
|
|
|
via { |
93
|
|
|
|
|
|
|
if (my $f = Cfn::TypeLibrary::try_function($_)) { |
94
|
|
|
|
|
|
|
return $f |
95
|
|
|
|
|
|
|
} else { |
96
|
|
|
|
|
|
|
return Cfn::Resource::Properties::Object::AWS::AppMesh::VirtualService::VirtualServiceSpec->new( %$_ ); |
97
|
|
|
|
|
|
|
} |
98
|
|
|
|
|
|
|
}; |
99
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Object::AWS::AppMesh::VirtualService::VirtualServiceSpec { |
101
|
1
|
|
|
1
|
|
3388
|
use Moose; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
11
|
|
102
|
1
|
|
|
1
|
|
6663
|
use MooseX::StrictConstructor; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
5
|
|
103
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
has Provider => (isa => 'Cfn::Resource::Properties::AWS::AppMesh::VirtualService::VirtualServiceProvider', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
106
|
|
|
|
|
|
|
} |
107
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
package Cfn::Resource::Properties::AWS::AppMesh::VirtualService { |
109
|
1
|
|
|
1
|
|
3283
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
110
|
1
|
|
|
1
|
|
6650
|
use MooseX::StrictConstructor; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
5
|
|
111
|
|
|
|
|
|
|
extends 'Cfn::Resource::Properties'; |
112
|
|
|
|
|
|
|
|
113
|
|
|
|
|
|
|
has MeshName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable'); |
114
|
|
|
|
|
|
|
has MeshOwner => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable'); |
115
|
|
|
|
|
|
|
has Spec => (isa => 'Cfn::Resource::Properties::AWS::AppMesh::VirtualService::VirtualServiceSpec', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
116
|
|
|
|
|
|
|
has Tags => (isa => 'ArrayOfCfn::Resource::Properties::TagType', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
117
|
|
|
|
|
|
|
has VirtualServiceName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable'); |
118
|
|
|
|
|
|
|
} |
119
|
|
|
|
|
|
|
|
120
|
|
|
|
|
|
|
1; |
121
|
|
|
|
|
|
|
### main pod documentation begin ### |
122
|
|
|
|
|
|
|
|
123
|
|
|
|
|
|
|
=encoding UTF-8 |
124
|
|
|
|
|
|
|
|
125
|
|
|
|
|
|
|
=head1 NAME |
126
|
|
|
|
|
|
|
|
127
|
|
|
|
|
|
|
Cfn::Resource::AWS::AppMesh::VirtualService - Cfn resource for AWS::AppMesh::VirtualService |
128
|
|
|
|
|
|
|
|
129
|
|
|
|
|
|
|
=head1 DESCRIPTION |
130
|
|
|
|
|
|
|
|
131
|
|
|
|
|
|
|
This module implements a Perl module that represents the CloudFormation object AWS::AppMesh::VirtualService. |
132
|
|
|
|
|
|
|
|
133
|
|
|
|
|
|
|
See L<Cfn> for more information on how to use it. |
134
|
|
|
|
|
|
|
|
135
|
|
|
|
|
|
|
=head1 AUTHOR |
136
|
|
|
|
|
|
|
|
137
|
|
|
|
|
|
|
Jose Luis Martinez |
138
|
|
|
|
|
|
|
CAPSiDE |
139
|
|
|
|
|
|
|
jlmartinez@capside.com |
140
|
|
|
|
|
|
|
|
141
|
|
|
|
|
|
|
=head1 COPYRIGHT and LICENSE |
142
|
|
|
|
|
|
|
|
143
|
|
|
|
|
|
|
Copyright (c) 2013 by CAPSiDE |
144
|
|
|
|
|
|
|
This code is distributed under the Apache 2 License. The full text of the |
145
|
|
|
|
|
|
|
license can be found in the LICENSE file included with this module. |
146
|
|
|
|
|
|
|
|
147
|
|
|
|
|
|
|
=cut |