| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
# AWS::AppConfig::ConfigurationProfile generated from spec 11.1.0 |
|
2
|
1
|
|
|
1
|
|
528
|
use Moose::Util::TypeConstraints; |
|
|
1
|
|
|
|
|
4
|
|
|
|
1
|
|
|
|
|
9
|
|
|
3
|
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::AppConfig::ConfigurationProfile', |
|
5
|
|
|
|
|
|
|
from 'HashRef', |
|
6
|
|
|
|
|
|
|
via { Cfn::Resource::Properties::AWS::AppConfig::ConfigurationProfile->new( %$_ ) }; |
|
7
|
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
package Cfn::Resource::AWS::AppConfig::ConfigurationProfile { |
|
9
|
1
|
|
|
1
|
|
1932
|
use Moose; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
8
|
|
|
10
|
|
|
|
|
|
|
extends 'Cfn::Resource'; |
|
11
|
|
|
|
|
|
|
has Properties => (isa => 'Cfn::Resource::Properties::AWS::AppConfig::ConfigurationProfile', is => 'rw', coerce => 1); |
|
12
|
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
sub AttributeList { |
|
14
|
1
|
|
|
1
|
0
|
6
|
[ ] |
|
15
|
|
|
|
|
|
|
} |
|
16
|
|
|
|
|
|
|
sub supported_regions { |
|
17
|
1
|
|
|
1
|
0
|
1039
|
[ 'us-east-1','us-east-2','us-west-2' ] |
|
18
|
|
|
|
|
|
|
} |
|
19
|
|
|
|
|
|
|
} |
|
20
|
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
subtype 'ArrayOfCfn::Resource::Properties::AWS::AppConfig::ConfigurationProfile::Validators', |
|
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::AppConfig::ConfigurationProfile::Validators', |
|
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::AppConfig::ConfigurationProfile::Validators')->coerce($_) |
|
41
|
|
|
|
|
|
|
} @$_ |
|
42
|
|
|
|
|
|
|
]); |
|
43
|
|
|
|
|
|
|
}; |
|
44
|
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::AWS::AppConfig::ConfigurationProfile::Validators', |
|
46
|
|
|
|
|
|
|
as 'Cfn::Value'; |
|
47
|
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::AppConfig::ConfigurationProfile::Validators', |
|
49
|
|
|
|
|
|
|
from 'HashRef', |
|
50
|
|
|
|
|
|
|
via { |
|
51
|
|
|
|
|
|
|
if (my $f = Cfn::TypeLibrary::try_function($_)) { |
|
52
|
|
|
|
|
|
|
return $f |
|
53
|
|
|
|
|
|
|
} else { |
|
54
|
|
|
|
|
|
|
return Cfn::Resource::Properties::AWS::AppConfig::ConfigurationProfile::ValidatorsValue->new( %$_ ); |
|
55
|
|
|
|
|
|
|
} |
|
56
|
|
|
|
|
|
|
}; |
|
57
|
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
package Cfn::Resource::Properties::AWS::AppConfig::ConfigurationProfile::ValidatorsValue { |
|
59
|
1
|
|
|
1
|
|
6984
|
use Moose; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
7
|
|
|
60
|
1
|
|
|
1
|
|
6548
|
use MooseX::StrictConstructor; |
|
|
1
|
|
|
|
|
4
|
|
|
|
1
|
|
|
|
|
8
|
|
|
61
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
|
62
|
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
has Content => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
|
64
|
|
|
|
|
|
|
has Type => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
|
65
|
|
|
|
|
|
|
} |
|
66
|
|
|
|
|
|
|
subtype 'ArrayOfCfn::Resource::Properties::AWS::AppConfig::ConfigurationProfile::Tags', |
|
67
|
|
|
|
|
|
|
as 'Cfn::Value', |
|
68
|
|
|
|
|
|
|
where { $_->isa('Cfn::Value::Array') or $_->isa('Cfn::Value::Function') }, |
|
69
|
|
|
|
|
|
|
message { "$_ is not a Cfn::Value or a Cfn::Value::Function" }; |
|
70
|
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
coerce 'ArrayOfCfn::Resource::Properties::AWS::AppConfig::ConfigurationProfile::Tags', |
|
72
|
|
|
|
|
|
|
from 'HashRef', |
|
73
|
|
|
|
|
|
|
via { |
|
74
|
|
|
|
|
|
|
if (my $f = Cfn::TypeLibrary::try_function($_)) { |
|
75
|
|
|
|
|
|
|
return $f |
|
76
|
|
|
|
|
|
|
} else { |
|
77
|
|
|
|
|
|
|
die 'Only accepts functions'; |
|
78
|
|
|
|
|
|
|
} |
|
79
|
|
|
|
|
|
|
}, |
|
80
|
|
|
|
|
|
|
from 'ArrayRef', |
|
81
|
|
|
|
|
|
|
via { |
|
82
|
|
|
|
|
|
|
Cfn::Value::Array->new(Value => [ |
|
83
|
|
|
|
|
|
|
map { |
|
84
|
|
|
|
|
|
|
Moose::Util::TypeConstraints::find_type_constraint('Cfn::Resource::Properties::AWS::AppConfig::ConfigurationProfile::Tags')->coerce($_) |
|
85
|
|
|
|
|
|
|
} @$_ |
|
86
|
|
|
|
|
|
|
]); |
|
87
|
|
|
|
|
|
|
}; |
|
88
|
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::AWS::AppConfig::ConfigurationProfile::Tags', |
|
90
|
|
|
|
|
|
|
as 'Cfn::Value'; |
|
91
|
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::AppConfig::ConfigurationProfile::Tags', |
|
93
|
|
|
|
|
|
|
from 'HashRef', |
|
94
|
|
|
|
|
|
|
via { |
|
95
|
|
|
|
|
|
|
if (my $f = Cfn::TypeLibrary::try_function($_)) { |
|
96
|
|
|
|
|
|
|
return $f |
|
97
|
|
|
|
|
|
|
} else { |
|
98
|
|
|
|
|
|
|
return Cfn::Resource::Properties::AWS::AppConfig::ConfigurationProfile::TagsValue->new( %$_ ); |
|
99
|
|
|
|
|
|
|
} |
|
100
|
|
|
|
|
|
|
}; |
|
101
|
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
package Cfn::Resource::Properties::AWS::AppConfig::ConfigurationProfile::TagsValue { |
|
103
|
1
|
|
|
1
|
|
3575
|
use Moose; |
|
|
1
|
|
|
|
|
4
|
|
|
|
1
|
|
|
|
|
7
|
|
|
104
|
1
|
|
|
1
|
|
6426
|
use MooseX::StrictConstructor; |
|
|
1
|
|
|
|
|
3
|
|
|
|
1
|
|
|
|
|
6
|
|
|
105
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
|
106
|
|
|
|
|
|
|
|
|
107
|
|
|
|
|
|
|
has Key => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
|
108
|
|
|
|
|
|
|
has Value => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
|
109
|
|
|
|
|
|
|
} |
|
110
|
|
|
|
|
|
|
|
|
111
|
|
|
|
|
|
|
package Cfn::Resource::Properties::AWS::AppConfig::ConfigurationProfile { |
|
112
|
1
|
|
|
1
|
|
3231
|
use Moose; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
6
|
|
|
113
|
1
|
|
|
1
|
|
6469
|
use MooseX::StrictConstructor; |
|
|
1
|
|
|
|
|
6
|
|
|
|
1
|
|
|
|
|
6
|
|
|
114
|
|
|
|
|
|
|
extends 'Cfn::Resource::Properties'; |
|
115
|
|
|
|
|
|
|
|
|
116
|
|
|
|
|
|
|
has ApplicationId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable'); |
|
117
|
|
|
|
|
|
|
has Description => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
|
118
|
|
|
|
|
|
|
has LocationUri => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable'); |
|
119
|
|
|
|
|
|
|
has Name => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
|
120
|
|
|
|
|
|
|
has RetrievalRoleArn => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
|
121
|
|
|
|
|
|
|
has Tags => (isa => 'ArrayOfCfn::Resource::Properties::AWS::AppConfig::ConfigurationProfile::Tags', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
|
122
|
|
|
|
|
|
|
has Validators => (isa => 'ArrayOfCfn::Resource::Properties::AWS::AppConfig::ConfigurationProfile::Validators', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
|
123
|
|
|
|
|
|
|
} |
|
124
|
|
|
|
|
|
|
|
|
125
|
|
|
|
|
|
|
1; |