aws-sdk-s3tables 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-s3tables/client.rb +1508 -0
- data/lib/aws-sdk-s3tables/client_api.rb +828 -0
- data/lib/aws-sdk-s3tables/customizations.rb +0 -0
- data/lib/aws-sdk-s3tables/endpoint_parameters.rb +69 -0
- data/lib/aws-sdk-s3tables/endpoint_provider.rb +54 -0
- data/lib/aws-sdk-s3tables/endpoints.rb +20 -0
- data/lib/aws-sdk-s3tables/errors.rb +150 -0
- data/lib/aws-sdk-s3tables/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-s3tables/resource.rb +26 -0
- data/lib/aws-sdk-s3tables/types.rb +1324 -0
- data/lib/aws-sdk-s3tables/waiters.rb +15 -0
- data/lib/aws-sdk-s3tables.rb +62 -0
- data/sig/client.rbs +401 -0
- data/sig/errors.rbs +37 -0
- data/sig/resource.rbs +82 -0
- data/sig/types.rbs +425 -0
- data/sig/waiters.rbs +13 -0
- metadata +100 -0
@@ -0,0 +1,1324 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# WARNING ABOUT GENERATED CODE
|
4
|
+
#
|
5
|
+
# This file is generated. See the contributing guide for more information:
|
6
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
7
|
+
#
|
8
|
+
# WARNING ABOUT GENERATED CODE
|
9
|
+
|
10
|
+
module Aws::S3Tables
|
11
|
+
module Types
|
12
|
+
|
13
|
+
# The action cannot be performed because you do not have the required
|
14
|
+
# permission.
|
15
|
+
#
|
16
|
+
# @!attribute [rw] message
|
17
|
+
# @return [String]
|
18
|
+
#
|
19
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/AccessDeniedException AWS API Documentation
|
20
|
+
#
|
21
|
+
class AccessDeniedException < Struct.new(
|
22
|
+
:message)
|
23
|
+
SENSITIVE = []
|
24
|
+
include Aws::Structure
|
25
|
+
end
|
26
|
+
|
27
|
+
# The request is invalid or malformed.
|
28
|
+
#
|
29
|
+
# @!attribute [rw] message
|
30
|
+
# @return [String]
|
31
|
+
#
|
32
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/BadRequestException AWS API Documentation
|
33
|
+
#
|
34
|
+
class BadRequestException < Struct.new(
|
35
|
+
:message)
|
36
|
+
SENSITIVE = []
|
37
|
+
include Aws::Structure
|
38
|
+
end
|
39
|
+
|
40
|
+
# The request failed because there is a conflict with a previous write.
|
41
|
+
# You can retry the request.
|
42
|
+
#
|
43
|
+
# @!attribute [rw] message
|
44
|
+
# @return [String]
|
45
|
+
#
|
46
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/ConflictException AWS API Documentation
|
47
|
+
#
|
48
|
+
class ConflictException < Struct.new(
|
49
|
+
:message)
|
50
|
+
SENSITIVE = []
|
51
|
+
include Aws::Structure
|
52
|
+
end
|
53
|
+
|
54
|
+
# @!attribute [rw] table_bucket_arn
|
55
|
+
# The Amazon Resource Name (ARN) of the table bucket to create the
|
56
|
+
# namespace in.
|
57
|
+
# @return [String]
|
58
|
+
#
|
59
|
+
# @!attribute [rw] namespace
|
60
|
+
# A name for the namespace.
|
61
|
+
# @return [Array<String>]
|
62
|
+
#
|
63
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/CreateNamespaceRequest AWS API Documentation
|
64
|
+
#
|
65
|
+
class CreateNamespaceRequest < Struct.new(
|
66
|
+
:table_bucket_arn,
|
67
|
+
:namespace)
|
68
|
+
SENSITIVE = []
|
69
|
+
include Aws::Structure
|
70
|
+
end
|
71
|
+
|
72
|
+
# @!attribute [rw] table_bucket_arn
|
73
|
+
# The Amazon Resource Name (ARN) of the table bucket the namespace was
|
74
|
+
# created in.
|
75
|
+
# @return [String]
|
76
|
+
#
|
77
|
+
# @!attribute [rw] namespace
|
78
|
+
# The name of the namespace.
|
79
|
+
# @return [Array<String>]
|
80
|
+
#
|
81
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/CreateNamespaceResponse AWS API Documentation
|
82
|
+
#
|
83
|
+
class CreateNamespaceResponse < Struct.new(
|
84
|
+
:table_bucket_arn,
|
85
|
+
:namespace)
|
86
|
+
SENSITIVE = []
|
87
|
+
include Aws::Structure
|
88
|
+
end
|
89
|
+
|
90
|
+
# @!attribute [rw] name
|
91
|
+
# The name for the table bucket.
|
92
|
+
# @return [String]
|
93
|
+
#
|
94
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/CreateTableBucketRequest AWS API Documentation
|
95
|
+
#
|
96
|
+
class CreateTableBucketRequest < Struct.new(
|
97
|
+
:name)
|
98
|
+
SENSITIVE = []
|
99
|
+
include Aws::Structure
|
100
|
+
end
|
101
|
+
|
102
|
+
# @!attribute [rw] arn
|
103
|
+
# The Amazon Resource Name (ARN) of the table bucket.
|
104
|
+
# @return [String]
|
105
|
+
#
|
106
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/CreateTableBucketResponse AWS API Documentation
|
107
|
+
#
|
108
|
+
class CreateTableBucketResponse < Struct.new(
|
109
|
+
:arn)
|
110
|
+
SENSITIVE = []
|
111
|
+
include Aws::Structure
|
112
|
+
end
|
113
|
+
|
114
|
+
# @!attribute [rw] table_bucket_arn
|
115
|
+
# The Amazon Resource Name (ARN) of the table bucket to create the
|
116
|
+
# table in.
|
117
|
+
# @return [String]
|
118
|
+
#
|
119
|
+
# @!attribute [rw] namespace
|
120
|
+
# The namespace to associated with the table.
|
121
|
+
# @return [String]
|
122
|
+
#
|
123
|
+
# @!attribute [rw] name
|
124
|
+
# The name for the table.
|
125
|
+
# @return [String]
|
126
|
+
#
|
127
|
+
# @!attribute [rw] format
|
128
|
+
# The format for the table.
|
129
|
+
# @return [String]
|
130
|
+
#
|
131
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/CreateTableRequest AWS API Documentation
|
132
|
+
#
|
133
|
+
class CreateTableRequest < Struct.new(
|
134
|
+
:table_bucket_arn,
|
135
|
+
:namespace,
|
136
|
+
:name,
|
137
|
+
:format)
|
138
|
+
SENSITIVE = []
|
139
|
+
include Aws::Structure
|
140
|
+
end
|
141
|
+
|
142
|
+
# @!attribute [rw] table_arn
|
143
|
+
# The Amazon Resource Name (ARN) of the table.
|
144
|
+
# @return [String]
|
145
|
+
#
|
146
|
+
# @!attribute [rw] version_token
|
147
|
+
# The version token of the table.
|
148
|
+
# @return [String]
|
149
|
+
#
|
150
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/CreateTableResponse AWS API Documentation
|
151
|
+
#
|
152
|
+
class CreateTableResponse < Struct.new(
|
153
|
+
:table_arn,
|
154
|
+
:version_token)
|
155
|
+
SENSITIVE = []
|
156
|
+
include Aws::Structure
|
157
|
+
end
|
158
|
+
|
159
|
+
# @!attribute [rw] table_bucket_arn
|
160
|
+
# The Amazon Resource Name (ARN) of the table bucket associated with
|
161
|
+
# the namespace.
|
162
|
+
# @return [String]
|
163
|
+
#
|
164
|
+
# @!attribute [rw] namespace
|
165
|
+
# The name of the namespace.
|
166
|
+
# @return [String]
|
167
|
+
#
|
168
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/DeleteNamespaceRequest AWS API Documentation
|
169
|
+
#
|
170
|
+
class DeleteNamespaceRequest < Struct.new(
|
171
|
+
:table_bucket_arn,
|
172
|
+
:namespace)
|
173
|
+
SENSITIVE = []
|
174
|
+
include Aws::Structure
|
175
|
+
end
|
176
|
+
|
177
|
+
# @!attribute [rw] table_bucket_arn
|
178
|
+
# The Amazon Resource Number (ARN) of the table bucket.
|
179
|
+
# @return [String]
|
180
|
+
#
|
181
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/DeleteTableBucketPolicyRequest AWS API Documentation
|
182
|
+
#
|
183
|
+
class DeleteTableBucketPolicyRequest < Struct.new(
|
184
|
+
:table_bucket_arn)
|
185
|
+
SENSITIVE = []
|
186
|
+
include Aws::Structure
|
187
|
+
end
|
188
|
+
|
189
|
+
# @!attribute [rw] table_bucket_arn
|
190
|
+
# The Amazon Resource Name (ARN) of the table bucket.
|
191
|
+
# @return [String]
|
192
|
+
#
|
193
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/DeleteTableBucketRequest AWS API Documentation
|
194
|
+
#
|
195
|
+
class DeleteTableBucketRequest < Struct.new(
|
196
|
+
:table_bucket_arn)
|
197
|
+
SENSITIVE = []
|
198
|
+
include Aws::Structure
|
199
|
+
end
|
200
|
+
|
201
|
+
# @!attribute [rw] table_bucket_arn
|
202
|
+
# The Amazon Resource Number (ARN) of the table bucket that contains
|
203
|
+
# the table.
|
204
|
+
# @return [String]
|
205
|
+
#
|
206
|
+
# @!attribute [rw] namespace
|
207
|
+
# The namespace associated with the table.
|
208
|
+
# @return [String]
|
209
|
+
#
|
210
|
+
# @!attribute [rw] name
|
211
|
+
# The table name.
|
212
|
+
# @return [String]
|
213
|
+
#
|
214
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/DeleteTablePolicyRequest AWS API Documentation
|
215
|
+
#
|
216
|
+
class DeleteTablePolicyRequest < Struct.new(
|
217
|
+
:table_bucket_arn,
|
218
|
+
:namespace,
|
219
|
+
:name)
|
220
|
+
SENSITIVE = []
|
221
|
+
include Aws::Structure
|
222
|
+
end
|
223
|
+
|
224
|
+
# @!attribute [rw] table_bucket_arn
|
225
|
+
# The Amazon Resource Name (ARN) of the table bucket that contains the
|
226
|
+
# table.
|
227
|
+
# @return [String]
|
228
|
+
#
|
229
|
+
# @!attribute [rw] namespace
|
230
|
+
# The namespace associated with the table.
|
231
|
+
# @return [String]
|
232
|
+
#
|
233
|
+
# @!attribute [rw] name
|
234
|
+
# The name of the table.
|
235
|
+
# @return [String]
|
236
|
+
#
|
237
|
+
# @!attribute [rw] version_token
|
238
|
+
# The version token of the table.
|
239
|
+
# @return [String]
|
240
|
+
#
|
241
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/DeleteTableRequest AWS API Documentation
|
242
|
+
#
|
243
|
+
class DeleteTableRequest < Struct.new(
|
244
|
+
:table_bucket_arn,
|
245
|
+
:namespace,
|
246
|
+
:name,
|
247
|
+
:version_token)
|
248
|
+
SENSITIVE = []
|
249
|
+
include Aws::Structure
|
250
|
+
end
|
251
|
+
|
252
|
+
# The caller isn't authorized to make the request.
|
253
|
+
#
|
254
|
+
# @!attribute [rw] message
|
255
|
+
# @return [String]
|
256
|
+
#
|
257
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/ForbiddenException AWS API Documentation
|
258
|
+
#
|
259
|
+
class ForbiddenException < Struct.new(
|
260
|
+
:message)
|
261
|
+
SENSITIVE = []
|
262
|
+
include Aws::Structure
|
263
|
+
end
|
264
|
+
|
265
|
+
# @!attribute [rw] table_bucket_arn
|
266
|
+
# The Amazon Resource Name (ARN) of the table bucket.
|
267
|
+
# @return [String]
|
268
|
+
#
|
269
|
+
# @!attribute [rw] namespace
|
270
|
+
# The name of the namespace.
|
271
|
+
# @return [String]
|
272
|
+
#
|
273
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetNamespaceRequest AWS API Documentation
|
274
|
+
#
|
275
|
+
class GetNamespaceRequest < Struct.new(
|
276
|
+
:table_bucket_arn,
|
277
|
+
:namespace)
|
278
|
+
SENSITIVE = []
|
279
|
+
include Aws::Structure
|
280
|
+
end
|
281
|
+
|
282
|
+
# @!attribute [rw] namespace
|
283
|
+
# The name of the namespace.
|
284
|
+
# @return [Array<String>]
|
285
|
+
#
|
286
|
+
# @!attribute [rw] created_at
|
287
|
+
# The date and time the namespace was created at.
|
288
|
+
# @return [Time]
|
289
|
+
#
|
290
|
+
# @!attribute [rw] created_by
|
291
|
+
# The ID of the account that created the namespace.
|
292
|
+
# @return [String]
|
293
|
+
#
|
294
|
+
# @!attribute [rw] owner_account_id
|
295
|
+
# The ID of the account that owns the namespcace.
|
296
|
+
# @return [String]
|
297
|
+
#
|
298
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetNamespaceResponse AWS API Documentation
|
299
|
+
#
|
300
|
+
class GetNamespaceResponse < Struct.new(
|
301
|
+
:namespace,
|
302
|
+
:created_at,
|
303
|
+
:created_by,
|
304
|
+
:owner_account_id)
|
305
|
+
SENSITIVE = []
|
306
|
+
include Aws::Structure
|
307
|
+
end
|
308
|
+
|
309
|
+
# @!attribute [rw] table_bucket_arn
|
310
|
+
# The Amazon Resource Name (ARN) of the table bucket associated with
|
311
|
+
# the maintenance configuration.
|
312
|
+
# @return [String]
|
313
|
+
#
|
314
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableBucketMaintenanceConfigurationRequest AWS API Documentation
|
315
|
+
#
|
316
|
+
class GetTableBucketMaintenanceConfigurationRequest < Struct.new(
|
317
|
+
:table_bucket_arn)
|
318
|
+
SENSITIVE = []
|
319
|
+
include Aws::Structure
|
320
|
+
end
|
321
|
+
|
322
|
+
# @!attribute [rw] table_bucket_arn
|
323
|
+
# The Amazon Resource Name (ARN) of the table bucket associated with
|
324
|
+
# the maintenance configuration.
|
325
|
+
# @return [String]
|
326
|
+
#
|
327
|
+
# @!attribute [rw] configuration
|
328
|
+
# Details about the maintenance configuration for the table bucket.
|
329
|
+
# @return [Hash<String,Types::TableBucketMaintenanceConfigurationValue>]
|
330
|
+
#
|
331
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableBucketMaintenanceConfigurationResponse AWS API Documentation
|
332
|
+
#
|
333
|
+
class GetTableBucketMaintenanceConfigurationResponse < Struct.new(
|
334
|
+
:table_bucket_arn,
|
335
|
+
:configuration)
|
336
|
+
SENSITIVE = []
|
337
|
+
include Aws::Structure
|
338
|
+
end
|
339
|
+
|
340
|
+
# @!attribute [rw] table_bucket_arn
|
341
|
+
# The Amazon Resource Number (ARN) of the table bucket.
|
342
|
+
# @return [String]
|
343
|
+
#
|
344
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableBucketPolicyRequest AWS API Documentation
|
345
|
+
#
|
346
|
+
class GetTableBucketPolicyRequest < Struct.new(
|
347
|
+
:table_bucket_arn)
|
348
|
+
SENSITIVE = []
|
349
|
+
include Aws::Structure
|
350
|
+
end
|
351
|
+
|
352
|
+
# @!attribute [rw] resource_policy
|
353
|
+
# The name of the resource policy.
|
354
|
+
# @return [String]
|
355
|
+
#
|
356
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableBucketPolicyResponse AWS API Documentation
|
357
|
+
#
|
358
|
+
class GetTableBucketPolicyResponse < Struct.new(
|
359
|
+
:resource_policy)
|
360
|
+
SENSITIVE = []
|
361
|
+
include Aws::Structure
|
362
|
+
end
|
363
|
+
|
364
|
+
# @!attribute [rw] table_bucket_arn
|
365
|
+
# The Amazon Resource Name (ARN) of the table bucket.
|
366
|
+
# @return [String]
|
367
|
+
#
|
368
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableBucketRequest AWS API Documentation
|
369
|
+
#
|
370
|
+
class GetTableBucketRequest < Struct.new(
|
371
|
+
:table_bucket_arn)
|
372
|
+
SENSITIVE = []
|
373
|
+
include Aws::Structure
|
374
|
+
end
|
375
|
+
|
376
|
+
# @!attribute [rw] arn
|
377
|
+
# The Amazon Resource Name (ARN) of the table bucket.
|
378
|
+
# @return [String]
|
379
|
+
#
|
380
|
+
# @!attribute [rw] name
|
381
|
+
# The name of the table bucket
|
382
|
+
# @return [String]
|
383
|
+
#
|
384
|
+
# @!attribute [rw] owner_account_id
|
385
|
+
# The ID of the account that owns the table bucket.
|
386
|
+
# @return [String]
|
387
|
+
#
|
388
|
+
# @!attribute [rw] created_at
|
389
|
+
# The date and time the table bucket was created.
|
390
|
+
# @return [Time]
|
391
|
+
#
|
392
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableBucketResponse AWS API Documentation
|
393
|
+
#
|
394
|
+
class GetTableBucketResponse < Struct.new(
|
395
|
+
:arn,
|
396
|
+
:name,
|
397
|
+
:owner_account_id,
|
398
|
+
:created_at)
|
399
|
+
SENSITIVE = []
|
400
|
+
include Aws::Structure
|
401
|
+
end
|
402
|
+
|
403
|
+
# @!attribute [rw] table_bucket_arn
|
404
|
+
# The Amazon Resource Name (ARN) of the table bucket.
|
405
|
+
# @return [String]
|
406
|
+
#
|
407
|
+
# @!attribute [rw] namespace
|
408
|
+
# The namespace associated with the table.
|
409
|
+
# @return [String]
|
410
|
+
#
|
411
|
+
# @!attribute [rw] name
|
412
|
+
# The name of the table.
|
413
|
+
# @return [String]
|
414
|
+
#
|
415
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableMaintenanceConfigurationRequest AWS API Documentation
|
416
|
+
#
|
417
|
+
class GetTableMaintenanceConfigurationRequest < Struct.new(
|
418
|
+
:table_bucket_arn,
|
419
|
+
:namespace,
|
420
|
+
:name)
|
421
|
+
SENSITIVE = []
|
422
|
+
include Aws::Structure
|
423
|
+
end
|
424
|
+
|
425
|
+
# @!attribute [rw] table_arn
|
426
|
+
# The Amazon Resource Name (ARN) of the table.
|
427
|
+
# @return [String]
|
428
|
+
#
|
429
|
+
# @!attribute [rw] configuration
|
430
|
+
# Details about the maintenance configuration for the table bucket.
|
431
|
+
# @return [Hash<String,Types::TableMaintenanceConfigurationValue>]
|
432
|
+
#
|
433
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableMaintenanceConfigurationResponse AWS API Documentation
|
434
|
+
#
|
435
|
+
class GetTableMaintenanceConfigurationResponse < Struct.new(
|
436
|
+
:table_arn,
|
437
|
+
:configuration)
|
438
|
+
SENSITIVE = []
|
439
|
+
include Aws::Structure
|
440
|
+
end
|
441
|
+
|
442
|
+
# @!attribute [rw] table_bucket_arn
|
443
|
+
# The Amazon Resource Name (ARN) of the table bucket.
|
444
|
+
# @return [String]
|
445
|
+
#
|
446
|
+
# @!attribute [rw] namespace
|
447
|
+
# The name of the namespace the table is associated with. </p>
|
448
|
+
# @return [String]
|
449
|
+
#
|
450
|
+
# @!attribute [rw] name
|
451
|
+
# The name of the maintenance job.
|
452
|
+
# @return [String]
|
453
|
+
#
|
454
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableMaintenanceJobStatusRequest AWS API Documentation
|
455
|
+
#
|
456
|
+
class GetTableMaintenanceJobStatusRequest < Struct.new(
|
457
|
+
:table_bucket_arn,
|
458
|
+
:namespace,
|
459
|
+
:name)
|
460
|
+
SENSITIVE = []
|
461
|
+
include Aws::Structure
|
462
|
+
end
|
463
|
+
|
464
|
+
# @!attribute [rw] table_arn
|
465
|
+
# The Amazon Resource Name (ARN) of the table.
|
466
|
+
# @return [String]
|
467
|
+
#
|
468
|
+
# @!attribute [rw] status
|
469
|
+
# The status of the maintenance job.
|
470
|
+
# @return [Hash<String,Types::TableMaintenanceJobStatusValue>]
|
471
|
+
#
|
472
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableMaintenanceJobStatusResponse AWS API Documentation
|
473
|
+
#
|
474
|
+
class GetTableMaintenanceJobStatusResponse < Struct.new(
|
475
|
+
:table_arn,
|
476
|
+
:status)
|
477
|
+
SENSITIVE = []
|
478
|
+
include Aws::Structure
|
479
|
+
end
|
480
|
+
|
481
|
+
# @!attribute [rw] table_bucket_arn
|
482
|
+
# The Amazon Resource Name (ARN) of the table bucket.
|
483
|
+
# @return [String]
|
484
|
+
#
|
485
|
+
# @!attribute [rw] namespace
|
486
|
+
# The namespace of the table.
|
487
|
+
# @return [String]
|
488
|
+
#
|
489
|
+
# @!attribute [rw] name
|
490
|
+
# The name of the table.
|
491
|
+
# @return [String]
|
492
|
+
#
|
493
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableMetadataLocationRequest AWS API Documentation
|
494
|
+
#
|
495
|
+
class GetTableMetadataLocationRequest < Struct.new(
|
496
|
+
:table_bucket_arn,
|
497
|
+
:namespace,
|
498
|
+
:name)
|
499
|
+
SENSITIVE = []
|
500
|
+
include Aws::Structure
|
501
|
+
end
|
502
|
+
|
503
|
+
# @!attribute [rw] version_token
|
504
|
+
# The version token.
|
505
|
+
# @return [String]
|
506
|
+
#
|
507
|
+
# @!attribute [rw] metadata_location
|
508
|
+
# The metadata location.
|
509
|
+
# @return [String]
|
510
|
+
#
|
511
|
+
# @!attribute [rw] warehouse_location
|
512
|
+
# The warehouse location.
|
513
|
+
# @return [String]
|
514
|
+
#
|
515
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableMetadataLocationResponse AWS API Documentation
|
516
|
+
#
|
517
|
+
class GetTableMetadataLocationResponse < Struct.new(
|
518
|
+
:version_token,
|
519
|
+
:metadata_location,
|
520
|
+
:warehouse_location)
|
521
|
+
SENSITIVE = []
|
522
|
+
include Aws::Structure
|
523
|
+
end
|
524
|
+
|
525
|
+
# @!attribute [rw] table_bucket_arn
|
526
|
+
# The Amazon Resource Number (ARN) of the table bucket that contains
|
527
|
+
# the table.
|
528
|
+
# @return [String]
|
529
|
+
#
|
530
|
+
# @!attribute [rw] namespace
|
531
|
+
# The namespace associated with the table.
|
532
|
+
# @return [String]
|
533
|
+
#
|
534
|
+
# @!attribute [rw] name
|
535
|
+
# The name of the table.
|
536
|
+
# @return [String]
|
537
|
+
#
|
538
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTablePolicyRequest AWS API Documentation
|
539
|
+
#
|
540
|
+
class GetTablePolicyRequest < Struct.new(
|
541
|
+
:table_bucket_arn,
|
542
|
+
:namespace,
|
543
|
+
:name)
|
544
|
+
SENSITIVE = []
|
545
|
+
include Aws::Structure
|
546
|
+
end
|
547
|
+
|
548
|
+
# @!attribute [rw] resource_policy
|
549
|
+
# The name of the resource policy.
|
550
|
+
# @return [String]
|
551
|
+
#
|
552
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTablePolicyResponse AWS API Documentation
|
553
|
+
#
|
554
|
+
class GetTablePolicyResponse < Struct.new(
|
555
|
+
:resource_policy)
|
556
|
+
SENSITIVE = []
|
557
|
+
include Aws::Structure
|
558
|
+
end
|
559
|
+
|
560
|
+
# @!attribute [rw] table_bucket_arn
|
561
|
+
# The Amazon Resource Name (ARN) of the table bucket associated with
|
562
|
+
# the table.
|
563
|
+
# @return [String]
|
564
|
+
#
|
565
|
+
# @!attribute [rw] namespace
|
566
|
+
# The name of the namespace the table is associated with.
|
567
|
+
# @return [String]
|
568
|
+
#
|
569
|
+
# @!attribute [rw] name
|
570
|
+
# The name of the table.
|
571
|
+
# @return [String]
|
572
|
+
#
|
573
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableRequest AWS API Documentation
|
574
|
+
#
|
575
|
+
class GetTableRequest < Struct.new(
|
576
|
+
:table_bucket_arn,
|
577
|
+
:namespace,
|
578
|
+
:name)
|
579
|
+
SENSITIVE = []
|
580
|
+
include Aws::Structure
|
581
|
+
end
|
582
|
+
|
583
|
+
# @!attribute [rw] name
|
584
|
+
# The name of the table.
|
585
|
+
# @return [String]
|
586
|
+
#
|
587
|
+
# @!attribute [rw] type
|
588
|
+
# The type of the table.
|
589
|
+
# @return [String]
|
590
|
+
#
|
591
|
+
# @!attribute [rw] table_arn
|
592
|
+
# The Amazon Resource Name (ARN) of the table.
|
593
|
+
# @return [String]
|
594
|
+
#
|
595
|
+
# @!attribute [rw] namespace
|
596
|
+
# The namespace associated with the table.
|
597
|
+
# @return [Array<String>]
|
598
|
+
#
|
599
|
+
# @!attribute [rw] version_token
|
600
|
+
# The version token of the table.
|
601
|
+
# @return [String]
|
602
|
+
#
|
603
|
+
# @!attribute [rw] metadata_location
|
604
|
+
# The metadata location of the table.
|
605
|
+
# @return [String]
|
606
|
+
#
|
607
|
+
# @!attribute [rw] warehouse_location
|
608
|
+
# The warehouse location of the table.
|
609
|
+
# @return [String]
|
610
|
+
#
|
611
|
+
# @!attribute [rw] created_at
|
612
|
+
# The date and time the table bucket was created at.
|
613
|
+
# @return [Time]
|
614
|
+
#
|
615
|
+
# @!attribute [rw] created_by
|
616
|
+
# The ID of the account that created the table.
|
617
|
+
# @return [String]
|
618
|
+
#
|
619
|
+
# @!attribute [rw] managed_by_service
|
620
|
+
# The service that manages the table.
|
621
|
+
# @return [String]
|
622
|
+
#
|
623
|
+
# @!attribute [rw] modified_at
|
624
|
+
# The date and time the table was last modified on.
|
625
|
+
# @return [Time]
|
626
|
+
#
|
627
|
+
# @!attribute [rw] modified_by
|
628
|
+
# The ID of the account that last modified the table.
|
629
|
+
# @return [String]
|
630
|
+
#
|
631
|
+
# @!attribute [rw] owner_account_id
|
632
|
+
# The ID of the account that owns the table.
|
633
|
+
# @return [String]
|
634
|
+
#
|
635
|
+
# @!attribute [rw] format
|
636
|
+
# The format of the table.
|
637
|
+
# @return [String]
|
638
|
+
#
|
639
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableResponse AWS API Documentation
|
640
|
+
#
|
641
|
+
class GetTableResponse < Struct.new(
|
642
|
+
:name,
|
643
|
+
:type,
|
644
|
+
:table_arn,
|
645
|
+
:namespace,
|
646
|
+
:version_token,
|
647
|
+
:metadata_location,
|
648
|
+
:warehouse_location,
|
649
|
+
:created_at,
|
650
|
+
:created_by,
|
651
|
+
:managed_by_service,
|
652
|
+
:modified_at,
|
653
|
+
:modified_by,
|
654
|
+
:owner_account_id,
|
655
|
+
:format)
|
656
|
+
SENSITIVE = []
|
657
|
+
include Aws::Structure
|
658
|
+
end
|
659
|
+
|
660
|
+
# Contains details about the compaction settings for an Iceberg table.
|
661
|
+
#
|
662
|
+
# @!attribute [rw] target_file_size_mb
|
663
|
+
# The target file size for the table in MB.
|
664
|
+
# @return [Integer]
|
665
|
+
#
|
666
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/IcebergCompactionSettings AWS API Documentation
|
667
|
+
#
|
668
|
+
class IcebergCompactionSettings < Struct.new(
|
669
|
+
:target_file_size_mb)
|
670
|
+
SENSITIVE = []
|
671
|
+
include Aws::Structure
|
672
|
+
end
|
673
|
+
|
674
|
+
# Contains details about the snapshot management settings for an Iceberg
|
675
|
+
# table. The oldest snapshot expires when its age exceeds the
|
676
|
+
# `maxSnapshotAgeHours` and the total number of snapshots exceeds the
|
677
|
+
# value for the minimum number of snapshots to keep
|
678
|
+
# `minSnapshotsToKeep`.
|
679
|
+
#
|
680
|
+
# @!attribute [rw] min_snapshots_to_keep
|
681
|
+
# The minimum number of snapshots to keep.
|
682
|
+
# @return [Integer]
|
683
|
+
#
|
684
|
+
# @!attribute [rw] max_snapshot_age_hours
|
685
|
+
# The maximum age of a snapshot before it can be expired.
|
686
|
+
# @return [Integer]
|
687
|
+
#
|
688
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/IcebergSnapshotManagementSettings AWS API Documentation
|
689
|
+
#
|
690
|
+
class IcebergSnapshotManagementSettings < Struct.new(
|
691
|
+
:min_snapshots_to_keep,
|
692
|
+
:max_snapshot_age_hours)
|
693
|
+
SENSITIVE = []
|
694
|
+
include Aws::Structure
|
695
|
+
end
|
696
|
+
|
697
|
+
# Contains details about the unreferenced file removal settings for an
|
698
|
+
# Iceberg table bucket.
|
699
|
+
#
|
700
|
+
# @!attribute [rw] unreferenced_days
|
701
|
+
# The number of days an object has to be unreferenced before it is
|
702
|
+
# marked as non-current. </p>
|
703
|
+
# @return [Integer]
|
704
|
+
#
|
705
|
+
# @!attribute [rw] non_current_days
|
706
|
+
# The number of days an object has to be non-current before it is
|
707
|
+
# deleted. </p>
|
708
|
+
# @return [Integer]
|
709
|
+
#
|
710
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/IcebergUnreferencedFileRemovalSettings AWS API Documentation
|
711
|
+
#
|
712
|
+
class IcebergUnreferencedFileRemovalSettings < Struct.new(
|
713
|
+
:unreferenced_days,
|
714
|
+
:non_current_days)
|
715
|
+
SENSITIVE = []
|
716
|
+
include Aws::Structure
|
717
|
+
end
|
718
|
+
|
719
|
+
# The request failed due to an internal server error.
|
720
|
+
#
|
721
|
+
# @!attribute [rw] message
|
722
|
+
# @return [String]
|
723
|
+
#
|
724
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/InternalServerErrorException AWS API Documentation
|
725
|
+
#
|
726
|
+
class InternalServerErrorException < Struct.new(
|
727
|
+
:message)
|
728
|
+
SENSITIVE = []
|
729
|
+
include Aws::Structure
|
730
|
+
end
|
731
|
+
|
732
|
+
# @!attribute [rw] table_bucket_arn
|
733
|
+
# The Amazon Resource Name (ARN) of the table bucket.
|
734
|
+
# @return [String]
|
735
|
+
#
|
736
|
+
# @!attribute [rw] prefix
|
737
|
+
# The prefix of the namespaces.
|
738
|
+
# @return [String]
|
739
|
+
#
|
740
|
+
# @!attribute [rw] continuation_token
|
741
|
+
# `ContinuationToken` indicates to Amazon S3 that the list is being
|
742
|
+
# continued on this bucket with a token. `ContinuationToken` is
|
743
|
+
# obfuscated and is not a real key. You can use this
|
744
|
+
# `ContinuationToken` for pagination of the list results.
|
745
|
+
# @return [String]
|
746
|
+
#
|
747
|
+
# @!attribute [rw] max_namespaces
|
748
|
+
# The maximum number of namespaces to return in the list.
|
749
|
+
# @return [Integer]
|
750
|
+
#
|
751
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/ListNamespacesRequest AWS API Documentation
|
752
|
+
#
|
753
|
+
class ListNamespacesRequest < Struct.new(
|
754
|
+
:table_bucket_arn,
|
755
|
+
:prefix,
|
756
|
+
:continuation_token,
|
757
|
+
:max_namespaces)
|
758
|
+
SENSITIVE = []
|
759
|
+
include Aws::Structure
|
760
|
+
end
|
761
|
+
|
762
|
+
# @!attribute [rw] namespaces
|
763
|
+
# A list of namespaces.
|
764
|
+
# @return [Array<Types::NamespaceSummary>]
|
765
|
+
#
|
766
|
+
# @!attribute [rw] continuation_token
|
767
|
+
# The `ContinuationToken` for pagination of the list results.
|
768
|
+
# @return [String]
|
769
|
+
#
|
770
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/ListNamespacesResponse AWS API Documentation
|
771
|
+
#
|
772
|
+
class ListNamespacesResponse < Struct.new(
|
773
|
+
:namespaces,
|
774
|
+
:continuation_token)
|
775
|
+
SENSITIVE = []
|
776
|
+
include Aws::Structure
|
777
|
+
end
|
778
|
+
|
779
|
+
# @!attribute [rw] prefix
|
780
|
+
# The prefix of the table buckets.
|
781
|
+
# @return [String]
|
782
|
+
#
|
783
|
+
# @!attribute [rw] continuation_token
|
784
|
+
# `ContinuationToken` indicates to Amazon S3 that the list is being
|
785
|
+
# continued on this bucket with a token. `ContinuationToken` is
|
786
|
+
# obfuscated and is not a real key. You can use this
|
787
|
+
# `ContinuationToken` for pagination of the list results.
|
788
|
+
# @return [String]
|
789
|
+
#
|
790
|
+
# @!attribute [rw] max_buckets
|
791
|
+
# The maximum number of table buckets to return in the list.
|
792
|
+
# @return [Integer]
|
793
|
+
#
|
794
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/ListTableBucketsRequest AWS API Documentation
|
795
|
+
#
|
796
|
+
class ListTableBucketsRequest < Struct.new(
|
797
|
+
:prefix,
|
798
|
+
:continuation_token,
|
799
|
+
:max_buckets)
|
800
|
+
SENSITIVE = []
|
801
|
+
include Aws::Structure
|
802
|
+
end
|
803
|
+
|
804
|
+
# @!attribute [rw] table_buckets
|
805
|
+
# A list of table buckets.
|
806
|
+
# @return [Array<Types::TableBucketSummary>]
|
807
|
+
#
|
808
|
+
# @!attribute [rw] continuation_token
|
809
|
+
# You can use this `ContinuationToken` for pagination of the list
|
810
|
+
# results.
|
811
|
+
# @return [String]
|
812
|
+
#
|
813
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/ListTableBucketsResponse AWS API Documentation
|
814
|
+
#
|
815
|
+
class ListTableBucketsResponse < Struct.new(
|
816
|
+
:table_buckets,
|
817
|
+
:continuation_token)
|
818
|
+
SENSITIVE = []
|
819
|
+
include Aws::Structure
|
820
|
+
end
|
821
|
+
|
822
|
+
# @!attribute [rw] table_bucket_arn
|
823
|
+
# The Amazon resource Number (ARN) of the table bucket.
|
824
|
+
# @return [String]
|
825
|
+
#
|
826
|
+
# @!attribute [rw] namespace
|
827
|
+
# The namespace of the tables.
|
828
|
+
# @return [String]
|
829
|
+
#
|
830
|
+
# @!attribute [rw] prefix
|
831
|
+
# The prefix of the tables.
|
832
|
+
# @return [String]
|
833
|
+
#
|
834
|
+
# @!attribute [rw] continuation_token
|
835
|
+
# `ContinuationToken` indicates to Amazon S3 that the list is being
|
836
|
+
# continued on this bucket with a token. `ContinuationToken` is
|
837
|
+
# obfuscated and is not a real key. You can use this
|
838
|
+
# `ContinuationToken` for pagination of the list results.
|
839
|
+
# @return [String]
|
840
|
+
#
|
841
|
+
# @!attribute [rw] max_tables
|
842
|
+
# The maximum number of tables to return.
|
843
|
+
# @return [Integer]
|
844
|
+
#
|
845
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/ListTablesRequest AWS API Documentation
|
846
|
+
#
|
847
|
+
class ListTablesRequest < Struct.new(
|
848
|
+
:table_bucket_arn,
|
849
|
+
:namespace,
|
850
|
+
:prefix,
|
851
|
+
:continuation_token,
|
852
|
+
:max_tables)
|
853
|
+
SENSITIVE = []
|
854
|
+
include Aws::Structure
|
855
|
+
end
|
856
|
+
|
857
|
+
# @!attribute [rw] tables
|
858
|
+
# A list of tables.
|
859
|
+
# @return [Array<Types::TableSummary>]
|
860
|
+
#
|
861
|
+
# @!attribute [rw] continuation_token
|
862
|
+
# You can use this `ContinuationToken` for pagination of the list
|
863
|
+
# results.
|
864
|
+
# @return [String]
|
865
|
+
#
|
866
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/ListTablesResponse AWS API Documentation
|
867
|
+
#
|
868
|
+
class ListTablesResponse < Struct.new(
|
869
|
+
:tables,
|
870
|
+
:continuation_token)
|
871
|
+
SENSITIVE = []
|
872
|
+
include Aws::Structure
|
873
|
+
end
|
874
|
+
|
875
|
+
# Contains details about a namespace.
|
876
|
+
#
|
877
|
+
# @!attribute [rw] namespace
|
878
|
+
# The name of the namespace.
|
879
|
+
# @return [Array<String>]
|
880
|
+
#
|
881
|
+
# @!attribute [rw] created_at
|
882
|
+
# The date and time the namespace was created at.
|
883
|
+
# @return [Time]
|
884
|
+
#
|
885
|
+
# @!attribute [rw] created_by
|
886
|
+
# The ID of the account that created the namespace.
|
887
|
+
# @return [String]
|
888
|
+
#
|
889
|
+
# @!attribute [rw] owner_account_id
|
890
|
+
# The ID of the account that owns the namespace.
|
891
|
+
# @return [String]
|
892
|
+
#
|
893
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/NamespaceSummary AWS API Documentation
|
894
|
+
#
|
895
|
+
class NamespaceSummary < Struct.new(
|
896
|
+
:namespace,
|
897
|
+
:created_at,
|
898
|
+
:created_by,
|
899
|
+
:owner_account_id)
|
900
|
+
SENSITIVE = []
|
901
|
+
include Aws::Structure
|
902
|
+
end
|
903
|
+
|
904
|
+
# The request was rejected because the specified resource could not be
|
905
|
+
# found.
|
906
|
+
#
|
907
|
+
# @!attribute [rw] message
|
908
|
+
# @return [String]
|
909
|
+
#
|
910
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/NotFoundException AWS API Documentation
|
911
|
+
#
|
912
|
+
class NotFoundException < Struct.new(
|
913
|
+
:message)
|
914
|
+
SENSITIVE = []
|
915
|
+
include Aws::Structure
|
916
|
+
end
|
917
|
+
|
918
|
+
# @!attribute [rw] table_bucket_arn
|
919
|
+
# The Amazon Resource Name (ARN) of the table bucket associated with
|
920
|
+
# the maintenance configuration.
|
921
|
+
# @return [String]
|
922
|
+
#
|
923
|
+
# @!attribute [rw] type
|
924
|
+
# The type of the maintenance configuration.
|
925
|
+
# @return [String]
|
926
|
+
#
|
927
|
+
# @!attribute [rw] value
|
928
|
+
# Defines the values of the maintenance configuration for the table
|
929
|
+
# bucket.
|
930
|
+
# @return [Types::TableBucketMaintenanceConfigurationValue]
|
931
|
+
#
|
932
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/PutTableBucketMaintenanceConfigurationRequest AWS API Documentation
|
933
|
+
#
|
934
|
+
class PutTableBucketMaintenanceConfigurationRequest < Struct.new(
|
935
|
+
:table_bucket_arn,
|
936
|
+
:type,
|
937
|
+
:value)
|
938
|
+
SENSITIVE = []
|
939
|
+
include Aws::Structure
|
940
|
+
end
|
941
|
+
|
942
|
+
# @!attribute [rw] table_bucket_arn
|
943
|
+
# The Amazon Resource Number (ARN) of the table bucket.
|
944
|
+
# @return [String]
|
945
|
+
#
|
946
|
+
# @!attribute [rw] resource_policy
|
947
|
+
# The name of the resource policy.
|
948
|
+
# @return [String]
|
949
|
+
#
|
950
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/PutTableBucketPolicyRequest AWS API Documentation
|
951
|
+
#
|
952
|
+
class PutTableBucketPolicyRequest < Struct.new(
|
953
|
+
:table_bucket_arn,
|
954
|
+
:resource_policy)
|
955
|
+
SENSITIVE = []
|
956
|
+
include Aws::Structure
|
957
|
+
end
|
958
|
+
|
959
|
+
# @!attribute [rw] table_bucket_arn
|
960
|
+
# The Amazon Resource Name (ARN) of the table associated with the
|
961
|
+
# maintenance configuration.
|
962
|
+
# @return [String]
|
963
|
+
#
|
964
|
+
# @!attribute [rw] namespace
|
965
|
+
# The namespace of the table.
|
966
|
+
# @return [String]
|
967
|
+
#
|
968
|
+
# @!attribute [rw] name
|
969
|
+
# The name of the maintenance configuration.
|
970
|
+
# @return [String]
|
971
|
+
#
|
972
|
+
# @!attribute [rw] type
|
973
|
+
# The type of the maintenance configuration.
|
974
|
+
# @return [String]
|
975
|
+
#
|
976
|
+
# @!attribute [rw] value
|
977
|
+
# Defines the values of the maintenance configuration for the table.
|
978
|
+
# @return [Types::TableMaintenanceConfigurationValue]
|
979
|
+
#
|
980
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/PutTableMaintenanceConfigurationRequest AWS API Documentation
|
981
|
+
#
|
982
|
+
class PutTableMaintenanceConfigurationRequest < Struct.new(
|
983
|
+
:table_bucket_arn,
|
984
|
+
:namespace,
|
985
|
+
:name,
|
986
|
+
:type,
|
987
|
+
:value)
|
988
|
+
SENSITIVE = []
|
989
|
+
include Aws::Structure
|
990
|
+
end
|
991
|
+
|
992
|
+
# @!attribute [rw] table_bucket_arn
|
993
|
+
# The Amazon Resource Number (ARN) of the table bucket that contains
|
994
|
+
# the table.
|
995
|
+
# @return [String]
|
996
|
+
#
|
997
|
+
# @!attribute [rw] namespace
|
998
|
+
# The namespace associated with the table.
|
999
|
+
# @return [String]
|
1000
|
+
#
|
1001
|
+
# @!attribute [rw] name
|
1002
|
+
# The name of the table.
|
1003
|
+
# @return [String]
|
1004
|
+
#
|
1005
|
+
# @!attribute [rw] resource_policy
|
1006
|
+
# The name of the resource policy.
|
1007
|
+
# @return [String]
|
1008
|
+
#
|
1009
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/PutTablePolicyRequest AWS API Documentation
|
1010
|
+
#
|
1011
|
+
class PutTablePolicyRequest < Struct.new(
|
1012
|
+
:table_bucket_arn,
|
1013
|
+
:namespace,
|
1014
|
+
:name,
|
1015
|
+
:resource_policy)
|
1016
|
+
SENSITIVE = []
|
1017
|
+
include Aws::Structure
|
1018
|
+
end
|
1019
|
+
|
1020
|
+
# @!attribute [rw] table_bucket_arn
|
1021
|
+
# The Amazon Resource Name (ARN) of the table bucket.
|
1022
|
+
# @return [String]
|
1023
|
+
#
|
1024
|
+
# @!attribute [rw] namespace
|
1025
|
+
# The namespace associated with the table.
|
1026
|
+
# @return [String]
|
1027
|
+
#
|
1028
|
+
# @!attribute [rw] name
|
1029
|
+
# The current name of the table.
|
1030
|
+
# @return [String]
|
1031
|
+
#
|
1032
|
+
# @!attribute [rw] new_namespace_name
|
1033
|
+
# The new name for the namespace.
|
1034
|
+
# @return [String]
|
1035
|
+
#
|
1036
|
+
# @!attribute [rw] new_name
|
1037
|
+
# The new name for the table.
|
1038
|
+
# @return [String]
|
1039
|
+
#
|
1040
|
+
# @!attribute [rw] version_token
|
1041
|
+
# The version token of the table.
|
1042
|
+
# @return [String]
|
1043
|
+
#
|
1044
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/RenameTableRequest AWS API Documentation
|
1045
|
+
#
|
1046
|
+
class RenameTableRequest < Struct.new(
|
1047
|
+
:table_bucket_arn,
|
1048
|
+
:namespace,
|
1049
|
+
:name,
|
1050
|
+
:new_namespace_name,
|
1051
|
+
:new_name,
|
1052
|
+
:version_token)
|
1053
|
+
SENSITIVE = []
|
1054
|
+
include Aws::Structure
|
1055
|
+
end
|
1056
|
+
|
1057
|
+
# Details about the values that define the maintenance configuration for
|
1058
|
+
# a table bucket.
|
1059
|
+
#
|
1060
|
+
# @!attribute [rw] status
|
1061
|
+
# The status of the maintenance configuration.
|
1062
|
+
# @return [String]
|
1063
|
+
#
|
1064
|
+
# @!attribute [rw] settings
|
1065
|
+
# Contains details about the settings of the maintenance
|
1066
|
+
# configuration.
|
1067
|
+
# @return [Types::TableBucketMaintenanceSettings]
|
1068
|
+
#
|
1069
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/TableBucketMaintenanceConfigurationValue AWS API Documentation
|
1070
|
+
#
|
1071
|
+
class TableBucketMaintenanceConfigurationValue < Struct.new(
|
1072
|
+
:status,
|
1073
|
+
:settings)
|
1074
|
+
SENSITIVE = []
|
1075
|
+
include Aws::Structure
|
1076
|
+
end
|
1077
|
+
|
1078
|
+
# Contains details about the maintenance settings for the table bucket.
|
1079
|
+
#
|
1080
|
+
# @note TableBucketMaintenanceSettings is a union - when making an API calls you must set exactly one of the members.
|
1081
|
+
#
|
1082
|
+
# @note TableBucketMaintenanceSettings is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of TableBucketMaintenanceSettings corresponding to the set member.
|
1083
|
+
#
|
1084
|
+
# @!attribute [rw] iceberg_unreferenced_file_removal
|
1085
|
+
# The unreferenced file removal settings for the table bucket.
|
1086
|
+
# @return [Types::IcebergUnreferencedFileRemovalSettings]
|
1087
|
+
#
|
1088
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/TableBucketMaintenanceSettings AWS API Documentation
|
1089
|
+
#
|
1090
|
+
class TableBucketMaintenanceSettings < Struct.new(
|
1091
|
+
:iceberg_unreferenced_file_removal,
|
1092
|
+
:unknown)
|
1093
|
+
SENSITIVE = []
|
1094
|
+
include Aws::Structure
|
1095
|
+
include Aws::Structure::Union
|
1096
|
+
|
1097
|
+
class IcebergUnreferencedFileRemoval < TableBucketMaintenanceSettings; end
|
1098
|
+
class Unknown < TableBucketMaintenanceSettings; end
|
1099
|
+
end
|
1100
|
+
|
1101
|
+
# Contains details about a table bucket.
|
1102
|
+
#
|
1103
|
+
# @!attribute [rw] arn
|
1104
|
+
# The Amazon Resource Number (ARN) of the table bucket.
|
1105
|
+
# @return [String]
|
1106
|
+
#
|
1107
|
+
# @!attribute [rw] name
|
1108
|
+
# The name of the table bucket.
|
1109
|
+
# @return [String]
|
1110
|
+
#
|
1111
|
+
# @!attribute [rw] owner_account_id
|
1112
|
+
# The ID of the account that owns the table bucket.
|
1113
|
+
# @return [String]
|
1114
|
+
#
|
1115
|
+
# @!attribute [rw] created_at
|
1116
|
+
# The date and time the table bucket was created at.
|
1117
|
+
# @return [Time]
|
1118
|
+
#
|
1119
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/TableBucketSummary AWS API Documentation
|
1120
|
+
#
|
1121
|
+
class TableBucketSummary < Struct.new(
|
1122
|
+
:arn,
|
1123
|
+
:name,
|
1124
|
+
:owner_account_id,
|
1125
|
+
:created_at)
|
1126
|
+
SENSITIVE = []
|
1127
|
+
include Aws::Structure
|
1128
|
+
end
|
1129
|
+
|
1130
|
+
# Contains the values that define a maintenance configuration for a
|
1131
|
+
# table.
|
1132
|
+
#
|
1133
|
+
# @!attribute [rw] status
|
1134
|
+
# The status of the maintenance configuration.
|
1135
|
+
# @return [String]
|
1136
|
+
#
|
1137
|
+
# @!attribute [rw] settings
|
1138
|
+
# Contains details about the settings for the maintenance
|
1139
|
+
# configuration.
|
1140
|
+
# @return [Types::TableMaintenanceSettings]
|
1141
|
+
#
|
1142
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/TableMaintenanceConfigurationValue AWS API Documentation
|
1143
|
+
#
|
1144
|
+
class TableMaintenanceConfigurationValue < Struct.new(
|
1145
|
+
:status,
|
1146
|
+
:settings)
|
1147
|
+
SENSITIVE = []
|
1148
|
+
include Aws::Structure
|
1149
|
+
end
|
1150
|
+
|
1151
|
+
# Details about the status of a maintenance job.
|
1152
|
+
#
|
1153
|
+
# @!attribute [rw] status
|
1154
|
+
# The status of the job.
|
1155
|
+
# @return [String]
|
1156
|
+
#
|
1157
|
+
# @!attribute [rw] last_run_timestamp
|
1158
|
+
# The date and time that the maintenance job was last run.
|
1159
|
+
# @return [Time]
|
1160
|
+
#
|
1161
|
+
# @!attribute [rw] failure_message
|
1162
|
+
# The failure message of a failed job.
|
1163
|
+
# @return [String]
|
1164
|
+
#
|
1165
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/TableMaintenanceJobStatusValue AWS API Documentation
|
1166
|
+
#
|
1167
|
+
class TableMaintenanceJobStatusValue < Struct.new(
|
1168
|
+
:status,
|
1169
|
+
:last_run_timestamp,
|
1170
|
+
:failure_message)
|
1171
|
+
SENSITIVE = []
|
1172
|
+
include Aws::Structure
|
1173
|
+
end
|
1174
|
+
|
1175
|
+
# Contains details about maintenance settings for the table.
|
1176
|
+
#
|
1177
|
+
# @note TableMaintenanceSettings is a union - when making an API calls you must set exactly one of the members.
|
1178
|
+
#
|
1179
|
+
# @note TableMaintenanceSettings is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of TableMaintenanceSettings corresponding to the set member.
|
1180
|
+
#
|
1181
|
+
# @!attribute [rw] iceberg_compaction
|
1182
|
+
# Contains details about the Iceberg compaction settings for the
|
1183
|
+
# table.
|
1184
|
+
# @return [Types::IcebergCompactionSettings]
|
1185
|
+
#
|
1186
|
+
# @!attribute [rw] iceberg_snapshot_management
|
1187
|
+
# Contains details about the Iceberg snapshot management settings for
|
1188
|
+
# the table.
|
1189
|
+
# @return [Types::IcebergSnapshotManagementSettings]
|
1190
|
+
#
|
1191
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/TableMaintenanceSettings AWS API Documentation
|
1192
|
+
#
|
1193
|
+
class TableMaintenanceSettings < Struct.new(
|
1194
|
+
:iceberg_compaction,
|
1195
|
+
:iceberg_snapshot_management,
|
1196
|
+
:unknown)
|
1197
|
+
SENSITIVE = []
|
1198
|
+
include Aws::Structure
|
1199
|
+
include Aws::Structure::Union
|
1200
|
+
|
1201
|
+
class IcebergCompaction < TableMaintenanceSettings; end
|
1202
|
+
class IcebergSnapshotManagement < TableMaintenanceSettings; end
|
1203
|
+
class Unknown < TableMaintenanceSettings; end
|
1204
|
+
end
|
1205
|
+
|
1206
|
+
# Contains details about a table.
|
1207
|
+
#
|
1208
|
+
# @!attribute [rw] namespace
|
1209
|
+
# The name of the namespace.
|
1210
|
+
# @return [Array<String>]
|
1211
|
+
#
|
1212
|
+
# @!attribute [rw] name
|
1213
|
+
# The name of the table.
|
1214
|
+
# @return [String]
|
1215
|
+
#
|
1216
|
+
# @!attribute [rw] type
|
1217
|
+
# The type of the table.
|
1218
|
+
# @return [String]
|
1219
|
+
#
|
1220
|
+
# @!attribute [rw] table_arn
|
1221
|
+
# The Amazon Resource Number (ARN) of the table.
|
1222
|
+
# @return [String]
|
1223
|
+
#
|
1224
|
+
# @!attribute [rw] created_at
|
1225
|
+
# The date and time the table was created at.
|
1226
|
+
# @return [Time]
|
1227
|
+
#
|
1228
|
+
# @!attribute [rw] modified_at
|
1229
|
+
# The date and time the table was last modified at.
|
1230
|
+
# @return [Time]
|
1231
|
+
#
|
1232
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/TableSummary AWS API Documentation
|
1233
|
+
#
|
1234
|
+
class TableSummary < Struct.new(
|
1235
|
+
:namespace,
|
1236
|
+
:name,
|
1237
|
+
:type,
|
1238
|
+
:table_arn,
|
1239
|
+
:created_at,
|
1240
|
+
:modified_at)
|
1241
|
+
SENSITIVE = []
|
1242
|
+
include Aws::Structure
|
1243
|
+
end
|
1244
|
+
|
1245
|
+
# The limit on the number of requests per second was exceeded.
|
1246
|
+
#
|
1247
|
+
# @!attribute [rw] message
|
1248
|
+
# @return [String]
|
1249
|
+
#
|
1250
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/TooManyRequestsException AWS API Documentation
|
1251
|
+
#
|
1252
|
+
class TooManyRequestsException < Struct.new(
|
1253
|
+
:message)
|
1254
|
+
SENSITIVE = []
|
1255
|
+
include Aws::Structure
|
1256
|
+
end
|
1257
|
+
|
1258
|
+
# @!attribute [rw] table_bucket_arn
|
1259
|
+
# The Amazon Resource Name (ARN) of the table bucket.
|
1260
|
+
# @return [String]
|
1261
|
+
#
|
1262
|
+
# @!attribute [rw] namespace
|
1263
|
+
# The namespace of the table.
|
1264
|
+
# @return [String]
|
1265
|
+
#
|
1266
|
+
# @!attribute [rw] name
|
1267
|
+
# The name of the table.
|
1268
|
+
# @return [String]
|
1269
|
+
#
|
1270
|
+
# @!attribute [rw] version_token
|
1271
|
+
# The version token of the table.
|
1272
|
+
# @return [String]
|
1273
|
+
#
|
1274
|
+
# @!attribute [rw] metadata_location
|
1275
|
+
# The new metadata location for the table.
|
1276
|
+
# @return [String]
|
1277
|
+
#
|
1278
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/UpdateTableMetadataLocationRequest AWS API Documentation
|
1279
|
+
#
|
1280
|
+
class UpdateTableMetadataLocationRequest < Struct.new(
|
1281
|
+
:table_bucket_arn,
|
1282
|
+
:namespace,
|
1283
|
+
:name,
|
1284
|
+
:version_token,
|
1285
|
+
:metadata_location)
|
1286
|
+
SENSITIVE = []
|
1287
|
+
include Aws::Structure
|
1288
|
+
end
|
1289
|
+
|
1290
|
+
# @!attribute [rw] name
|
1291
|
+
# The name of the table.
|
1292
|
+
# @return [String]
|
1293
|
+
#
|
1294
|
+
# @!attribute [rw] table_arn
|
1295
|
+
# The Amazon Resource Number (ARN) of the table.
|
1296
|
+
# @return [String]
|
1297
|
+
#
|
1298
|
+
# @!attribute [rw] namespace
|
1299
|
+
# The namespace the table is associated with.
|
1300
|
+
# @return [Array<String>]
|
1301
|
+
#
|
1302
|
+
# @!attribute [rw] version_token
|
1303
|
+
# The version token of the table.
|
1304
|
+
# @return [String]
|
1305
|
+
#
|
1306
|
+
# @!attribute [rw] metadata_location
|
1307
|
+
# The metadata location of the table.
|
1308
|
+
# @return [String]
|
1309
|
+
#
|
1310
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/UpdateTableMetadataLocationResponse AWS API Documentation
|
1311
|
+
#
|
1312
|
+
class UpdateTableMetadataLocationResponse < Struct.new(
|
1313
|
+
:name,
|
1314
|
+
:table_arn,
|
1315
|
+
:namespace,
|
1316
|
+
:version_token,
|
1317
|
+
:metadata_location)
|
1318
|
+
SENSITIVE = []
|
1319
|
+
include Aws::Structure
|
1320
|
+
end
|
1321
|
+
|
1322
|
+
end
|
1323
|
+
end
|
1324
|
+
|