File Coverage

blib/lib/Cfn/Resource/Alexa/ASK/Skill.pm
Criterion Covered Total %
statement 32 32 100.0
branch n/a
condition n/a
subroutine 12 12 100.0
pod 0 2 0.0
total 44 46 95.6


line stmt bran cond sub pod time code
1             # Alexa::ASK::Skill generated from spec 18.4.0
2 1     1   779 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   2254 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 4 [ ]
15             }
16             sub supported_regions {
17 1     1 0 1376 [ '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::Object::Alexa::ASK::Skill::Overrides->new( %$_ );
33             }
34             };
35              
36             package Cfn::Resource::Properties::Object::Alexa::ASK::Skill::Overrides {
37 1     1   7984 use Moose;
  1         3  
  1         6  
38 1     1   7683 use MooseX::StrictConstructor;
  1         26798  
  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::Object::Alexa::ASK::Skill::SkillPackage->new( %$_ );
54             }
55             };
56              
57             package Cfn::Resource::Properties::Object::Alexa::ASK::Skill::SkillPackage {
58 1     1   11093 use Moose;
  1         3  
  1         6  
59 1     1   7117 use MooseX::StrictConstructor;
  1         2  
  1         5  
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::Object::Alexa::ASK::Skill::AuthenticationConfiguration->new( %$_ );
79             }
80             };
81              
82             package Cfn::Resource::Properties::Object::Alexa::ASK::Skill::AuthenticationConfiguration {
83 1     1   3590 use Moose;
  1         3  
  1         4  
84 1     1   6543 use MooseX::StrictConstructor;
  1         4  
  1         4  
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   3237 use Moose;
  1         3  
  1         5  
94 1     1   6562 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;
103             ### main pod documentation begin ###
104              
105             =encoding UTF-8
106              
107             =head1 NAME
108              
109             Cfn::Resource::Alexa::ASK::Skill - Cfn resource for Alexa::ASK::Skill
110              
111             =head1 DESCRIPTION
112              
113             This module implements a Perl module that represents the CloudFormation object Alexa::ASK::Skill.
114              
115             See L<Cfn> for more information on how to use it.
116              
117             =head1 AUTHOR
118              
119             Jose Luis Martinez
120             CAPSiDE
121             jlmartinez@capside.com
122              
123             =head1 COPYRIGHT and LICENSE
124              
125             Copyright (c) 2013 by CAPSiDE
126             This code is distributed under the Apache 2 License. The full text of the
127             license can be found in the LICENSE file included with this module.
128              
129             =cut