line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# AWS::IoTSiteWise::Gateway generated from spec 20.1.0 |
2
|
1
|
|
|
1
|
|
741
|
use Moose::Util::TypeConstraints; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
11
|
|
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::IoTSiteWise::Gateway', |
5
|
|
|
|
|
|
|
from 'HashRef', |
6
|
|
|
|
|
|
|
via { Cfn::Resource::Properties::AWS::IoTSiteWise::Gateway->new( %$_ ) }; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
package Cfn::Resource::AWS::IoTSiteWise::Gateway { |
9
|
1
|
|
|
1
|
|
2257
|
use Moose; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
9
|
|
10
|
|
|
|
|
|
|
extends 'Cfn::Resource'; |
11
|
|
|
|
|
|
|
has Properties => (isa => 'Cfn::Resource::Properties::AWS::IoTSiteWise::Gateway', is => 'rw', coerce => 1); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
sub AttributeList { |
14
|
1
|
|
|
1
|
0
|
6
|
[ 'GatewayId' ] |
15
|
|
|
|
|
|
|
} |
16
|
|
|
|
|
|
|
sub supported_regions { |
17
|
1
|
|
|
1
|
0
|
1122
|
[ 'ap-southeast-1','ap-southeast-2','eu-central-1','eu-west-1','us-east-1','us-west-2' ] |
18
|
|
|
|
|
|
|
} |
19
|
|
|
|
|
|
|
} |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::AWS::IoTSiteWise::Gateway::Greengrass', |
24
|
|
|
|
|
|
|
as 'Cfn::Value'; |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::IoTSiteWise::Gateway::Greengrass', |
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::IoTSiteWise::Gateway::Greengrass->new( %$_ ); |
33
|
|
|
|
|
|
|
} |
34
|
|
|
|
|
|
|
}; |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Object::AWS::IoTSiteWise::Gateway::Greengrass { |
37
|
1
|
|
|
1
|
|
7545
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
38
|
1
|
|
|
1
|
|
6625
|
use MooseX::StrictConstructor; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
11
|
|
39
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
has GroupArn => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable'); |
42
|
|
|
|
|
|
|
} |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::AWS::IoTSiteWise::Gateway::GatewayPlatform', |
45
|
|
|
|
|
|
|
as 'Cfn::Value'; |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::IoTSiteWise::Gateway::GatewayPlatform', |
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::IoTSiteWise::Gateway::GatewayPlatform->new( %$_ ); |
54
|
|
|
|
|
|
|
} |
55
|
|
|
|
|
|
|
}; |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Object::AWS::IoTSiteWise::Gateway::GatewayPlatform { |
58
|
1
|
|
|
1
|
|
3608
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
59
|
1
|
|
|
1
|
|
6614
|
use MooseX::StrictConstructor; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
5
|
|
60
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
61
|
|
|
|
|
|
|
|
62
|
|
|
|
|
|
|
has Greengrass => (isa => 'Cfn::Resource::Properties::AWS::IoTSiteWise::Gateway::Greengrass', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable'); |
63
|
|
|
|
|
|
|
} |
64
|
|
|
|
|
|
|
subtype 'ArrayOfCfn::Resource::Properties::AWS::IoTSiteWise::Gateway::GatewayCapabilitySummary', |
65
|
|
|
|
|
|
|
as 'Cfn::Value', |
66
|
|
|
|
|
|
|
where { $_->isa('Cfn::Value::Array') or $_->isa('Cfn::Value::Function') }, |
67
|
|
|
|
|
|
|
message { "$_ is not a Cfn::Value or a Cfn::Value::Function" }; |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
coerce 'ArrayOfCfn::Resource::Properties::AWS::IoTSiteWise::Gateway::GatewayCapabilitySummary', |
70
|
|
|
|
|
|
|
from 'HashRef', |
71
|
|
|
|
|
|
|
via { |
72
|
|
|
|
|
|
|
if (my $f = Cfn::TypeLibrary::try_function($_)) { |
73
|
|
|
|
|
|
|
return $f |
74
|
|
|
|
|
|
|
} else { |
75
|
|
|
|
|
|
|
die 'Only accepts functions'; |
76
|
|
|
|
|
|
|
} |
77
|
|
|
|
|
|
|
}, |
78
|
|
|
|
|
|
|
from 'ArrayRef', |
79
|
|
|
|
|
|
|
via { |
80
|
|
|
|
|
|
|
Cfn::Value::Array->new(Value => [ |
81
|
|
|
|
|
|
|
map { |
82
|
|
|
|
|
|
|
Moose::Util::TypeConstraints::find_type_constraint('Cfn::Resource::Properties::AWS::IoTSiteWise::Gateway::GatewayCapabilitySummary')->coerce($_) |
83
|
|
|
|
|
|
|
} @$_ |
84
|
|
|
|
|
|
|
]); |
85
|
|
|
|
|
|
|
}; |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::AWS::IoTSiteWise::Gateway::GatewayCapabilitySummary', |
88
|
|
|
|
|
|
|
as 'Cfn::Value'; |
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::IoTSiteWise::Gateway::GatewayCapabilitySummary', |
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::IoTSiteWise::Gateway::GatewayCapabilitySummary->new( %$_ ); |
97
|
|
|
|
|
|
|
} |
98
|
|
|
|
|
|
|
}; |
99
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Object::AWS::IoTSiteWise::Gateway::GatewayCapabilitySummary { |
101
|
1
|
|
|
1
|
|
3654
|
use Moose; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
6
|
|
102
|
1
|
|
|
1
|
|
7082
|
use MooseX::StrictConstructor; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
103
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
has CapabilityConfiguration => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
106
|
|
|
|
|
|
|
has CapabilityNamespace => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
107
|
|
|
|
|
|
|
} |
108
|
|
|
|
|
|
|
|
109
|
|
|
|
|
|
|
package Cfn::Resource::Properties::AWS::IoTSiteWise::Gateway { |
110
|
1
|
|
|
1
|
|
3518
|
use Moose; |
|
1
|
|
|
|
|
5
|
|
|
1
|
|
|
|
|
6
|
|
111
|
1
|
|
|
1
|
|
6763
|
use MooseX::StrictConstructor; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
112
|
|
|
|
|
|
|
extends 'Cfn::Resource::Properties'; |
113
|
|
|
|
|
|
|
|
114
|
|
|
|
|
|
|
has GatewayCapabilitySummaries => (isa => 'ArrayOfCfn::Resource::Properties::AWS::IoTSiteWise::Gateway::GatewayCapabilitySummary', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
115
|
|
|
|
|
|
|
has GatewayName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
116
|
|
|
|
|
|
|
has GatewayPlatform => (isa => 'Cfn::Resource::Properties::AWS::IoTSiteWise::Gateway::GatewayPlatform', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable'); |
117
|
|
|
|
|
|
|
has Tags => (isa => 'ArrayOfCfn::Resource::Properties::TagType', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
118
|
|
|
|
|
|
|
} |
119
|
|
|
|
|
|
|
|
120
|
|
|
|
|
|
|
1; |
121
|
|
|
|
|
|
|
### main pod documentation begin ### |
122
|
|
|
|
|
|
|
|
123
|
|
|
|
|
|
|
=encoding UTF-8 |
124
|
|
|
|
|
|
|
|
125
|
|
|
|
|
|
|
=head1 NAME |
126
|
|
|
|
|
|
|
|
127
|
|
|
|
|
|
|
Cfn::Resource::AWS::IoTSiteWise::Gateway - Cfn resource for AWS::IoTSiteWise::Gateway |
128
|
|
|
|
|
|
|
|
129
|
|
|
|
|
|
|
=head1 DESCRIPTION |
130
|
|
|
|
|
|
|
|
131
|
|
|
|
|
|
|
This module implements a Perl module that represents the CloudFormation object AWS::IoTSiteWise::Gateway. |
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 |