line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# Alexa::ASK::Skill generated from spec 2.25.0 |
2
|
1
|
|
|
1
|
|
711
|
use Moose::Util::TypeConstraints; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
12
|
|
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::Alexa::ASK::Skill', |
5
|
|
|
|
|
|
|
from 'HashRef', |
6
|
|
|
|
|
|
|
via { Cfn::Resource::Properties::Alexa::ASK::Skill->new( %$_ ) }; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
package Cfn::Resource::Alexa::ASK::Skill { |
9
|
1
|
|
|
1
|
|
2233
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
8
|
|
10
|
|
|
|
|
|
|
extends 'Cfn::Resource'; |
11
|
|
|
|
|
|
|
has Properties => (isa => 'Cfn::Resource::Properties::Alexa::ASK::Skill', is => 'rw', coerce => 1); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
sub AttributeList { |
14
|
1
|
|
|
1
|
0
|
3
|
[ ] |
15
|
|
|
|
|
|
|
} |
16
|
|
|
|
|
|
|
sub supported_regions { |
17
|
1
|
|
|
1
|
0
|
1065
|
[ 'ap-northeast-2','ap-south-1','ap-southeast-1','ap-southeast-2','ca-central-1','eu-central-1','eu-west-1','eu-west-2','eu-west-3','sa-east-1','us-east-1','us-east-2','us-west-1','us-west-2' ] |
18
|
|
|
|
|
|
|
} |
19
|
|
|
|
|
|
|
} |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::Alexa::ASK::Skill::Overrides', |
24
|
|
|
|
|
|
|
as 'Cfn::Value'; |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::Alexa::ASK::Skill::Overrides', |
27
|
|
|
|
|
|
|
from 'HashRef', |
28
|
|
|
|
|
|
|
via { |
29
|
|
|
|
|
|
|
if (my $f = Cfn::TypeLibrary::try_function($_)) { |
30
|
|
|
|
|
|
|
return $f |
31
|
|
|
|
|
|
|
} else { |
32
|
|
|
|
|
|
|
return Cfn::Resource::Properties::Alexa::ASK::Skill::OverridesValue->new( %$_ ); |
33
|
|
|
|
|
|
|
} |
34
|
|
|
|
|
|
|
}; |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Alexa::ASK::Skill::OverridesValue { |
37
|
1
|
|
|
1
|
|
7873
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
38
|
1
|
|
|
1
|
|
6893
|
use MooseX::StrictConstructor; |
|
1
|
|
|
|
|
25121
|
|
|
1
|
|
|
|
|
4
|
|
39
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
has Manifest => (isa => 'Cfn::Value::Json|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
42
|
|
|
|
|
|
|
} |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::Alexa::ASK::Skill::SkillPackage', |
45
|
|
|
|
|
|
|
as 'Cfn::Value'; |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::Alexa::ASK::Skill::SkillPackage', |
48
|
|
|
|
|
|
|
from 'HashRef', |
49
|
|
|
|
|
|
|
via { |
50
|
|
|
|
|
|
|
if (my $f = Cfn::TypeLibrary::try_function($_)) { |
51
|
|
|
|
|
|
|
return $f |
52
|
|
|
|
|
|
|
} else { |
53
|
|
|
|
|
|
|
return Cfn::Resource::Properties::Alexa::ASK::Skill::SkillPackageValue->new( %$_ ); |
54
|
|
|
|
|
|
|
} |
55
|
|
|
|
|
|
|
}; |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Alexa::ASK::Skill::SkillPackageValue { |
58
|
1
|
|
|
1
|
|
10139
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
59
|
1
|
|
|
1
|
|
6533
|
use MooseX::StrictConstructor; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
4
|
|
60
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
has Overrides => (isa => 'Cfn::Resource::Properties::Alexa::ASK::Skill::Overrides', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
63
|
|
|
|
|
|
|
has S3Bucket => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
64
|
|
|
|
|
|
|
has S3BucketRole => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
65
|
|
|
|
|
|
|
has S3Key => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
66
|
|
|
|
|
|
|
has S3ObjectVersion => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
67
|
|
|
|
|
|
|
} |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::Alexa::ASK::Skill::AuthenticationConfiguration', |
70
|
|
|
|
|
|
|
as 'Cfn::Value'; |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::Alexa::ASK::Skill::AuthenticationConfiguration', |
73
|
|
|
|
|
|
|
from 'HashRef', |
74
|
|
|
|
|
|
|
via { |
75
|
|
|
|
|
|
|
if (my $f = Cfn::TypeLibrary::try_function($_)) { |
76
|
|
|
|
|
|
|
return $f |
77
|
|
|
|
|
|
|
} else { |
78
|
|
|
|
|
|
|
return Cfn::Resource::Properties::Alexa::ASK::Skill::AuthenticationConfigurationValue->new( %$_ ); |
79
|
|
|
|
|
|
|
} |
80
|
|
|
|
|
|
|
}; |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Alexa::ASK::Skill::AuthenticationConfigurationValue { |
83
|
1
|
|
|
1
|
|
3353
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
84
|
1
|
|
|
1
|
|
6418
|
use MooseX::StrictConstructor; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
5
|
|
85
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
has ClientId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
88
|
|
|
|
|
|
|
has ClientSecret => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
89
|
|
|
|
|
|
|
has RefreshToken => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
90
|
|
|
|
|
|
|
} |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Alexa::ASK::Skill { |
93
|
1
|
|
|
1
|
|
3158
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
5
|
|
94
|
1
|
|
|
1
|
|
6487
|
use MooseX::StrictConstructor; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
4
|
|
95
|
|
|
|
|
|
|
extends 'Cfn::Resource::Properties'; |
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
has AuthenticationConfiguration => (isa => 'Cfn::Resource::Properties::Alexa::ASK::Skill::AuthenticationConfiguration', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
98
|
|
|
|
|
|
|
has SkillPackage => (isa => 'Cfn::Resource::Properties::Alexa::ASK::Skill::SkillPackage', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
99
|
|
|
|
|
|
|
has VendorId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable'); |
100
|
|
|
|
|
|
|
} |
101
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
1; |