aws-sdk-lakeformation 1.46.0 → 1.48.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-lakeformation/client.rb +44 -1
- data/lib/aws-sdk-lakeformation/client_api.rb +4 -0
- data/lib/aws-sdk-lakeformation/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-lakeformation/types.rb +57 -4
- data/lib/aws-sdk-lakeformation.rb +1 -1
- data/sig/client.rbs +1458 -0
- data/sig/errors.rbs +70 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1084 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,1084 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::LakeFormation
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class AddLFTagsToResourceRequest
|
17
|
+
attr_accessor catalog_id: ::String
|
18
|
+
attr_accessor resource: Types::Resource
|
19
|
+
attr_accessor lf_tags: ::Array[Types::LFTagPair]
|
20
|
+
SENSITIVE: []
|
21
|
+
end
|
22
|
+
|
23
|
+
class AddLFTagsToResourceResponse
|
24
|
+
attr_accessor failures: ::Array[Types::LFTagError]
|
25
|
+
SENSITIVE: []
|
26
|
+
end
|
27
|
+
|
28
|
+
class AddObjectInput
|
29
|
+
attr_accessor uri: ::String
|
30
|
+
attr_accessor etag: ::String
|
31
|
+
attr_accessor size: ::Integer
|
32
|
+
attr_accessor partition_values: ::Array[::String]
|
33
|
+
SENSITIVE: []
|
34
|
+
end
|
35
|
+
|
36
|
+
class AllRowsWildcard < Aws::EmptyStructure
|
37
|
+
end
|
38
|
+
|
39
|
+
class AlreadyExistsException
|
40
|
+
attr_accessor message: ::String
|
41
|
+
SENSITIVE: []
|
42
|
+
end
|
43
|
+
|
44
|
+
class AssumeDecoratedRoleWithSAMLRequest
|
45
|
+
attr_accessor saml_assertion: ::String
|
46
|
+
attr_accessor role_arn: ::String
|
47
|
+
attr_accessor principal_arn: ::String
|
48
|
+
attr_accessor duration_seconds: ::Integer
|
49
|
+
SENSITIVE: []
|
50
|
+
end
|
51
|
+
|
52
|
+
class AssumeDecoratedRoleWithSAMLResponse
|
53
|
+
attr_accessor access_key_id: ::String
|
54
|
+
attr_accessor secret_access_key: ::String
|
55
|
+
attr_accessor session_token: ::String
|
56
|
+
attr_accessor expiration: ::Time
|
57
|
+
SENSITIVE: []
|
58
|
+
end
|
59
|
+
|
60
|
+
class AuditContext
|
61
|
+
attr_accessor additional_audit_context: ::String
|
62
|
+
SENSITIVE: []
|
63
|
+
end
|
64
|
+
|
65
|
+
class BatchGrantPermissionsRequest
|
66
|
+
attr_accessor catalog_id: ::String
|
67
|
+
attr_accessor entries: ::Array[Types::BatchPermissionsRequestEntry]
|
68
|
+
SENSITIVE: []
|
69
|
+
end
|
70
|
+
|
71
|
+
class BatchGrantPermissionsResponse
|
72
|
+
attr_accessor failures: ::Array[Types::BatchPermissionsFailureEntry]
|
73
|
+
SENSITIVE: []
|
74
|
+
end
|
75
|
+
|
76
|
+
class BatchPermissionsFailureEntry
|
77
|
+
attr_accessor request_entry: Types::BatchPermissionsRequestEntry
|
78
|
+
attr_accessor error: Types::ErrorDetail
|
79
|
+
SENSITIVE: []
|
80
|
+
end
|
81
|
+
|
82
|
+
class BatchPermissionsRequestEntry
|
83
|
+
attr_accessor id: ::String
|
84
|
+
attr_accessor principal: Types::DataLakePrincipal
|
85
|
+
attr_accessor resource: Types::Resource
|
86
|
+
attr_accessor permissions: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]
|
87
|
+
attr_accessor permissions_with_grant_option: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]
|
88
|
+
SENSITIVE: []
|
89
|
+
end
|
90
|
+
|
91
|
+
class BatchRevokePermissionsRequest
|
92
|
+
attr_accessor catalog_id: ::String
|
93
|
+
attr_accessor entries: ::Array[Types::BatchPermissionsRequestEntry]
|
94
|
+
SENSITIVE: []
|
95
|
+
end
|
96
|
+
|
97
|
+
class BatchRevokePermissionsResponse
|
98
|
+
attr_accessor failures: ::Array[Types::BatchPermissionsFailureEntry]
|
99
|
+
SENSITIVE: []
|
100
|
+
end
|
101
|
+
|
102
|
+
class CancelTransactionRequest
|
103
|
+
attr_accessor transaction_id: ::String
|
104
|
+
SENSITIVE: []
|
105
|
+
end
|
106
|
+
|
107
|
+
class CancelTransactionResponse < Aws::EmptyStructure
|
108
|
+
end
|
109
|
+
|
110
|
+
class CatalogResource < Aws::EmptyStructure
|
111
|
+
end
|
112
|
+
|
113
|
+
class ColumnLFTag
|
114
|
+
attr_accessor name: ::String
|
115
|
+
attr_accessor lf_tags: ::Array[Types::LFTagPair]
|
116
|
+
SENSITIVE: []
|
117
|
+
end
|
118
|
+
|
119
|
+
class ColumnWildcard
|
120
|
+
attr_accessor excluded_column_names: ::Array[::String]
|
121
|
+
SENSITIVE: []
|
122
|
+
end
|
123
|
+
|
124
|
+
class CommitTransactionRequest
|
125
|
+
attr_accessor transaction_id: ::String
|
126
|
+
SENSITIVE: []
|
127
|
+
end
|
128
|
+
|
129
|
+
class CommitTransactionResponse
|
130
|
+
attr_accessor transaction_status: ("ACTIVE" | "COMMITTED" | "ABORTED" | "COMMIT_IN_PROGRESS")
|
131
|
+
SENSITIVE: []
|
132
|
+
end
|
133
|
+
|
134
|
+
class ConcurrentModificationException
|
135
|
+
attr_accessor message: ::String
|
136
|
+
SENSITIVE: []
|
137
|
+
end
|
138
|
+
|
139
|
+
class CreateDataCellsFilterRequest
|
140
|
+
attr_accessor table_data: Types::DataCellsFilter
|
141
|
+
SENSITIVE: []
|
142
|
+
end
|
143
|
+
|
144
|
+
class CreateDataCellsFilterResponse < Aws::EmptyStructure
|
145
|
+
end
|
146
|
+
|
147
|
+
class CreateLFTagRequest
|
148
|
+
attr_accessor catalog_id: ::String
|
149
|
+
attr_accessor tag_key: ::String
|
150
|
+
attr_accessor tag_values: ::Array[::String]
|
151
|
+
SENSITIVE: []
|
152
|
+
end
|
153
|
+
|
154
|
+
class CreateLFTagResponse < Aws::EmptyStructure
|
155
|
+
end
|
156
|
+
|
157
|
+
class CreateLakeFormationIdentityCenterConfigurationRequest
|
158
|
+
attr_accessor catalog_id: ::String
|
159
|
+
attr_accessor instance_arn: ::String
|
160
|
+
attr_accessor external_filtering: Types::ExternalFilteringConfiguration
|
161
|
+
attr_accessor share_recipients: ::Array[Types::DataLakePrincipal]
|
162
|
+
SENSITIVE: []
|
163
|
+
end
|
164
|
+
|
165
|
+
class CreateLakeFormationIdentityCenterConfigurationResponse
|
166
|
+
attr_accessor application_arn: ::String
|
167
|
+
SENSITIVE: []
|
168
|
+
end
|
169
|
+
|
170
|
+
class CreateLakeFormationOptInRequest
|
171
|
+
attr_accessor principal: Types::DataLakePrincipal
|
172
|
+
attr_accessor resource: Types::Resource
|
173
|
+
SENSITIVE: []
|
174
|
+
end
|
175
|
+
|
176
|
+
class CreateLakeFormationOptInResponse < Aws::EmptyStructure
|
177
|
+
end
|
178
|
+
|
179
|
+
class DataCellsFilter
|
180
|
+
attr_accessor table_catalog_id: ::String
|
181
|
+
attr_accessor database_name: ::String
|
182
|
+
attr_accessor table_name: ::String
|
183
|
+
attr_accessor name: ::String
|
184
|
+
attr_accessor row_filter: Types::RowFilter
|
185
|
+
attr_accessor column_names: ::Array[::String]
|
186
|
+
attr_accessor column_wildcard: Types::ColumnWildcard
|
187
|
+
attr_accessor version_id: ::String
|
188
|
+
SENSITIVE: []
|
189
|
+
end
|
190
|
+
|
191
|
+
class DataCellsFilterResource
|
192
|
+
attr_accessor table_catalog_id: ::String
|
193
|
+
attr_accessor database_name: ::String
|
194
|
+
attr_accessor table_name: ::String
|
195
|
+
attr_accessor name: ::String
|
196
|
+
SENSITIVE: []
|
197
|
+
end
|
198
|
+
|
199
|
+
class DataLakePrincipal
|
200
|
+
attr_accessor data_lake_principal_identifier: ::String
|
201
|
+
SENSITIVE: []
|
202
|
+
end
|
203
|
+
|
204
|
+
class DataLakeSettings
|
205
|
+
attr_accessor data_lake_admins: ::Array[Types::DataLakePrincipal]
|
206
|
+
attr_accessor read_only_admins: ::Array[Types::DataLakePrincipal]
|
207
|
+
attr_accessor create_database_default_permissions: ::Array[Types::PrincipalPermissions]
|
208
|
+
attr_accessor create_table_default_permissions: ::Array[Types::PrincipalPermissions]
|
209
|
+
attr_accessor parameters: ::Hash[::String, ::String]
|
210
|
+
attr_accessor trusted_resource_owners: ::Array[::String]
|
211
|
+
attr_accessor allow_external_data_filtering: bool
|
212
|
+
attr_accessor allow_full_table_external_data_access: bool
|
213
|
+
attr_accessor external_data_filtering_allow_list: ::Array[Types::DataLakePrincipal]
|
214
|
+
attr_accessor authorized_session_tag_value_list: ::Array[::String]
|
215
|
+
SENSITIVE: []
|
216
|
+
end
|
217
|
+
|
218
|
+
class DataLocationResource
|
219
|
+
attr_accessor catalog_id: ::String
|
220
|
+
attr_accessor resource_arn: ::String
|
221
|
+
SENSITIVE: []
|
222
|
+
end
|
223
|
+
|
224
|
+
class DatabaseResource
|
225
|
+
attr_accessor catalog_id: ::String
|
226
|
+
attr_accessor name: ::String
|
227
|
+
SENSITIVE: []
|
228
|
+
end
|
229
|
+
|
230
|
+
class DeleteDataCellsFilterRequest
|
231
|
+
attr_accessor table_catalog_id: ::String
|
232
|
+
attr_accessor database_name: ::String
|
233
|
+
attr_accessor table_name: ::String
|
234
|
+
attr_accessor name: ::String
|
235
|
+
SENSITIVE: []
|
236
|
+
end
|
237
|
+
|
238
|
+
class DeleteDataCellsFilterResponse < Aws::EmptyStructure
|
239
|
+
end
|
240
|
+
|
241
|
+
class DeleteLFTagRequest
|
242
|
+
attr_accessor catalog_id: ::String
|
243
|
+
attr_accessor tag_key: ::String
|
244
|
+
SENSITIVE: []
|
245
|
+
end
|
246
|
+
|
247
|
+
class DeleteLFTagResponse < Aws::EmptyStructure
|
248
|
+
end
|
249
|
+
|
250
|
+
class DeleteLakeFormationIdentityCenterConfigurationRequest
|
251
|
+
attr_accessor catalog_id: ::String
|
252
|
+
SENSITIVE: []
|
253
|
+
end
|
254
|
+
|
255
|
+
class DeleteLakeFormationIdentityCenterConfigurationResponse < Aws::EmptyStructure
|
256
|
+
end
|
257
|
+
|
258
|
+
class DeleteLakeFormationOptInRequest
|
259
|
+
attr_accessor principal: Types::DataLakePrincipal
|
260
|
+
attr_accessor resource: Types::Resource
|
261
|
+
SENSITIVE: []
|
262
|
+
end
|
263
|
+
|
264
|
+
class DeleteLakeFormationOptInResponse < Aws::EmptyStructure
|
265
|
+
end
|
266
|
+
|
267
|
+
class DeleteObjectInput
|
268
|
+
attr_accessor uri: ::String
|
269
|
+
attr_accessor etag: ::String
|
270
|
+
attr_accessor partition_values: ::Array[::String]
|
271
|
+
SENSITIVE: []
|
272
|
+
end
|
273
|
+
|
274
|
+
class DeleteObjectsOnCancelRequest
|
275
|
+
attr_accessor catalog_id: ::String
|
276
|
+
attr_accessor database_name: ::String
|
277
|
+
attr_accessor table_name: ::String
|
278
|
+
attr_accessor transaction_id: ::String
|
279
|
+
attr_accessor objects: ::Array[Types::VirtualObject]
|
280
|
+
SENSITIVE: []
|
281
|
+
end
|
282
|
+
|
283
|
+
class DeleteObjectsOnCancelResponse < Aws::EmptyStructure
|
284
|
+
end
|
285
|
+
|
286
|
+
class DeregisterResourceRequest
|
287
|
+
attr_accessor resource_arn: ::String
|
288
|
+
SENSITIVE: []
|
289
|
+
end
|
290
|
+
|
291
|
+
class DeregisterResourceResponse < Aws::EmptyStructure
|
292
|
+
end
|
293
|
+
|
294
|
+
class DescribeLakeFormationIdentityCenterConfigurationRequest
|
295
|
+
attr_accessor catalog_id: ::String
|
296
|
+
SENSITIVE: []
|
297
|
+
end
|
298
|
+
|
299
|
+
class DescribeLakeFormationIdentityCenterConfigurationResponse
|
300
|
+
attr_accessor catalog_id: ::String
|
301
|
+
attr_accessor instance_arn: ::String
|
302
|
+
attr_accessor application_arn: ::String
|
303
|
+
attr_accessor external_filtering: Types::ExternalFilteringConfiguration
|
304
|
+
attr_accessor share_recipients: ::Array[Types::DataLakePrincipal]
|
305
|
+
attr_accessor resource_share: ::String
|
306
|
+
SENSITIVE: []
|
307
|
+
end
|
308
|
+
|
309
|
+
class DescribeResourceRequest
|
310
|
+
attr_accessor resource_arn: ::String
|
311
|
+
SENSITIVE: []
|
312
|
+
end
|
313
|
+
|
314
|
+
class DescribeResourceResponse
|
315
|
+
attr_accessor resource_info: Types::ResourceInfo
|
316
|
+
SENSITIVE: []
|
317
|
+
end
|
318
|
+
|
319
|
+
class DescribeTransactionRequest
|
320
|
+
attr_accessor transaction_id: ::String
|
321
|
+
SENSITIVE: []
|
322
|
+
end
|
323
|
+
|
324
|
+
class DescribeTransactionResponse
|
325
|
+
attr_accessor transaction_description: Types::TransactionDescription
|
326
|
+
SENSITIVE: []
|
327
|
+
end
|
328
|
+
|
329
|
+
class DetailsMap
|
330
|
+
attr_accessor resource_share: ::Array[::String]
|
331
|
+
SENSITIVE: []
|
332
|
+
end
|
333
|
+
|
334
|
+
class EntityNotFoundException
|
335
|
+
attr_accessor message: ::String
|
336
|
+
SENSITIVE: []
|
337
|
+
end
|
338
|
+
|
339
|
+
class ErrorDetail
|
340
|
+
attr_accessor error_code: ::String
|
341
|
+
attr_accessor error_message: ::String
|
342
|
+
SENSITIVE: []
|
343
|
+
end
|
344
|
+
|
345
|
+
class ExecutionStatistics
|
346
|
+
attr_accessor average_execution_time_millis: ::Integer
|
347
|
+
attr_accessor data_scanned_bytes: ::Integer
|
348
|
+
attr_accessor work_units_executed_count: ::Integer
|
349
|
+
SENSITIVE: []
|
350
|
+
end
|
351
|
+
|
352
|
+
class ExpiredException
|
353
|
+
attr_accessor message: ::String
|
354
|
+
SENSITIVE: []
|
355
|
+
end
|
356
|
+
|
357
|
+
class ExtendTransactionRequest
|
358
|
+
attr_accessor transaction_id: ::String
|
359
|
+
SENSITIVE: []
|
360
|
+
end
|
361
|
+
|
362
|
+
class ExtendTransactionResponse < Aws::EmptyStructure
|
363
|
+
end
|
364
|
+
|
365
|
+
class ExternalFilteringConfiguration
|
366
|
+
attr_accessor status: ("ENABLED" | "DISABLED")
|
367
|
+
attr_accessor authorized_targets: ::Array[::String]
|
368
|
+
SENSITIVE: []
|
369
|
+
end
|
370
|
+
|
371
|
+
class FilterCondition
|
372
|
+
attr_accessor field: ("RESOURCE_ARN" | "ROLE_ARN" | "LAST_MODIFIED")
|
373
|
+
attr_accessor comparison_operator: ("EQ" | "NE" | "LE" | "LT" | "GE" | "GT" | "CONTAINS" | "NOT_CONTAINS" | "BEGINS_WITH" | "IN" | "BETWEEN")
|
374
|
+
attr_accessor string_value_list: ::Array[::String]
|
375
|
+
SENSITIVE: []
|
376
|
+
end
|
377
|
+
|
378
|
+
class GetDataCellsFilterRequest
|
379
|
+
attr_accessor table_catalog_id: ::String
|
380
|
+
attr_accessor database_name: ::String
|
381
|
+
attr_accessor table_name: ::String
|
382
|
+
attr_accessor name: ::String
|
383
|
+
SENSITIVE: []
|
384
|
+
end
|
385
|
+
|
386
|
+
class GetDataCellsFilterResponse
|
387
|
+
attr_accessor data_cells_filter: Types::DataCellsFilter
|
388
|
+
SENSITIVE: []
|
389
|
+
end
|
390
|
+
|
391
|
+
class GetDataLakeSettingsRequest
|
392
|
+
attr_accessor catalog_id: ::String
|
393
|
+
SENSITIVE: []
|
394
|
+
end
|
395
|
+
|
396
|
+
class GetDataLakeSettingsResponse
|
397
|
+
attr_accessor data_lake_settings: Types::DataLakeSettings
|
398
|
+
SENSITIVE: []
|
399
|
+
end
|
400
|
+
|
401
|
+
class GetEffectivePermissionsForPathRequest
|
402
|
+
attr_accessor catalog_id: ::String
|
403
|
+
attr_accessor resource_arn: ::String
|
404
|
+
attr_accessor next_token: ::String
|
405
|
+
attr_accessor max_results: ::Integer
|
406
|
+
SENSITIVE: []
|
407
|
+
end
|
408
|
+
|
409
|
+
class GetEffectivePermissionsForPathResponse
|
410
|
+
attr_accessor permissions: ::Array[Types::PrincipalResourcePermissions]
|
411
|
+
attr_accessor next_token: ::String
|
412
|
+
SENSITIVE: []
|
413
|
+
end
|
414
|
+
|
415
|
+
class GetLFTagRequest
|
416
|
+
attr_accessor catalog_id: ::String
|
417
|
+
attr_accessor tag_key: ::String
|
418
|
+
SENSITIVE: []
|
419
|
+
end
|
420
|
+
|
421
|
+
class GetLFTagResponse
|
422
|
+
attr_accessor catalog_id: ::String
|
423
|
+
attr_accessor tag_key: ::String
|
424
|
+
attr_accessor tag_values: ::Array[::String]
|
425
|
+
SENSITIVE: []
|
426
|
+
end
|
427
|
+
|
428
|
+
class GetQueryStateRequest
|
429
|
+
attr_accessor query_id: ::String
|
430
|
+
SENSITIVE: []
|
431
|
+
end
|
432
|
+
|
433
|
+
class GetQueryStateResponse
|
434
|
+
attr_accessor error: ::String
|
435
|
+
attr_accessor state: ("PENDING" | "WORKUNITS_AVAILABLE" | "ERROR" | "FINISHED" | "EXPIRED")
|
436
|
+
SENSITIVE: []
|
437
|
+
end
|
438
|
+
|
439
|
+
class GetQueryStatisticsRequest
|
440
|
+
attr_accessor query_id: ::String
|
441
|
+
SENSITIVE: []
|
442
|
+
end
|
443
|
+
|
444
|
+
class GetQueryStatisticsResponse
|
445
|
+
attr_accessor execution_statistics: Types::ExecutionStatistics
|
446
|
+
attr_accessor planning_statistics: Types::PlanningStatistics
|
447
|
+
attr_accessor query_submission_time: ::Time
|
448
|
+
SENSITIVE: []
|
449
|
+
end
|
450
|
+
|
451
|
+
class GetResourceLFTagsRequest
|
452
|
+
attr_accessor catalog_id: ::String
|
453
|
+
attr_accessor resource: Types::Resource
|
454
|
+
attr_accessor show_assigned_lf_tags: bool
|
455
|
+
SENSITIVE: []
|
456
|
+
end
|
457
|
+
|
458
|
+
class GetResourceLFTagsResponse
|
459
|
+
attr_accessor lf_tag_on_database: ::Array[Types::LFTagPair]
|
460
|
+
attr_accessor lf_tags_on_table: ::Array[Types::LFTagPair]
|
461
|
+
attr_accessor lf_tags_on_columns: ::Array[Types::ColumnLFTag]
|
462
|
+
SENSITIVE: []
|
463
|
+
end
|
464
|
+
|
465
|
+
class GetTableObjectsRequest
|
466
|
+
attr_accessor catalog_id: ::String
|
467
|
+
attr_accessor database_name: ::String
|
468
|
+
attr_accessor table_name: ::String
|
469
|
+
attr_accessor transaction_id: ::String
|
470
|
+
attr_accessor query_as_of_time: ::Time
|
471
|
+
attr_accessor partition_predicate: ::String
|
472
|
+
attr_accessor max_results: ::Integer
|
473
|
+
attr_accessor next_token: ::String
|
474
|
+
SENSITIVE: []
|
475
|
+
end
|
476
|
+
|
477
|
+
class GetTableObjectsResponse
|
478
|
+
attr_accessor objects: ::Array[Types::PartitionObjects]
|
479
|
+
attr_accessor next_token: ::String
|
480
|
+
SENSITIVE: []
|
481
|
+
end
|
482
|
+
|
483
|
+
class GetTemporaryGluePartitionCredentialsRequest
|
484
|
+
attr_accessor table_arn: ::String
|
485
|
+
attr_accessor partition: Types::PartitionValueList
|
486
|
+
attr_accessor permissions: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]
|
487
|
+
attr_accessor duration_seconds: ::Integer
|
488
|
+
attr_accessor audit_context: Types::AuditContext
|
489
|
+
attr_accessor supported_permission_types: ::Array[("COLUMN_PERMISSION" | "CELL_FILTER_PERMISSION" | "NESTED_PERMISSION" | "NESTED_CELL_PERMISSION")]
|
490
|
+
SENSITIVE: []
|
491
|
+
end
|
492
|
+
|
493
|
+
class GetTemporaryGluePartitionCredentialsResponse
|
494
|
+
attr_accessor access_key_id: ::String
|
495
|
+
attr_accessor secret_access_key: ::String
|
496
|
+
attr_accessor session_token: ::String
|
497
|
+
attr_accessor expiration: ::Time
|
498
|
+
SENSITIVE: []
|
499
|
+
end
|
500
|
+
|
501
|
+
class GetTemporaryGlueTableCredentialsRequest
|
502
|
+
attr_accessor table_arn: ::String
|
503
|
+
attr_accessor permissions: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]
|
504
|
+
attr_accessor duration_seconds: ::Integer
|
505
|
+
attr_accessor audit_context: Types::AuditContext
|
506
|
+
attr_accessor supported_permission_types: ::Array[("COLUMN_PERMISSION" | "CELL_FILTER_PERMISSION" | "NESTED_PERMISSION" | "NESTED_CELL_PERMISSION")]
|
507
|
+
attr_accessor s3_path: ::String
|
508
|
+
attr_accessor query_session_context: Types::QuerySessionContext
|
509
|
+
SENSITIVE: []
|
510
|
+
end
|
511
|
+
|
512
|
+
class GetTemporaryGlueTableCredentialsResponse
|
513
|
+
attr_accessor access_key_id: ::String
|
514
|
+
attr_accessor secret_access_key: ::String
|
515
|
+
attr_accessor session_token: ::String
|
516
|
+
attr_accessor expiration: ::Time
|
517
|
+
attr_accessor vended_s3_path: ::Array[::String]
|
518
|
+
SENSITIVE: []
|
519
|
+
end
|
520
|
+
|
521
|
+
class GetWorkUnitResultsRequest
|
522
|
+
attr_accessor query_id: ::String
|
523
|
+
attr_accessor work_unit_id: ::Integer
|
524
|
+
attr_accessor work_unit_token: ::String
|
525
|
+
SENSITIVE: [:work_unit_token]
|
526
|
+
end
|
527
|
+
|
528
|
+
class GetWorkUnitResultsResponse
|
529
|
+
attr_accessor result_stream: ::IO
|
530
|
+
SENSITIVE: []
|
531
|
+
end
|
532
|
+
|
533
|
+
class GetWorkUnitsRequest
|
534
|
+
attr_accessor next_token: ::String
|
535
|
+
attr_accessor page_size: ::Integer
|
536
|
+
attr_accessor query_id: ::String
|
537
|
+
SENSITIVE: []
|
538
|
+
end
|
539
|
+
|
540
|
+
class GetWorkUnitsResponse
|
541
|
+
attr_accessor next_token: ::String
|
542
|
+
attr_accessor query_id: ::String
|
543
|
+
attr_accessor work_unit_ranges: ::Array[Types::WorkUnitRange]
|
544
|
+
SENSITIVE: []
|
545
|
+
end
|
546
|
+
|
547
|
+
class GlueEncryptionException
|
548
|
+
attr_accessor message: ::String
|
549
|
+
SENSITIVE: []
|
550
|
+
end
|
551
|
+
|
552
|
+
class GrantPermissionsRequest
|
553
|
+
attr_accessor catalog_id: ::String
|
554
|
+
attr_accessor principal: Types::DataLakePrincipal
|
555
|
+
attr_accessor resource: Types::Resource
|
556
|
+
attr_accessor permissions: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]
|
557
|
+
attr_accessor permissions_with_grant_option: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]
|
558
|
+
SENSITIVE: []
|
559
|
+
end
|
560
|
+
|
561
|
+
class GrantPermissionsResponse < Aws::EmptyStructure
|
562
|
+
end
|
563
|
+
|
564
|
+
class InternalServiceException
|
565
|
+
attr_accessor message: ::String
|
566
|
+
SENSITIVE: []
|
567
|
+
end
|
568
|
+
|
569
|
+
class InvalidInputException
|
570
|
+
attr_accessor message: ::String
|
571
|
+
SENSITIVE: []
|
572
|
+
end
|
573
|
+
|
574
|
+
class LFTag
|
575
|
+
attr_accessor tag_key: ::String
|
576
|
+
attr_accessor tag_values: ::Array[::String]
|
577
|
+
SENSITIVE: []
|
578
|
+
end
|
579
|
+
|
580
|
+
class LFTagError
|
581
|
+
attr_accessor lf_tag: Types::LFTagPair
|
582
|
+
attr_accessor error: Types::ErrorDetail
|
583
|
+
SENSITIVE: []
|
584
|
+
end
|
585
|
+
|
586
|
+
class LFTagKeyResource
|
587
|
+
attr_accessor catalog_id: ::String
|
588
|
+
attr_accessor tag_key: ::String
|
589
|
+
attr_accessor tag_values: ::Array[::String]
|
590
|
+
SENSITIVE: []
|
591
|
+
end
|
592
|
+
|
593
|
+
class LFTagPair
|
594
|
+
attr_accessor catalog_id: ::String
|
595
|
+
attr_accessor tag_key: ::String
|
596
|
+
attr_accessor tag_values: ::Array[::String]
|
597
|
+
SENSITIVE: []
|
598
|
+
end
|
599
|
+
|
600
|
+
class LFTagPolicyResource
|
601
|
+
attr_accessor catalog_id: ::String
|
602
|
+
attr_accessor resource_type: ("DATABASE" | "TABLE")
|
603
|
+
attr_accessor expression: ::Array[Types::LFTag]
|
604
|
+
SENSITIVE: []
|
605
|
+
end
|
606
|
+
|
607
|
+
class LakeFormationOptInsInfo
|
608
|
+
attr_accessor resource: Types::Resource
|
609
|
+
attr_accessor principal: Types::DataLakePrincipal
|
610
|
+
attr_accessor last_modified: ::Time
|
611
|
+
attr_accessor last_updated_by: ::String
|
612
|
+
SENSITIVE: []
|
613
|
+
end
|
614
|
+
|
615
|
+
class ListDataCellsFilterRequest
|
616
|
+
attr_accessor table: Types::TableResource
|
617
|
+
attr_accessor next_token: ::String
|
618
|
+
attr_accessor max_results: ::Integer
|
619
|
+
SENSITIVE: []
|
620
|
+
end
|
621
|
+
|
622
|
+
class ListDataCellsFilterResponse
|
623
|
+
attr_accessor data_cells_filters: ::Array[Types::DataCellsFilter]
|
624
|
+
attr_accessor next_token: ::String
|
625
|
+
SENSITIVE: []
|
626
|
+
end
|
627
|
+
|
628
|
+
class ListLFTagsRequest
|
629
|
+
attr_accessor catalog_id: ::String
|
630
|
+
attr_accessor resource_share_type: ("FOREIGN" | "ALL")
|
631
|
+
attr_accessor max_results: ::Integer
|
632
|
+
attr_accessor next_token: ::String
|
633
|
+
SENSITIVE: []
|
634
|
+
end
|
635
|
+
|
636
|
+
class ListLFTagsResponse
|
637
|
+
attr_accessor lf_tags: ::Array[Types::LFTagPair]
|
638
|
+
attr_accessor next_token: ::String
|
639
|
+
SENSITIVE: []
|
640
|
+
end
|
641
|
+
|
642
|
+
class ListLakeFormationOptInsRequest
|
643
|
+
attr_accessor principal: Types::DataLakePrincipal
|
644
|
+
attr_accessor resource: Types::Resource
|
645
|
+
attr_accessor max_results: ::Integer
|
646
|
+
attr_accessor next_token: ::String
|
647
|
+
SENSITIVE: []
|
648
|
+
end
|
649
|
+
|
650
|
+
class ListLakeFormationOptInsResponse
|
651
|
+
attr_accessor lake_formation_opt_ins_info_list: ::Array[Types::LakeFormationOptInsInfo]
|
652
|
+
attr_accessor next_token: ::String
|
653
|
+
SENSITIVE: []
|
654
|
+
end
|
655
|
+
|
656
|
+
class ListPermissionsRequest
|
657
|
+
attr_accessor catalog_id: ::String
|
658
|
+
attr_accessor principal: Types::DataLakePrincipal
|
659
|
+
attr_accessor resource_type: ("CATALOG" | "DATABASE" | "TABLE" | "DATA_LOCATION" | "LF_TAG" | "LF_TAG_POLICY" | "LF_TAG_POLICY_DATABASE" | "LF_TAG_POLICY_TABLE")
|
660
|
+
attr_accessor resource: Types::Resource
|
661
|
+
attr_accessor next_token: ::String
|
662
|
+
attr_accessor max_results: ::Integer
|
663
|
+
attr_accessor include_related: ::String
|
664
|
+
SENSITIVE: []
|
665
|
+
end
|
666
|
+
|
667
|
+
class ListPermissionsResponse
|
668
|
+
attr_accessor principal_resource_permissions: ::Array[Types::PrincipalResourcePermissions]
|
669
|
+
attr_accessor next_token: ::String
|
670
|
+
SENSITIVE: []
|
671
|
+
end
|
672
|
+
|
673
|
+
class ListResourcesRequest
|
674
|
+
attr_accessor filter_condition_list: ::Array[Types::FilterCondition]
|
675
|
+
attr_accessor max_results: ::Integer
|
676
|
+
attr_accessor next_token: ::String
|
677
|
+
SENSITIVE: []
|
678
|
+
end
|
679
|
+
|
680
|
+
class ListResourcesResponse
|
681
|
+
attr_accessor resource_info_list: ::Array[Types::ResourceInfo]
|
682
|
+
attr_accessor next_token: ::String
|
683
|
+
SENSITIVE: []
|
684
|
+
end
|
685
|
+
|
686
|
+
class ListTableStorageOptimizersRequest
|
687
|
+
attr_accessor catalog_id: ::String
|
688
|
+
attr_accessor database_name: ::String
|
689
|
+
attr_accessor table_name: ::String
|
690
|
+
attr_accessor storage_optimizer_type: ("COMPACTION" | "GARBAGE_COLLECTION" | "ALL")
|
691
|
+
attr_accessor max_results: ::Integer
|
692
|
+
attr_accessor next_token: ::String
|
693
|
+
SENSITIVE: []
|
694
|
+
end
|
695
|
+
|
696
|
+
class ListTableStorageOptimizersResponse
|
697
|
+
attr_accessor storage_optimizer_list: ::Array[Types::StorageOptimizer]
|
698
|
+
attr_accessor next_token: ::String
|
699
|
+
SENSITIVE: []
|
700
|
+
end
|
701
|
+
|
702
|
+
class ListTransactionsRequest
|
703
|
+
attr_accessor catalog_id: ::String
|
704
|
+
attr_accessor status_filter: ("ALL" | "COMPLETED" | "ACTIVE" | "COMMITTED" | "ABORTED")
|
705
|
+
attr_accessor max_results: ::Integer
|
706
|
+
attr_accessor next_token: ::String
|
707
|
+
SENSITIVE: []
|
708
|
+
end
|
709
|
+
|
710
|
+
class ListTransactionsResponse
|
711
|
+
attr_accessor transactions: ::Array[Types::TransactionDescription]
|
712
|
+
attr_accessor next_token: ::String
|
713
|
+
SENSITIVE: []
|
714
|
+
end
|
715
|
+
|
716
|
+
class OperationTimeoutException
|
717
|
+
attr_accessor message: ::String
|
718
|
+
SENSITIVE: []
|
719
|
+
end
|
720
|
+
|
721
|
+
class PartitionObjects
|
722
|
+
attr_accessor partition_values: ::Array[::String]
|
723
|
+
attr_accessor objects: ::Array[Types::TableObject]
|
724
|
+
SENSITIVE: []
|
725
|
+
end
|
726
|
+
|
727
|
+
class PartitionValueList
|
728
|
+
attr_accessor values: ::Array[::String]
|
729
|
+
SENSITIVE: []
|
730
|
+
end
|
731
|
+
|
732
|
+
class PermissionTypeMismatchException
|
733
|
+
attr_accessor message: ::String
|
734
|
+
SENSITIVE: []
|
735
|
+
end
|
736
|
+
|
737
|
+
class PlanningStatistics
|
738
|
+
attr_accessor estimated_data_to_scan_bytes: ::Integer
|
739
|
+
attr_accessor planning_time_millis: ::Integer
|
740
|
+
attr_accessor queue_time_millis: ::Integer
|
741
|
+
attr_accessor work_units_generated_count: ::Integer
|
742
|
+
SENSITIVE: []
|
743
|
+
end
|
744
|
+
|
745
|
+
class PrincipalPermissions
|
746
|
+
attr_accessor principal: Types::DataLakePrincipal
|
747
|
+
attr_accessor permissions: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]
|
748
|
+
SENSITIVE: []
|
749
|
+
end
|
750
|
+
|
751
|
+
class PrincipalResourcePermissions
|
752
|
+
attr_accessor principal: Types::DataLakePrincipal
|
753
|
+
attr_accessor resource: Types::Resource
|
754
|
+
attr_accessor permissions: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]
|
755
|
+
attr_accessor permissions_with_grant_option: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]
|
756
|
+
attr_accessor additional_details: Types::DetailsMap
|
757
|
+
attr_accessor last_updated: ::Time
|
758
|
+
attr_accessor last_updated_by: ::String
|
759
|
+
SENSITIVE: []
|
760
|
+
end
|
761
|
+
|
762
|
+
class PutDataLakeSettingsRequest
|
763
|
+
attr_accessor catalog_id: ::String
|
764
|
+
attr_accessor data_lake_settings: Types::DataLakeSettings
|
765
|
+
SENSITIVE: []
|
766
|
+
end
|
767
|
+
|
768
|
+
class PutDataLakeSettingsResponse < Aws::EmptyStructure
|
769
|
+
end
|
770
|
+
|
771
|
+
class QueryPlanningContext
|
772
|
+
attr_accessor catalog_id: ::String
|
773
|
+
attr_accessor database_name: ::String
|
774
|
+
attr_accessor query_as_of_time: ::Time
|
775
|
+
attr_accessor query_parameters: ::Hash[::String, ::String]
|
776
|
+
attr_accessor transaction_id: ::String
|
777
|
+
SENSITIVE: []
|
778
|
+
end
|
779
|
+
|
780
|
+
class QuerySessionContext
|
781
|
+
attr_accessor query_id: ::String
|
782
|
+
attr_accessor query_start_time: ::Time
|
783
|
+
attr_accessor cluster_id: ::String
|
784
|
+
attr_accessor query_authorization_id: ::String
|
785
|
+
attr_accessor additional_context: ::Hash[::String, ::String]
|
786
|
+
SENSITIVE: []
|
787
|
+
end
|
788
|
+
|
789
|
+
class RegisterResourceRequest
|
790
|
+
attr_accessor resource_arn: ::String
|
791
|
+
attr_accessor use_service_linked_role: bool
|
792
|
+
attr_accessor role_arn: ::String
|
793
|
+
attr_accessor with_federation: bool
|
794
|
+
attr_accessor hybrid_access_enabled: bool
|
795
|
+
SENSITIVE: []
|
796
|
+
end
|
797
|
+
|
798
|
+
class RegisterResourceResponse < Aws::EmptyStructure
|
799
|
+
end
|
800
|
+
|
801
|
+
class RemoveLFTagsFromResourceRequest
|
802
|
+
attr_accessor catalog_id: ::String
|
803
|
+
attr_accessor resource: Types::Resource
|
804
|
+
attr_accessor lf_tags: ::Array[Types::LFTagPair]
|
805
|
+
SENSITIVE: []
|
806
|
+
end
|
807
|
+
|
808
|
+
class RemoveLFTagsFromResourceResponse
|
809
|
+
attr_accessor failures: ::Array[Types::LFTagError]
|
810
|
+
SENSITIVE: []
|
811
|
+
end
|
812
|
+
|
813
|
+
class Resource
|
814
|
+
attr_accessor catalog: Types::CatalogResource
|
815
|
+
attr_accessor database: Types::DatabaseResource
|
816
|
+
attr_accessor table: Types::TableResource
|
817
|
+
attr_accessor table_with_columns: Types::TableWithColumnsResource
|
818
|
+
attr_accessor data_location: Types::DataLocationResource
|
819
|
+
attr_accessor data_cells_filter: Types::DataCellsFilterResource
|
820
|
+
attr_accessor lf_tag: Types::LFTagKeyResource
|
821
|
+
attr_accessor lf_tag_policy: Types::LFTagPolicyResource
|
822
|
+
SENSITIVE: []
|
823
|
+
end
|
824
|
+
|
825
|
+
class ResourceInfo
|
826
|
+
attr_accessor resource_arn: ::String
|
827
|
+
attr_accessor role_arn: ::String
|
828
|
+
attr_accessor last_modified: ::Time
|
829
|
+
attr_accessor with_federation: bool
|
830
|
+
attr_accessor hybrid_access_enabled: bool
|
831
|
+
SENSITIVE: []
|
832
|
+
end
|
833
|
+
|
834
|
+
class ResourceNotReadyException
|
835
|
+
attr_accessor message: ::String
|
836
|
+
SENSITIVE: []
|
837
|
+
end
|
838
|
+
|
839
|
+
class ResourceNumberLimitExceededException
|
840
|
+
attr_accessor message: ::String
|
841
|
+
SENSITIVE: []
|
842
|
+
end
|
843
|
+
|
844
|
+
class RevokePermissionsRequest
|
845
|
+
attr_accessor catalog_id: ::String
|
846
|
+
attr_accessor principal: Types::DataLakePrincipal
|
847
|
+
attr_accessor resource: Types::Resource
|
848
|
+
attr_accessor permissions: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]
|
849
|
+
attr_accessor permissions_with_grant_option: ::Array[("ALL" | "SELECT" | "ALTER" | "DROP" | "DELETE" | "INSERT" | "DESCRIBE" | "CREATE_DATABASE" | "CREATE_TABLE" | "DATA_LOCATION_ACCESS" | "CREATE_LF_TAG" | "ASSOCIATE" | "GRANT_WITH_LF_TAG_EXPRESSION")]
|
850
|
+
SENSITIVE: []
|
851
|
+
end
|
852
|
+
|
853
|
+
class RevokePermissionsResponse < Aws::EmptyStructure
|
854
|
+
end
|
855
|
+
|
856
|
+
class RowFilter
|
857
|
+
attr_accessor filter_expression: ::String
|
858
|
+
attr_accessor all_rows_wildcard: Types::AllRowsWildcard
|
859
|
+
SENSITIVE: []
|
860
|
+
end
|
861
|
+
|
862
|
+
class SearchDatabasesByLFTagsRequest
|
863
|
+
attr_accessor next_token: ::String
|
864
|
+
attr_accessor max_results: ::Integer
|
865
|
+
attr_accessor catalog_id: ::String
|
866
|
+
attr_accessor expression: ::Array[Types::LFTag]
|
867
|
+
SENSITIVE: []
|
868
|
+
end
|
869
|
+
|
870
|
+
class SearchDatabasesByLFTagsResponse
|
871
|
+
attr_accessor next_token: ::String
|
872
|
+
attr_accessor database_list: ::Array[Types::TaggedDatabase]
|
873
|
+
SENSITIVE: []
|
874
|
+
end
|
875
|
+
|
876
|
+
class SearchTablesByLFTagsRequest
|
877
|
+
attr_accessor next_token: ::String
|
878
|
+
attr_accessor max_results: ::Integer
|
879
|
+
attr_accessor catalog_id: ::String
|
880
|
+
attr_accessor expression: ::Array[Types::LFTag]
|
881
|
+
SENSITIVE: []
|
882
|
+
end
|
883
|
+
|
884
|
+
class SearchTablesByLFTagsResponse
|
885
|
+
attr_accessor next_token: ::String
|
886
|
+
attr_accessor table_list: ::Array[Types::TaggedTable]
|
887
|
+
SENSITIVE: []
|
888
|
+
end
|
889
|
+
|
890
|
+
class StartQueryPlanningRequest
|
891
|
+
attr_accessor query_planning_context: Types::QueryPlanningContext
|
892
|
+
attr_accessor query_string: ::String
|
893
|
+
SENSITIVE: [:query_string]
|
894
|
+
end
|
895
|
+
|
896
|
+
class StartQueryPlanningResponse
|
897
|
+
attr_accessor query_id: ::String
|
898
|
+
SENSITIVE: []
|
899
|
+
end
|
900
|
+
|
901
|
+
class StartTransactionRequest
|
902
|
+
attr_accessor transaction_type: ("READ_AND_WRITE" | "READ_ONLY")
|
903
|
+
SENSITIVE: []
|
904
|
+
end
|
905
|
+
|
906
|
+
class StartTransactionResponse
|
907
|
+
attr_accessor transaction_id: ::String
|
908
|
+
SENSITIVE: []
|
909
|
+
end
|
910
|
+
|
911
|
+
class StatisticsNotReadyYetException
|
912
|
+
attr_accessor message: ::String
|
913
|
+
SENSITIVE: []
|
914
|
+
end
|
915
|
+
|
916
|
+
class StorageOptimizer
|
917
|
+
attr_accessor storage_optimizer_type: ("COMPACTION" | "GARBAGE_COLLECTION" | "ALL")
|
918
|
+
attr_accessor config: ::Hash[::String, ::String]
|
919
|
+
attr_accessor error_message: ::String
|
920
|
+
attr_accessor warnings: ::String
|
921
|
+
attr_accessor last_run_details: ::String
|
922
|
+
SENSITIVE: []
|
923
|
+
end
|
924
|
+
|
925
|
+
class TableObject
|
926
|
+
attr_accessor uri: ::String
|
927
|
+
attr_accessor etag: ::String
|
928
|
+
attr_accessor size: ::Integer
|
929
|
+
SENSITIVE: []
|
930
|
+
end
|
931
|
+
|
932
|
+
class TableResource
|
933
|
+
attr_accessor catalog_id: ::String
|
934
|
+
attr_accessor database_name: ::String
|
935
|
+
attr_accessor name: ::String
|
936
|
+
attr_accessor table_wildcard: Types::TableWildcard
|
937
|
+
SENSITIVE: []
|
938
|
+
end
|
939
|
+
|
940
|
+
class TableWildcard < Aws::EmptyStructure
|
941
|
+
end
|
942
|
+
|
943
|
+
class TableWithColumnsResource
|
944
|
+
attr_accessor catalog_id: ::String
|
945
|
+
attr_accessor database_name: ::String
|
946
|
+
attr_accessor name: ::String
|
947
|
+
attr_accessor column_names: ::Array[::String]
|
948
|
+
attr_accessor column_wildcard: Types::ColumnWildcard
|
949
|
+
SENSITIVE: []
|
950
|
+
end
|
951
|
+
|
952
|
+
class TaggedDatabase
|
953
|
+
attr_accessor database: Types::DatabaseResource
|
954
|
+
attr_accessor lf_tags: ::Array[Types::LFTagPair]
|
955
|
+
SENSITIVE: []
|
956
|
+
end
|
957
|
+
|
958
|
+
class TaggedTable
|
959
|
+
attr_accessor table: Types::TableResource
|
960
|
+
attr_accessor lf_tag_on_database: ::Array[Types::LFTagPair]
|
961
|
+
attr_accessor lf_tags_on_table: ::Array[Types::LFTagPair]
|
962
|
+
attr_accessor lf_tags_on_columns: ::Array[Types::ColumnLFTag]
|
963
|
+
SENSITIVE: []
|
964
|
+
end
|
965
|
+
|
966
|
+
class ThrottledException
|
967
|
+
attr_accessor message: ::String
|
968
|
+
SENSITIVE: []
|
969
|
+
end
|
970
|
+
|
971
|
+
class TransactionCanceledException
|
972
|
+
attr_accessor message: ::String
|
973
|
+
SENSITIVE: []
|
974
|
+
end
|
975
|
+
|
976
|
+
class TransactionCommitInProgressException
|
977
|
+
attr_accessor message: ::String
|
978
|
+
SENSITIVE: []
|
979
|
+
end
|
980
|
+
|
981
|
+
class TransactionCommittedException
|
982
|
+
attr_accessor message: ::String
|
983
|
+
SENSITIVE: []
|
984
|
+
end
|
985
|
+
|
986
|
+
class TransactionDescription
|
987
|
+
attr_accessor transaction_id: ::String
|
988
|
+
attr_accessor transaction_status: ("ACTIVE" | "COMMITTED" | "ABORTED" | "COMMIT_IN_PROGRESS")
|
989
|
+
attr_accessor transaction_start_time: ::Time
|
990
|
+
attr_accessor transaction_end_time: ::Time
|
991
|
+
SENSITIVE: []
|
992
|
+
end
|
993
|
+
|
994
|
+
class UpdateDataCellsFilterRequest
|
995
|
+
attr_accessor table_data: Types::DataCellsFilter
|
996
|
+
SENSITIVE: []
|
997
|
+
end
|
998
|
+
|
999
|
+
class UpdateDataCellsFilterResponse < Aws::EmptyStructure
|
1000
|
+
end
|
1001
|
+
|
1002
|
+
class UpdateLFTagRequest
|
1003
|
+
attr_accessor catalog_id: ::String
|
1004
|
+
attr_accessor tag_key: ::String
|
1005
|
+
attr_accessor tag_values_to_delete: ::Array[::String]
|
1006
|
+
attr_accessor tag_values_to_add: ::Array[::String]
|
1007
|
+
SENSITIVE: []
|
1008
|
+
end
|
1009
|
+
|
1010
|
+
class UpdateLFTagResponse < Aws::EmptyStructure
|
1011
|
+
end
|
1012
|
+
|
1013
|
+
class UpdateLakeFormationIdentityCenterConfigurationRequest
|
1014
|
+
attr_accessor catalog_id: ::String
|
1015
|
+
attr_accessor share_recipients: ::Array[Types::DataLakePrincipal]
|
1016
|
+
attr_accessor application_status: ("ENABLED" | "DISABLED")
|
1017
|
+
attr_accessor external_filtering: Types::ExternalFilteringConfiguration
|
1018
|
+
SENSITIVE: []
|
1019
|
+
end
|
1020
|
+
|
1021
|
+
class UpdateLakeFormationIdentityCenterConfigurationResponse < Aws::EmptyStructure
|
1022
|
+
end
|
1023
|
+
|
1024
|
+
class UpdateResourceRequest
|
1025
|
+
attr_accessor role_arn: ::String
|
1026
|
+
attr_accessor resource_arn: ::String
|
1027
|
+
attr_accessor with_federation: bool
|
1028
|
+
attr_accessor hybrid_access_enabled: bool
|
1029
|
+
SENSITIVE: []
|
1030
|
+
end
|
1031
|
+
|
1032
|
+
class UpdateResourceResponse < Aws::EmptyStructure
|
1033
|
+
end
|
1034
|
+
|
1035
|
+
class UpdateTableObjectsRequest
|
1036
|
+
attr_accessor catalog_id: ::String
|
1037
|
+
attr_accessor database_name: ::String
|
1038
|
+
attr_accessor table_name: ::String
|
1039
|
+
attr_accessor transaction_id: ::String
|
1040
|
+
attr_accessor write_operations: ::Array[Types::WriteOperation]
|
1041
|
+
SENSITIVE: []
|
1042
|
+
end
|
1043
|
+
|
1044
|
+
class UpdateTableObjectsResponse < Aws::EmptyStructure
|
1045
|
+
end
|
1046
|
+
|
1047
|
+
class UpdateTableStorageOptimizerRequest
|
1048
|
+
attr_accessor catalog_id: ::String
|
1049
|
+
attr_accessor database_name: ::String
|
1050
|
+
attr_accessor table_name: ::String
|
1051
|
+
attr_accessor storage_optimizer_config: ::Hash[("COMPACTION" | "GARBAGE_COLLECTION" | "ALL"), ::Hash[::String, ::String]]
|
1052
|
+
SENSITIVE: []
|
1053
|
+
end
|
1054
|
+
|
1055
|
+
class UpdateTableStorageOptimizerResponse
|
1056
|
+
attr_accessor result: ::String
|
1057
|
+
SENSITIVE: []
|
1058
|
+
end
|
1059
|
+
|
1060
|
+
class VirtualObject
|
1061
|
+
attr_accessor uri: ::String
|
1062
|
+
attr_accessor etag: ::String
|
1063
|
+
SENSITIVE: []
|
1064
|
+
end
|
1065
|
+
|
1066
|
+
class WorkUnitRange
|
1067
|
+
attr_accessor work_unit_id_max: ::Integer
|
1068
|
+
attr_accessor work_unit_id_min: ::Integer
|
1069
|
+
attr_accessor work_unit_token: ::String
|
1070
|
+
SENSITIVE: []
|
1071
|
+
end
|
1072
|
+
|
1073
|
+
class WorkUnitsNotReadyYetException
|
1074
|
+
attr_accessor message: ::String
|
1075
|
+
SENSITIVE: []
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
class WriteOperation
|
1079
|
+
attr_accessor add_object: Types::AddObjectInput
|
1080
|
+
attr_accessor delete_object: Types::DeleteObjectInput
|
1081
|
+
SENSITIVE: []
|
1082
|
+
end
|
1083
|
+
end
|
1084
|
+
end
|