line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# AWS::IoT::Authorizer generated from spec 20.1.0 |
2
|
1
|
|
|
1
|
|
724
|
use Moose::Util::TypeConstraints; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
13
|
|
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::IoT::Authorizer', |
5
|
|
|
|
|
|
|
from 'HashRef', |
6
|
|
|
|
|
|
|
via { Cfn::Resource::Properties::AWS::IoT::Authorizer->new( %$_ ) }; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
package Cfn::Resource::AWS::IoT::Authorizer { |
9
|
1
|
|
|
1
|
|
2290
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
9
|
|
10
|
|
|
|
|
|
|
extends 'Cfn::Resource'; |
11
|
|
|
|
|
|
|
has Properties => (isa => 'Cfn::Resource::Properties::AWS::IoT::Authorizer', is => 'rw', coerce => 1); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
sub AttributeList { |
14
|
1
|
|
|
1
|
0
|
5
|
[ 'Arn' ] |
15
|
|
|
|
|
|
|
} |
16
|
|
|
|
|
|
|
sub supported_regions { |
17
|
1
|
|
|
1
|
0
|
1207
|
[ 'ap-east-1','ap-northeast-1','ap-northeast-2','ap-south-1','ap-southeast-1','ap-southeast-2','ca-central-1','cn-north-1','cn-northwest-1','eu-central-1','eu-west-1','eu-west-2','eu-west-3','me-south-1','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::IoT::Authorizer::TokenSigningPublicKeys', |
24
|
|
|
|
|
|
|
as 'Cfn::Value'; |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::IoT::Authorizer::TokenSigningPublicKeys', |
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::IoT::Authorizer::TokenSigningPublicKeys->new( %$_ ); |
33
|
|
|
|
|
|
|
} |
34
|
|
|
|
|
|
|
}; |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Object::AWS::IoT::Authorizer::TokenSigningPublicKeys { |
37
|
1
|
|
|
1
|
|
7556
|
use Moose; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
6
|
|
38
|
1
|
|
|
1
|
|
7021
|
use MooseX::StrictConstructor; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
10
|
|
39
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
} |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::AWS::IoT::Authorizer::Tags', |
44
|
|
|
|
|
|
|
as 'Cfn::Value'; |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::IoT::Authorizer::Tags', |
47
|
|
|
|
|
|
|
from 'HashRef', |
48
|
|
|
|
|
|
|
via { |
49
|
|
|
|
|
|
|
if (my $f = Cfn::TypeLibrary::try_function($_)) { |
50
|
|
|
|
|
|
|
return $f |
51
|
|
|
|
|
|
|
} else { |
52
|
|
|
|
|
|
|
return Cfn::Resource::Properties::Object::AWS::IoT::Authorizer::Tags->new( %$_ ); |
53
|
|
|
|
|
|
|
} |
54
|
|
|
|
|
|
|
}; |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Object::AWS::IoT::Authorizer::Tags { |
57
|
1
|
|
|
1
|
|
3797
|
use Moose; |
|
1
|
|
|
|
|
5
|
|
|
1
|
|
|
|
|
7
|
|
58
|
1
|
|
|
1
|
|
7171
|
use MooseX::StrictConstructor; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
59
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
has Tags => (isa => 'ArrayOfCfn::Resource::Properties::TagType', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
62
|
|
|
|
|
|
|
} |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
package Cfn::Resource::Properties::AWS::IoT::Authorizer { |
65
|
1
|
|
|
1
|
|
3864
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
66
|
1
|
|
|
1
|
|
7185
|
use MooseX::StrictConstructor; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
8
|
|
67
|
|
|
|
|
|
|
extends 'Cfn::Resource::Properties'; |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
has AuthorizerFunctionArn => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
70
|
|
|
|
|
|
|
has AuthorizerName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable'); |
71
|
|
|
|
|
|
|
has SigningDisabled => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable'); |
72
|
|
|
|
|
|
|
has Status => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
73
|
|
|
|
|
|
|
has Tags => (isa => 'Cfn::Resource::Properties::AWS::IoT::Authorizer::Tags', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
74
|
|
|
|
|
|
|
has TokenKeyName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
75
|
|
|
|
|
|
|
has TokenSigningPublicKeys => (isa => 'Cfn::Resource::Properties::AWS::IoT::Authorizer::TokenSigningPublicKeys', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
76
|
|
|
|
|
|
|
} |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
1; |
79
|
|
|
|
|
|
|
### main pod documentation begin ### |
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
=encoding UTF-8 |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
=head1 NAME |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
Cfn::Resource::AWS::IoT::Authorizer - Cfn resource for AWS::IoT::Authorizer |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
=head1 DESCRIPTION |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
This module implements a Perl module that represents the CloudFormation object AWS::IoT::Authorizer. |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
See L<Cfn> for more information on how to use it. |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
=head1 AUTHOR |
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
Jose Luis Martinez |
96
|
|
|
|
|
|
|
CAPSiDE |
97
|
|
|
|
|
|
|
jlmartinez@capside.com |
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
=head1 COPYRIGHT and LICENSE |
100
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
Copyright (c) 2013 by CAPSiDE |
102
|
|
|
|
|
|
|
This code is distributed under the Apache 2 License. The full text of the |
103
|
|
|
|
|
|
|
license can be found in the LICENSE file included with this module. |
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
=cut |