line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# AWS::Glue::Table generated from spec 21.0.0 |
2
|
1
|
|
|
1
|
|
782
|
use Moose::Util::TypeConstraints; |
|
1
|
|
|
|
|
8
|
|
|
1
|
|
|
|
|
21
|
|
3
|
|
|
|
|
|
|
|
4
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::Glue::Table', |
5
|
|
|
|
|
|
|
from 'HashRef', |
6
|
|
|
|
|
|
|
via { Cfn::Resource::Properties::AWS::Glue::Table->new( %$_ ) }; |
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
package Cfn::Resource::AWS::Glue::Table { |
9
|
1
|
|
|
1
|
|
2234
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
9
|
|
10
|
|
|
|
|
|
|
extends 'Cfn::Resource'; |
11
|
|
|
|
|
|
|
has Properties => (isa => 'Cfn::Resource::Properties::AWS::Glue::Table', is => 'rw', coerce => 1); |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
sub AttributeList { |
14
|
1
|
|
|
1
|
0
|
4
|
[ ] |
15
|
|
|
|
|
|
|
} |
16
|
|
|
|
|
|
|
sub supported_regions { |
17
|
1
|
|
|
1
|
0
|
1229
|
[ 'ap-northeast-1','ap-northeast-2','ap-south-1','ap-southeast-1','ap-southeast-2','ca-central-1','cn-northwest-1','eu-central-1','eu-north-1','eu-west-1','eu-west-2','eu-west-3','us-east-1','us-east-2','us-west-1','us-west-2' ] |
18
|
|
|
|
|
|
|
} |
19
|
|
|
|
|
|
|
} |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::AWS::Glue::Table::SkewedInfo', |
24
|
|
|
|
|
|
|
as 'Cfn::Value'; |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::Glue::Table::SkewedInfo', |
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::Glue::Table::SkewedInfo->new( %$_ ); |
33
|
|
|
|
|
|
|
} |
34
|
|
|
|
|
|
|
}; |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Object::AWS::Glue::Table::SkewedInfo { |
37
|
1
|
|
|
1
|
|
7738
|
use Moose; |
|
1
|
|
|
|
|
7
|
|
|
1
|
|
|
|
|
7
|
|
38
|
1
|
|
|
1
|
|
6709
|
use MooseX::StrictConstructor; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
12
|
|
39
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
40
|
|
|
|
|
|
|
|
41
|
|
|
|
|
|
|
has SkewedColumnNames => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
42
|
|
|
|
|
|
|
has SkewedColumnValueLocationMaps => (isa => 'Cfn::Value::Json|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
43
|
|
|
|
|
|
|
has SkewedColumnValues => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
44
|
|
|
|
|
|
|
} |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::AWS::Glue::Table::SerdeInfo', |
47
|
|
|
|
|
|
|
as 'Cfn::Value'; |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::Glue::Table::SerdeInfo', |
50
|
|
|
|
|
|
|
from 'HashRef', |
51
|
|
|
|
|
|
|
via { |
52
|
|
|
|
|
|
|
if (my $f = Cfn::TypeLibrary::try_function($_)) { |
53
|
|
|
|
|
|
|
return $f |
54
|
|
|
|
|
|
|
} else { |
55
|
|
|
|
|
|
|
return Cfn::Resource::Properties::Object::AWS::Glue::Table::SerdeInfo->new( %$_ ); |
56
|
|
|
|
|
|
|
} |
57
|
|
|
|
|
|
|
}; |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Object::AWS::Glue::Table::SerdeInfo { |
60
|
1
|
|
|
1
|
|
3821
|
use Moose; |
|
1
|
|
|
|
|
6
|
|
|
1
|
|
|
|
|
7
|
|
61
|
1
|
|
|
1
|
|
6805
|
use MooseX::StrictConstructor; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
62
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
has Name => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
65
|
|
|
|
|
|
|
has Parameters => (isa => 'Cfn::Value::Json|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
66
|
|
|
|
|
|
|
has SerializationLibrary => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
67
|
|
|
|
|
|
|
} |
68
|
|
|
|
|
|
|
subtype 'ArrayOfCfn::Resource::Properties::AWS::Glue::Table::Order', |
69
|
|
|
|
|
|
|
as 'Cfn::Value', |
70
|
|
|
|
|
|
|
where { $_->isa('Cfn::Value::Array') or $_->isa('Cfn::Value::Function') }, |
71
|
|
|
|
|
|
|
message { "$_ is not a Cfn::Value or a Cfn::Value::Function" }; |
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
coerce 'ArrayOfCfn::Resource::Properties::AWS::Glue::Table::Order', |
74
|
|
|
|
|
|
|
from 'HashRef', |
75
|
|
|
|
|
|
|
via { |
76
|
|
|
|
|
|
|
if (my $f = Cfn::TypeLibrary::try_function($_)) { |
77
|
|
|
|
|
|
|
return $f |
78
|
|
|
|
|
|
|
} else { |
79
|
|
|
|
|
|
|
die 'Only accepts functions'; |
80
|
|
|
|
|
|
|
} |
81
|
|
|
|
|
|
|
}, |
82
|
|
|
|
|
|
|
from 'ArrayRef', |
83
|
|
|
|
|
|
|
via { |
84
|
|
|
|
|
|
|
Cfn::Value::Array->new(Value => [ |
85
|
|
|
|
|
|
|
map { |
86
|
|
|
|
|
|
|
Moose::Util::TypeConstraints::find_type_constraint('Cfn::Resource::Properties::AWS::Glue::Table::Order')->coerce($_) |
87
|
|
|
|
|
|
|
} @$_ |
88
|
|
|
|
|
|
|
]); |
89
|
|
|
|
|
|
|
}; |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::AWS::Glue::Table::Order', |
92
|
|
|
|
|
|
|
as 'Cfn::Value'; |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::Glue::Table::Order', |
95
|
|
|
|
|
|
|
from 'HashRef', |
96
|
|
|
|
|
|
|
via { |
97
|
|
|
|
|
|
|
if (my $f = Cfn::TypeLibrary::try_function($_)) { |
98
|
|
|
|
|
|
|
return $f |
99
|
|
|
|
|
|
|
} else { |
100
|
|
|
|
|
|
|
return Cfn::Resource::Properties::Object::AWS::Glue::Table::Order->new( %$_ ); |
101
|
|
|
|
|
|
|
} |
102
|
|
|
|
|
|
|
}; |
103
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Object::AWS::Glue::Table::Order { |
105
|
1
|
|
|
1
|
|
3543
|
use Moose; |
|
1
|
|
|
|
|
5
|
|
|
1
|
|
|
|
|
5
|
|
106
|
1
|
|
|
1
|
|
6712
|
use MooseX::StrictConstructor; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
4
|
|
107
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
108
|
|
|
|
|
|
|
|
109
|
|
|
|
|
|
|
has Column => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
110
|
|
|
|
|
|
|
has SortOrder => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
111
|
|
|
|
|
|
|
} |
112
|
|
|
|
|
|
|
subtype 'ArrayOfCfn::Resource::Properties::AWS::Glue::Table::Column', |
113
|
|
|
|
|
|
|
as 'Cfn::Value', |
114
|
|
|
|
|
|
|
where { $_->isa('Cfn::Value::Array') or $_->isa('Cfn::Value::Function') }, |
115
|
|
|
|
|
|
|
message { "$_ is not a Cfn::Value or a Cfn::Value::Function" }; |
116
|
|
|
|
|
|
|
|
117
|
|
|
|
|
|
|
coerce 'ArrayOfCfn::Resource::Properties::AWS::Glue::Table::Column', |
118
|
|
|
|
|
|
|
from 'HashRef', |
119
|
|
|
|
|
|
|
via { |
120
|
|
|
|
|
|
|
if (my $f = Cfn::TypeLibrary::try_function($_)) { |
121
|
|
|
|
|
|
|
return $f |
122
|
|
|
|
|
|
|
} else { |
123
|
|
|
|
|
|
|
die 'Only accepts functions'; |
124
|
|
|
|
|
|
|
} |
125
|
|
|
|
|
|
|
}, |
126
|
|
|
|
|
|
|
from 'ArrayRef', |
127
|
|
|
|
|
|
|
via { |
128
|
|
|
|
|
|
|
Cfn::Value::Array->new(Value => [ |
129
|
|
|
|
|
|
|
map { |
130
|
|
|
|
|
|
|
Moose::Util::TypeConstraints::find_type_constraint('Cfn::Resource::Properties::AWS::Glue::Table::Column')->coerce($_) |
131
|
|
|
|
|
|
|
} @$_ |
132
|
|
|
|
|
|
|
]); |
133
|
|
|
|
|
|
|
}; |
134
|
|
|
|
|
|
|
|
135
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::AWS::Glue::Table::Column', |
136
|
|
|
|
|
|
|
as 'Cfn::Value'; |
137
|
|
|
|
|
|
|
|
138
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::Glue::Table::Column', |
139
|
|
|
|
|
|
|
from 'HashRef', |
140
|
|
|
|
|
|
|
via { |
141
|
|
|
|
|
|
|
if (my $f = Cfn::TypeLibrary::try_function($_)) { |
142
|
|
|
|
|
|
|
return $f |
143
|
|
|
|
|
|
|
} else { |
144
|
|
|
|
|
|
|
return Cfn::Resource::Properties::Object::AWS::Glue::Table::Column->new( %$_ ); |
145
|
|
|
|
|
|
|
} |
146
|
|
|
|
|
|
|
}; |
147
|
|
|
|
|
|
|
|
148
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Object::AWS::Glue::Table::Column { |
149
|
1
|
|
|
1
|
|
3684
|
use Moose; |
|
1
|
|
|
|
|
10
|
|
|
1
|
|
|
|
|
10
|
|
150
|
1
|
|
|
1
|
|
6617
|
use MooseX::StrictConstructor; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
5
|
|
151
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
152
|
|
|
|
|
|
|
|
153
|
|
|
|
|
|
|
has Comment => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
154
|
|
|
|
|
|
|
has Name => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
155
|
|
|
|
|
|
|
has Type => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
156
|
|
|
|
|
|
|
} |
157
|
|
|
|
|
|
|
|
158
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::AWS::Glue::Table::TableIdentifier', |
159
|
|
|
|
|
|
|
as 'Cfn::Value'; |
160
|
|
|
|
|
|
|
|
161
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::Glue::Table::TableIdentifier', |
162
|
|
|
|
|
|
|
from 'HashRef', |
163
|
|
|
|
|
|
|
via { |
164
|
|
|
|
|
|
|
if (my $f = Cfn::TypeLibrary::try_function($_)) { |
165
|
|
|
|
|
|
|
return $f |
166
|
|
|
|
|
|
|
} else { |
167
|
|
|
|
|
|
|
return Cfn::Resource::Properties::Object::AWS::Glue::Table::TableIdentifier->new( %$_ ); |
168
|
|
|
|
|
|
|
} |
169
|
|
|
|
|
|
|
}; |
170
|
|
|
|
|
|
|
|
171
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Object::AWS::Glue::Table::TableIdentifier { |
172
|
1
|
|
|
1
|
|
3398
|
use Moose; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
7
|
|
173
|
1
|
|
|
1
|
|
6624
|
use MooseX::StrictConstructor; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
5
|
|
174
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
175
|
|
|
|
|
|
|
|
176
|
|
|
|
|
|
|
has CatalogId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
177
|
|
|
|
|
|
|
has DatabaseName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
178
|
|
|
|
|
|
|
has Name => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
179
|
|
|
|
|
|
|
} |
180
|
|
|
|
|
|
|
|
181
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::AWS::Glue::Table::StorageDescriptor', |
182
|
|
|
|
|
|
|
as 'Cfn::Value'; |
183
|
|
|
|
|
|
|
|
184
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::Glue::Table::StorageDescriptor', |
185
|
|
|
|
|
|
|
from 'HashRef', |
186
|
|
|
|
|
|
|
via { |
187
|
|
|
|
|
|
|
if (my $f = Cfn::TypeLibrary::try_function($_)) { |
188
|
|
|
|
|
|
|
return $f |
189
|
|
|
|
|
|
|
} else { |
190
|
|
|
|
|
|
|
return Cfn::Resource::Properties::Object::AWS::Glue::Table::StorageDescriptor->new( %$_ ); |
191
|
|
|
|
|
|
|
} |
192
|
|
|
|
|
|
|
}; |
193
|
|
|
|
|
|
|
|
194
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Object::AWS::Glue::Table::StorageDescriptor { |
195
|
1
|
|
|
1
|
|
3411
|
use Moose; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
6
|
|
196
|
1
|
|
|
1
|
|
6983
|
use MooseX::StrictConstructor; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
197
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
198
|
|
|
|
|
|
|
|
199
|
|
|
|
|
|
|
has BucketColumns => (isa => 'Cfn::Value::Array|Cfn::Value::Function|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
200
|
|
|
|
|
|
|
has Columns => (isa => 'ArrayOfCfn::Resource::Properties::AWS::Glue::Table::Column', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
201
|
|
|
|
|
|
|
has Compressed => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
202
|
|
|
|
|
|
|
has InputFormat => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
203
|
|
|
|
|
|
|
has Location => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
204
|
|
|
|
|
|
|
has NumberOfBuckets => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
205
|
|
|
|
|
|
|
has OutputFormat => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
206
|
|
|
|
|
|
|
has Parameters => (isa => 'Cfn::Value::Json|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
207
|
|
|
|
|
|
|
has SerdeInfo => (isa => 'Cfn::Resource::Properties::AWS::Glue::Table::SerdeInfo', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
208
|
|
|
|
|
|
|
has SkewedInfo => (isa => 'Cfn::Resource::Properties::AWS::Glue::Table::SkewedInfo', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
209
|
|
|
|
|
|
|
has SortColumns => (isa => 'ArrayOfCfn::Resource::Properties::AWS::Glue::Table::Order', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
210
|
|
|
|
|
|
|
has StoredAsSubDirectories => (isa => 'Cfn::Value::Boolean', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
211
|
|
|
|
|
|
|
} |
212
|
|
|
|
|
|
|
|
213
|
|
|
|
|
|
|
subtype 'Cfn::Resource::Properties::AWS::Glue::Table::TableInput', |
214
|
|
|
|
|
|
|
as 'Cfn::Value'; |
215
|
|
|
|
|
|
|
|
216
|
|
|
|
|
|
|
coerce 'Cfn::Resource::Properties::AWS::Glue::Table::TableInput', |
217
|
|
|
|
|
|
|
from 'HashRef', |
218
|
|
|
|
|
|
|
via { |
219
|
|
|
|
|
|
|
if (my $f = Cfn::TypeLibrary::try_function($_)) { |
220
|
|
|
|
|
|
|
return $f |
221
|
|
|
|
|
|
|
} else { |
222
|
|
|
|
|
|
|
return Cfn::Resource::Properties::Object::AWS::Glue::Table::TableInput->new( %$_ ); |
223
|
|
|
|
|
|
|
} |
224
|
|
|
|
|
|
|
}; |
225
|
|
|
|
|
|
|
|
226
|
|
|
|
|
|
|
package Cfn::Resource::Properties::Object::AWS::Glue::Table::TableInput { |
227
|
1
|
|
|
1
|
|
3665
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
228
|
1
|
|
|
1
|
|
6901
|
use MooseX::StrictConstructor; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
5
|
|
229
|
|
|
|
|
|
|
extends 'Cfn::Value::TypedValue'; |
230
|
|
|
|
|
|
|
|
231
|
|
|
|
|
|
|
has Description => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
232
|
|
|
|
|
|
|
has Name => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable'); |
233
|
|
|
|
|
|
|
has Owner => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
234
|
|
|
|
|
|
|
has Parameters => (isa => 'Cfn::Value::Json|Cfn::DynamicValue', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
235
|
|
|
|
|
|
|
has PartitionKeys => (isa => 'ArrayOfCfn::Resource::Properties::AWS::Glue::Table::Column', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
236
|
|
|
|
|
|
|
has Retention => (isa => 'Cfn::Value::Integer', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
237
|
|
|
|
|
|
|
has StorageDescriptor => (isa => 'Cfn::Resource::Properties::AWS::Glue::Table::StorageDescriptor', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
238
|
|
|
|
|
|
|
has TableType => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
239
|
|
|
|
|
|
|
has TargetTable => (isa => 'Cfn::Resource::Properties::AWS::Glue::Table::TableIdentifier', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
240
|
|
|
|
|
|
|
has ViewExpandedText => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
241
|
|
|
|
|
|
|
has ViewOriginalText => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
242
|
|
|
|
|
|
|
} |
243
|
|
|
|
|
|
|
|
244
|
|
|
|
|
|
|
package Cfn::Resource::Properties::AWS::Glue::Table { |
245
|
1
|
|
|
1
|
|
3557
|
use Moose; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
7
|
|
246
|
1
|
|
|
1
|
|
6709
|
use MooseX::StrictConstructor; |
|
1
|
|
|
|
|
7
|
|
|
1
|
|
|
|
|
9
|
|
247
|
|
|
|
|
|
|
extends 'Cfn::Resource::Properties'; |
248
|
|
|
|
|
|
|
|
249
|
|
|
|
|
|
|
has CatalogId => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable'); |
250
|
|
|
|
|
|
|
has DatabaseName => (isa => 'Cfn::Value::String', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Immutable'); |
251
|
|
|
|
|
|
|
has TableInput => (isa => 'Cfn::Resource::Properties::AWS::Glue::Table::TableInput', is => 'rw', coerce => 1, required => 1, traits => [ 'CfnMutability' ], mutability => 'Mutable'); |
252
|
|
|
|
|
|
|
} |
253
|
|
|
|
|
|
|
|
254
|
|
|
|
|
|
|
1; |
255
|
|
|
|
|
|
|
### main pod documentation begin ### |
256
|
|
|
|
|
|
|
|
257
|
|
|
|
|
|
|
=encoding UTF-8 |
258
|
|
|
|
|
|
|
|
259
|
|
|
|
|
|
|
=head1 NAME |
260
|
|
|
|
|
|
|
|
261
|
|
|
|
|
|
|
Cfn::Resource::AWS::Glue::Table - Cfn resource for AWS::Glue::Table |
262
|
|
|
|
|
|
|
|
263
|
|
|
|
|
|
|
=head1 DESCRIPTION |
264
|
|
|
|
|
|
|
|
265
|
|
|
|
|
|
|
This module implements a Perl module that represents the CloudFormation object AWS::Glue::Table. |
266
|
|
|
|
|
|
|
|
267
|
|
|
|
|
|
|
See L<Cfn> for more information on how to use it. |
268
|
|
|
|
|
|
|
|
269
|
|
|
|
|
|
|
=head1 AUTHOR |
270
|
|
|
|
|
|
|
|
271
|
|
|
|
|
|
|
Jose Luis Martinez |
272
|
|
|
|
|
|
|
CAPSiDE |
273
|
|
|
|
|
|
|
jlmartinez@capside.com |
274
|
|
|
|
|
|
|
|
275
|
|
|
|
|
|
|
=head1 COPYRIGHT and LICENSE |
276
|
|
|
|
|
|
|
|
277
|
|
|
|
|
|
|
Copyright (c) 2013 by CAPSiDE |
278
|
|
|
|
|
|
|
This code is distributed under the Apache 2 License. The full text of the |
279
|
|
|
|
|
|
|
license can be found in the LICENSE file included with this module. |
280
|
|
|
|
|
|
|
|
281
|
|
|
|
|
|
|
=cut |