aws-sdk-s3tables 1.21.0 → 1.22.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3tables/client.rb +630 -6
- data/lib/aws-sdk-s3tables/client_api.rb +387 -0
- data/lib/aws-sdk-s3tables/errors.rb +16 -0
- data/lib/aws-sdk-s3tables/types.rb +700 -4
- data/lib/aws-sdk-s3tables.rb +1 -1
- data/sig/client.rbs +170 -1
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +213 -0
- metadata +1 -1
data/lib/aws-sdk-s3tables.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -111,13 +111,17 @@ module Aws
|
|
|
111
111
|
required: bool?
|
|
112
112
|
},
|
|
113
113
|
]
|
|
114
|
-
}
|
|
114
|
+
},
|
|
115
|
+
properties: Hash[::String, ::String]?
|
|
115
116
|
}?
|
|
116
117
|
},
|
|
117
118
|
?encryption_configuration: {
|
|
118
119
|
sse_algorithm: ("AES256" | "aws:kms"),
|
|
119
120
|
kms_key_arn: ::String?
|
|
120
121
|
},
|
|
122
|
+
?storage_class_configuration: {
|
|
123
|
+
storage_class: ("STANDARD" | "INTELLIGENT_TIERING")
|
|
124
|
+
},
|
|
121
125
|
?tags: Hash[::String, ::String]
|
|
122
126
|
) -> _CreateTableResponseSuccess
|
|
123
127
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTableResponseSuccess
|
|
@@ -133,6 +137,9 @@ module Aws
|
|
|
133
137
|
sse_algorithm: ("AES256" | "aws:kms"),
|
|
134
138
|
kms_key_arn: ::String?
|
|
135
139
|
},
|
|
140
|
+
?storage_class_configuration: {
|
|
141
|
+
storage_class: ("STANDARD" | "INTELLIGENT_TIERING")
|
|
142
|
+
},
|
|
136
143
|
?tags: Hash[::String, ::String]
|
|
137
144
|
) -> _CreateTableBucketResponseSuccess
|
|
138
145
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTableBucketResponseSuccess
|
|
@@ -177,6 +184,13 @@ module Aws
|
|
|
177
184
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
178
185
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
179
186
|
|
|
187
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#delete_table_bucket_replication-instance_method
|
|
188
|
+
def delete_table_bucket_replication: (
|
|
189
|
+
table_bucket_arn: ::String,
|
|
190
|
+
?version_token: ::String
|
|
191
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
192
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
193
|
+
|
|
180
194
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#delete_table_policy-instance_method
|
|
181
195
|
def delete_table_policy: (
|
|
182
196
|
table_bucket_arn: ::String,
|
|
@@ -185,6 +199,13 @@ module Aws
|
|
|
185
199
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
186
200
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
187
201
|
|
|
202
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#delete_table_replication-instance_method
|
|
203
|
+
def delete_table_replication: (
|
|
204
|
+
table_arn: ::String,
|
|
205
|
+
version_token: ::String
|
|
206
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
207
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
208
|
+
|
|
188
209
|
interface _GetNamespaceResponseSuccess
|
|
189
210
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetNamespaceResponse]
|
|
190
211
|
def namespace: () -> ::Array[::String]
|
|
@@ -219,6 +240,7 @@ module Aws
|
|
|
219
240
|
def owner_account_id: () -> ::String
|
|
220
241
|
def format: () -> ("ICEBERG")
|
|
221
242
|
def table_bucket_id: () -> ::String
|
|
243
|
+
def managed_table_information: () -> Types::ManagedTableInformation
|
|
222
244
|
end
|
|
223
245
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#get_table-instance_method
|
|
224
246
|
def get_table: (
|
|
@@ -286,6 +308,27 @@ module Aws
|
|
|
286
308
|
) -> _GetTableBucketPolicyResponseSuccess
|
|
287
309
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTableBucketPolicyResponseSuccess
|
|
288
310
|
|
|
311
|
+
interface _GetTableBucketReplicationResponseSuccess
|
|
312
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetTableBucketReplicationResponse]
|
|
313
|
+
def version_token: () -> ::String
|
|
314
|
+
def configuration: () -> Types::TableBucketReplicationConfiguration
|
|
315
|
+
end
|
|
316
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#get_table_bucket_replication-instance_method
|
|
317
|
+
def get_table_bucket_replication: (
|
|
318
|
+
table_bucket_arn: ::String
|
|
319
|
+
) -> _GetTableBucketReplicationResponseSuccess
|
|
320
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTableBucketReplicationResponseSuccess
|
|
321
|
+
|
|
322
|
+
interface _GetTableBucketStorageClassResponseSuccess
|
|
323
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetTableBucketStorageClassResponse]
|
|
324
|
+
def storage_class_configuration: () -> Types::StorageClassConfiguration
|
|
325
|
+
end
|
|
326
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#get_table_bucket_storage_class-instance_method
|
|
327
|
+
def get_table_bucket_storage_class: (
|
|
328
|
+
table_bucket_arn: ::String
|
|
329
|
+
) -> _GetTableBucketStorageClassResponseSuccess
|
|
330
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTableBucketStorageClassResponseSuccess
|
|
331
|
+
|
|
289
332
|
interface _GetTableEncryptionResponseSuccess
|
|
290
333
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetTableEncryptionResponse]
|
|
291
334
|
def encryption_configuration: () -> Types::EncryptionConfiguration
|
|
@@ -350,6 +393,63 @@ module Aws
|
|
|
350
393
|
) -> _GetTablePolicyResponseSuccess
|
|
351
394
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTablePolicyResponseSuccess
|
|
352
395
|
|
|
396
|
+
interface _GetTableRecordExpirationConfigurationResponseSuccess
|
|
397
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetTableRecordExpirationConfigurationResponse]
|
|
398
|
+
def configuration: () -> Types::TableRecordExpirationConfigurationValue
|
|
399
|
+
end
|
|
400
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#get_table_record_expiration_configuration-instance_method
|
|
401
|
+
def get_table_record_expiration_configuration: (
|
|
402
|
+
table_arn: ::String
|
|
403
|
+
) -> _GetTableRecordExpirationConfigurationResponseSuccess
|
|
404
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTableRecordExpirationConfigurationResponseSuccess
|
|
405
|
+
|
|
406
|
+
interface _GetTableRecordExpirationJobStatusResponseSuccess
|
|
407
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetTableRecordExpirationJobStatusResponse]
|
|
408
|
+
def status: () -> ("NotYetRun" | "Successful" | "Failed" | "Disabled")
|
|
409
|
+
def last_run_timestamp: () -> ::Time
|
|
410
|
+
def failure_message: () -> ::String
|
|
411
|
+
def metrics: () -> Types::TableRecordExpirationJobMetrics
|
|
412
|
+
end
|
|
413
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#get_table_record_expiration_job_status-instance_method
|
|
414
|
+
def get_table_record_expiration_job_status: (
|
|
415
|
+
table_arn: ::String
|
|
416
|
+
) -> _GetTableRecordExpirationJobStatusResponseSuccess
|
|
417
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTableRecordExpirationJobStatusResponseSuccess
|
|
418
|
+
|
|
419
|
+
interface _GetTableReplicationResponseSuccess
|
|
420
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetTableReplicationResponse]
|
|
421
|
+
def version_token: () -> ::String
|
|
422
|
+
def configuration: () -> Types::TableReplicationConfiguration
|
|
423
|
+
end
|
|
424
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#get_table_replication-instance_method
|
|
425
|
+
def get_table_replication: (
|
|
426
|
+
table_arn: ::String
|
|
427
|
+
) -> _GetTableReplicationResponseSuccess
|
|
428
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTableReplicationResponseSuccess
|
|
429
|
+
|
|
430
|
+
interface _GetTableReplicationStatusResponseSuccess
|
|
431
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetTableReplicationStatusResponse]
|
|
432
|
+
def source_table_arn: () -> ::String
|
|
433
|
+
def destinations: () -> ::Array[Types::ReplicationDestinationStatusModel]
|
|
434
|
+
end
|
|
435
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#get_table_replication_status-instance_method
|
|
436
|
+
def get_table_replication_status: (
|
|
437
|
+
table_arn: ::String
|
|
438
|
+
) -> _GetTableReplicationStatusResponseSuccess
|
|
439
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTableReplicationStatusResponseSuccess
|
|
440
|
+
|
|
441
|
+
interface _GetTableStorageClassResponseSuccess
|
|
442
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetTableStorageClassResponse]
|
|
443
|
+
def storage_class_configuration: () -> Types::StorageClassConfiguration
|
|
444
|
+
end
|
|
445
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#get_table_storage_class-instance_method
|
|
446
|
+
def get_table_storage_class: (
|
|
447
|
+
table_bucket_arn: ::String,
|
|
448
|
+
namespace: ::String,
|
|
449
|
+
name: ::String
|
|
450
|
+
) -> _GetTableStorageClassResponseSuccess
|
|
451
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTableStorageClassResponseSuccess
|
|
452
|
+
|
|
353
453
|
interface _ListNamespacesResponseSuccess
|
|
354
454
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListNamespacesResponse]
|
|
355
455
|
def namespaces: () -> ::Array[Types::NamespaceSummary]
|
|
@@ -442,6 +542,39 @@ module Aws
|
|
|
442
542
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
443
543
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
444
544
|
|
|
545
|
+
interface _PutTableBucketReplicationResponseSuccess
|
|
546
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutTableBucketReplicationResponse]
|
|
547
|
+
def version_token: () -> ::String
|
|
548
|
+
def status: () -> ::String
|
|
549
|
+
end
|
|
550
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#put_table_bucket_replication-instance_method
|
|
551
|
+
def put_table_bucket_replication: (
|
|
552
|
+
table_bucket_arn: ::String,
|
|
553
|
+
?version_token: ::String,
|
|
554
|
+
configuration: {
|
|
555
|
+
role: ::String,
|
|
556
|
+
rules: Array[
|
|
557
|
+
{
|
|
558
|
+
destinations: Array[
|
|
559
|
+
{
|
|
560
|
+
destination_table_bucket_arn: ::String
|
|
561
|
+
},
|
|
562
|
+
]
|
|
563
|
+
},
|
|
564
|
+
]
|
|
565
|
+
}
|
|
566
|
+
) -> _PutTableBucketReplicationResponseSuccess
|
|
567
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutTableBucketReplicationResponseSuccess
|
|
568
|
+
|
|
569
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#put_table_bucket_storage_class-instance_method
|
|
570
|
+
def put_table_bucket_storage_class: (
|
|
571
|
+
table_bucket_arn: ::String,
|
|
572
|
+
storage_class_configuration: {
|
|
573
|
+
storage_class: ("STANDARD" | "INTELLIGENT_TIERING")
|
|
574
|
+
}
|
|
575
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
576
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
577
|
+
|
|
445
578
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#put_table_maintenance_configuration-instance_method
|
|
446
579
|
def put_table_maintenance_configuration: (
|
|
447
580
|
table_bucket_arn: ::String,
|
|
@@ -473,6 +606,42 @@ module Aws
|
|
|
473
606
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
474
607
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
475
608
|
|
|
609
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#put_table_record_expiration_configuration-instance_method
|
|
610
|
+
def put_table_record_expiration_configuration: (
|
|
611
|
+
table_arn: ::String,
|
|
612
|
+
value: {
|
|
613
|
+
status: ("enabled" | "disabled")?,
|
|
614
|
+
settings: {
|
|
615
|
+
days: ::Integer?
|
|
616
|
+
}?
|
|
617
|
+
}
|
|
618
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
619
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
620
|
+
|
|
621
|
+
interface _PutTableReplicationResponseSuccess
|
|
622
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutTableReplicationResponse]
|
|
623
|
+
def version_token: () -> ::String
|
|
624
|
+
def status: () -> ::String
|
|
625
|
+
end
|
|
626
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#put_table_replication-instance_method
|
|
627
|
+
def put_table_replication: (
|
|
628
|
+
table_arn: ::String,
|
|
629
|
+
?version_token: ::String,
|
|
630
|
+
configuration: {
|
|
631
|
+
role: ::String,
|
|
632
|
+
rules: Array[
|
|
633
|
+
{
|
|
634
|
+
destinations: Array[
|
|
635
|
+
{
|
|
636
|
+
destination_table_bucket_arn: ::String
|
|
637
|
+
},
|
|
638
|
+
]
|
|
639
|
+
},
|
|
640
|
+
]
|
|
641
|
+
}
|
|
642
|
+
) -> _PutTableReplicationResponseSuccess
|
|
643
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutTableReplicationResponseSuccess
|
|
644
|
+
|
|
476
645
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#rename_table-instance_method
|
|
477
646
|
def rename_table: (
|
|
478
647
|
table_bucket_arn: ::String,
|
data/sig/errors.rbs
CHANGED
|
@@ -26,6 +26,9 @@ module Aws
|
|
|
26
26
|
class InternalServerErrorException < ::Aws::Errors::ServiceError
|
|
27
27
|
def message: () -> ::String
|
|
28
28
|
end
|
|
29
|
+
class MethodNotAllowedException < ::Aws::Errors::ServiceError
|
|
30
|
+
def message: () -> ::String
|
|
31
|
+
end
|
|
29
32
|
class NotFoundException < ::Aws::Errors::ServiceError
|
|
30
33
|
def message: () -> ::String
|
|
31
34
|
end
|
data/sig/types.rbs
CHANGED
|
@@ -38,6 +38,7 @@ module Aws::S3Tables
|
|
|
38
38
|
class CreateTableBucketRequest
|
|
39
39
|
attr_accessor name: ::String
|
|
40
40
|
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
|
41
|
+
attr_accessor storage_class_configuration: Types::StorageClassConfiguration
|
|
41
42
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
42
43
|
SENSITIVE: []
|
|
43
44
|
end
|
|
@@ -54,6 +55,7 @@ module Aws::S3Tables
|
|
|
54
55
|
attr_accessor format: ("ICEBERG")
|
|
55
56
|
attr_accessor metadata: Types::TableMetadata
|
|
56
57
|
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
|
58
|
+
attr_accessor storage_class_configuration: Types::StorageClassConfiguration
|
|
57
59
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
58
60
|
SENSITIVE: []
|
|
59
61
|
end
|
|
@@ -85,6 +87,12 @@ module Aws::S3Tables
|
|
|
85
87
|
SENSITIVE: []
|
|
86
88
|
end
|
|
87
89
|
|
|
90
|
+
class DeleteTableBucketReplicationRequest
|
|
91
|
+
attr_accessor table_bucket_arn: ::String
|
|
92
|
+
attr_accessor version_token: ::String
|
|
93
|
+
SENSITIVE: []
|
|
94
|
+
end
|
|
95
|
+
|
|
88
96
|
class DeleteTableBucketRequest
|
|
89
97
|
attr_accessor table_bucket_arn: ::String
|
|
90
98
|
SENSITIVE: []
|
|
@@ -97,6 +105,12 @@ module Aws::S3Tables
|
|
|
97
105
|
SENSITIVE: []
|
|
98
106
|
end
|
|
99
107
|
|
|
108
|
+
class DeleteTableReplicationRequest
|
|
109
|
+
attr_accessor table_arn: ::String
|
|
110
|
+
attr_accessor version_token: ::String
|
|
111
|
+
SENSITIVE: []
|
|
112
|
+
end
|
|
113
|
+
|
|
100
114
|
class DeleteTableRequest
|
|
101
115
|
attr_accessor table_bucket_arn: ::String
|
|
102
116
|
attr_accessor namespace: ::String
|
|
@@ -174,6 +188,17 @@ module Aws::S3Tables
|
|
|
174
188
|
SENSITIVE: []
|
|
175
189
|
end
|
|
176
190
|
|
|
191
|
+
class GetTableBucketReplicationRequest
|
|
192
|
+
attr_accessor table_bucket_arn: ::String
|
|
193
|
+
SENSITIVE: []
|
|
194
|
+
end
|
|
195
|
+
|
|
196
|
+
class GetTableBucketReplicationResponse
|
|
197
|
+
attr_accessor version_token: ::String
|
|
198
|
+
attr_accessor configuration: Types::TableBucketReplicationConfiguration
|
|
199
|
+
SENSITIVE: []
|
|
200
|
+
end
|
|
201
|
+
|
|
177
202
|
class GetTableBucketRequest
|
|
178
203
|
attr_accessor table_bucket_arn: ::String
|
|
179
204
|
SENSITIVE: []
|
|
@@ -189,6 +214,16 @@ module Aws::S3Tables
|
|
|
189
214
|
SENSITIVE: []
|
|
190
215
|
end
|
|
191
216
|
|
|
217
|
+
class GetTableBucketStorageClassRequest
|
|
218
|
+
attr_accessor table_bucket_arn: ::String
|
|
219
|
+
SENSITIVE: []
|
|
220
|
+
end
|
|
221
|
+
|
|
222
|
+
class GetTableBucketStorageClassResponse
|
|
223
|
+
attr_accessor storage_class_configuration: Types::StorageClassConfiguration
|
|
224
|
+
SENSITIVE: []
|
|
225
|
+
end
|
|
226
|
+
|
|
192
227
|
class GetTableEncryptionRequest
|
|
193
228
|
attr_accessor table_bucket_arn: ::String
|
|
194
229
|
attr_accessor namespace: ::String
|
|
@@ -253,6 +288,51 @@ module Aws::S3Tables
|
|
|
253
288
|
SENSITIVE: []
|
|
254
289
|
end
|
|
255
290
|
|
|
291
|
+
class GetTableRecordExpirationConfigurationRequest
|
|
292
|
+
attr_accessor table_arn: ::String
|
|
293
|
+
SENSITIVE: []
|
|
294
|
+
end
|
|
295
|
+
|
|
296
|
+
class GetTableRecordExpirationConfigurationResponse
|
|
297
|
+
attr_accessor configuration: Types::TableRecordExpirationConfigurationValue
|
|
298
|
+
SENSITIVE: []
|
|
299
|
+
end
|
|
300
|
+
|
|
301
|
+
class GetTableRecordExpirationJobStatusRequest
|
|
302
|
+
attr_accessor table_arn: ::String
|
|
303
|
+
SENSITIVE: []
|
|
304
|
+
end
|
|
305
|
+
|
|
306
|
+
class GetTableRecordExpirationJobStatusResponse
|
|
307
|
+
attr_accessor status: ("NotYetRun" | "Successful" | "Failed" | "Disabled")
|
|
308
|
+
attr_accessor last_run_timestamp: ::Time
|
|
309
|
+
attr_accessor failure_message: ::String
|
|
310
|
+
attr_accessor metrics: Types::TableRecordExpirationJobMetrics
|
|
311
|
+
SENSITIVE: []
|
|
312
|
+
end
|
|
313
|
+
|
|
314
|
+
class GetTableReplicationRequest
|
|
315
|
+
attr_accessor table_arn: ::String
|
|
316
|
+
SENSITIVE: []
|
|
317
|
+
end
|
|
318
|
+
|
|
319
|
+
class GetTableReplicationResponse
|
|
320
|
+
attr_accessor version_token: ::String
|
|
321
|
+
attr_accessor configuration: Types::TableReplicationConfiguration
|
|
322
|
+
SENSITIVE: []
|
|
323
|
+
end
|
|
324
|
+
|
|
325
|
+
class GetTableReplicationStatusRequest
|
|
326
|
+
attr_accessor table_arn: ::String
|
|
327
|
+
SENSITIVE: []
|
|
328
|
+
end
|
|
329
|
+
|
|
330
|
+
class GetTableReplicationStatusResponse
|
|
331
|
+
attr_accessor source_table_arn: ::String
|
|
332
|
+
attr_accessor destinations: ::Array[Types::ReplicationDestinationStatusModel]
|
|
333
|
+
SENSITIVE: []
|
|
334
|
+
end
|
|
335
|
+
|
|
256
336
|
class GetTableRequest
|
|
257
337
|
attr_accessor table_bucket_arn: ::String
|
|
258
338
|
attr_accessor namespace: ::String
|
|
@@ -278,6 +358,19 @@ module Aws::S3Tables
|
|
|
278
358
|
attr_accessor owner_account_id: ::String
|
|
279
359
|
attr_accessor format: ("ICEBERG")
|
|
280
360
|
attr_accessor table_bucket_id: ::String
|
|
361
|
+
attr_accessor managed_table_information: Types::ManagedTableInformation
|
|
362
|
+
SENSITIVE: []
|
|
363
|
+
end
|
|
364
|
+
|
|
365
|
+
class GetTableStorageClassRequest
|
|
366
|
+
attr_accessor table_bucket_arn: ::String
|
|
367
|
+
attr_accessor namespace: ::String
|
|
368
|
+
attr_accessor name: ::String
|
|
369
|
+
SENSITIVE: []
|
|
370
|
+
end
|
|
371
|
+
|
|
372
|
+
class GetTableStorageClassResponse
|
|
373
|
+
attr_accessor storage_class_configuration: Types::StorageClassConfiguration
|
|
281
374
|
SENSITIVE: []
|
|
282
375
|
end
|
|
283
376
|
|
|
@@ -289,6 +382,7 @@ module Aws::S3Tables
|
|
|
289
382
|
|
|
290
383
|
class IcebergMetadata
|
|
291
384
|
attr_accessor schema: Types::IcebergSchema
|
|
385
|
+
attr_accessor properties: ::Hash[::String, ::String]
|
|
292
386
|
SENSITIVE: []
|
|
293
387
|
end
|
|
294
388
|
|
|
@@ -314,6 +408,12 @@ module Aws::S3Tables
|
|
|
314
408
|
SENSITIVE: []
|
|
315
409
|
end
|
|
316
410
|
|
|
411
|
+
class LastSuccessfulReplicatedUpdate
|
|
412
|
+
attr_accessor metadata_location: ::String
|
|
413
|
+
attr_accessor timestamp: ::Time
|
|
414
|
+
SENSITIVE: []
|
|
415
|
+
end
|
|
416
|
+
|
|
317
417
|
class ListNamespacesRequest
|
|
318
418
|
attr_accessor table_bucket_arn: ::String
|
|
319
419
|
attr_accessor prefix: ::String
|
|
@@ -367,6 +467,16 @@ module Aws::S3Tables
|
|
|
367
467
|
SENSITIVE: []
|
|
368
468
|
end
|
|
369
469
|
|
|
470
|
+
class ManagedTableInformation
|
|
471
|
+
attr_accessor replication_information: Types::ReplicationInformation
|
|
472
|
+
SENSITIVE: []
|
|
473
|
+
end
|
|
474
|
+
|
|
475
|
+
class MethodNotAllowedException
|
|
476
|
+
attr_accessor message: ::String
|
|
477
|
+
SENSITIVE: []
|
|
478
|
+
end
|
|
479
|
+
|
|
370
480
|
class NamespaceSummary
|
|
371
481
|
attr_accessor namespace: ::Array[::String]
|
|
372
482
|
attr_accessor created_at: ::Time
|
|
@@ -406,6 +516,25 @@ module Aws::S3Tables
|
|
|
406
516
|
SENSITIVE: []
|
|
407
517
|
end
|
|
408
518
|
|
|
519
|
+
class PutTableBucketReplicationRequest
|
|
520
|
+
attr_accessor table_bucket_arn: ::String
|
|
521
|
+
attr_accessor version_token: ::String
|
|
522
|
+
attr_accessor configuration: Types::TableBucketReplicationConfiguration
|
|
523
|
+
SENSITIVE: []
|
|
524
|
+
end
|
|
525
|
+
|
|
526
|
+
class PutTableBucketReplicationResponse
|
|
527
|
+
attr_accessor version_token: ::String
|
|
528
|
+
attr_accessor status: ::String
|
|
529
|
+
SENSITIVE: []
|
|
530
|
+
end
|
|
531
|
+
|
|
532
|
+
class PutTableBucketStorageClassRequest
|
|
533
|
+
attr_accessor table_bucket_arn: ::String
|
|
534
|
+
attr_accessor storage_class_configuration: Types::StorageClassConfiguration
|
|
535
|
+
SENSITIVE: []
|
|
536
|
+
end
|
|
537
|
+
|
|
409
538
|
class PutTableMaintenanceConfigurationRequest
|
|
410
539
|
attr_accessor table_bucket_arn: ::String
|
|
411
540
|
attr_accessor namespace: ::String
|
|
@@ -423,6 +552,25 @@ module Aws::S3Tables
|
|
|
423
552
|
SENSITIVE: []
|
|
424
553
|
end
|
|
425
554
|
|
|
555
|
+
class PutTableRecordExpirationConfigurationRequest
|
|
556
|
+
attr_accessor table_arn: ::String
|
|
557
|
+
attr_accessor value: Types::TableRecordExpirationConfigurationValue
|
|
558
|
+
SENSITIVE: []
|
|
559
|
+
end
|
|
560
|
+
|
|
561
|
+
class PutTableReplicationRequest
|
|
562
|
+
attr_accessor table_arn: ::String
|
|
563
|
+
attr_accessor version_token: ::String
|
|
564
|
+
attr_accessor configuration: Types::TableReplicationConfiguration
|
|
565
|
+
SENSITIVE: []
|
|
566
|
+
end
|
|
567
|
+
|
|
568
|
+
class PutTableReplicationResponse
|
|
569
|
+
attr_accessor version_token: ::String
|
|
570
|
+
attr_accessor status: ::String
|
|
571
|
+
SENSITIVE: []
|
|
572
|
+
end
|
|
573
|
+
|
|
426
574
|
class RenameTableRequest
|
|
427
575
|
attr_accessor table_bucket_arn: ::String
|
|
428
576
|
attr_accessor namespace: ::String
|
|
@@ -433,6 +581,25 @@ module Aws::S3Tables
|
|
|
433
581
|
SENSITIVE: []
|
|
434
582
|
end
|
|
435
583
|
|
|
584
|
+
class ReplicationDestination
|
|
585
|
+
attr_accessor destination_table_bucket_arn: ::String
|
|
586
|
+
SENSITIVE: []
|
|
587
|
+
end
|
|
588
|
+
|
|
589
|
+
class ReplicationDestinationStatusModel
|
|
590
|
+
attr_accessor replication_status: ("pending" | "completed" | "failed")
|
|
591
|
+
attr_accessor destination_table_bucket_arn: ::String
|
|
592
|
+
attr_accessor destination_table_arn: ::String
|
|
593
|
+
attr_accessor last_successful_replicated_update: Types::LastSuccessfulReplicatedUpdate
|
|
594
|
+
attr_accessor failure_message: ::String
|
|
595
|
+
SENSITIVE: []
|
|
596
|
+
end
|
|
597
|
+
|
|
598
|
+
class ReplicationInformation
|
|
599
|
+
attr_accessor source_table_arn: ::String
|
|
600
|
+
SENSITIVE: []
|
|
601
|
+
end
|
|
602
|
+
|
|
436
603
|
class SchemaField
|
|
437
604
|
attr_accessor name: ::String
|
|
438
605
|
attr_accessor type: ::String
|
|
@@ -440,6 +607,11 @@ module Aws::S3Tables
|
|
|
440
607
|
SENSITIVE: []
|
|
441
608
|
end
|
|
442
609
|
|
|
610
|
+
class StorageClassConfiguration
|
|
611
|
+
attr_accessor storage_class: ("STANDARD" | "INTELLIGENT_TIERING")
|
|
612
|
+
SENSITIVE: []
|
|
613
|
+
end
|
|
614
|
+
|
|
443
615
|
class TableBucketMaintenanceConfigurationValue
|
|
444
616
|
attr_accessor status: ("enabled" | "disabled")
|
|
445
617
|
attr_accessor settings: Types::TableBucketMaintenanceSettings
|
|
@@ -457,6 +629,17 @@ module Aws::S3Tables
|
|
|
457
629
|
end
|
|
458
630
|
end
|
|
459
631
|
|
|
632
|
+
class TableBucketReplicationConfiguration
|
|
633
|
+
attr_accessor role: ::String
|
|
634
|
+
attr_accessor rules: ::Array[Types::TableBucketReplicationRule]
|
|
635
|
+
SENSITIVE: []
|
|
636
|
+
end
|
|
637
|
+
|
|
638
|
+
class TableBucketReplicationRule
|
|
639
|
+
attr_accessor destinations: ::Array[Types::ReplicationDestination]
|
|
640
|
+
SENSITIVE: []
|
|
641
|
+
end
|
|
642
|
+
|
|
460
643
|
class TableBucketSummary
|
|
461
644
|
attr_accessor arn: ::String
|
|
462
645
|
attr_accessor name: ::String
|
|
@@ -505,6 +688,35 @@ module Aws::S3Tables
|
|
|
505
688
|
end
|
|
506
689
|
end
|
|
507
690
|
|
|
691
|
+
class TableRecordExpirationConfigurationValue
|
|
692
|
+
attr_accessor status: ("enabled" | "disabled")
|
|
693
|
+
attr_accessor settings: Types::TableRecordExpirationSettings
|
|
694
|
+
SENSITIVE: []
|
|
695
|
+
end
|
|
696
|
+
|
|
697
|
+
class TableRecordExpirationJobMetrics
|
|
698
|
+
attr_accessor deleted_data_files: ::Integer
|
|
699
|
+
attr_accessor deleted_records: ::Integer
|
|
700
|
+
attr_accessor removed_files_size: ::Integer
|
|
701
|
+
SENSITIVE: []
|
|
702
|
+
end
|
|
703
|
+
|
|
704
|
+
class TableRecordExpirationSettings
|
|
705
|
+
attr_accessor days: ::Integer
|
|
706
|
+
SENSITIVE: []
|
|
707
|
+
end
|
|
708
|
+
|
|
709
|
+
class TableReplicationConfiguration
|
|
710
|
+
attr_accessor role: ::String
|
|
711
|
+
attr_accessor rules: ::Array[Types::TableReplicationRule]
|
|
712
|
+
SENSITIVE: []
|
|
713
|
+
end
|
|
714
|
+
|
|
715
|
+
class TableReplicationRule
|
|
716
|
+
attr_accessor destinations: ::Array[Types::ReplicationDestination]
|
|
717
|
+
SENSITIVE: []
|
|
718
|
+
end
|
|
719
|
+
|
|
508
720
|
class TableSummary
|
|
509
721
|
attr_accessor namespace: ::Array[::String]
|
|
510
722
|
attr_accessor name: ::String
|
|
@@ -512,6 +724,7 @@ module Aws::S3Tables
|
|
|
512
724
|
attr_accessor table_arn: ::String
|
|
513
725
|
attr_accessor created_at: ::Time
|
|
514
726
|
attr_accessor modified_at: ::Time
|
|
727
|
+
attr_accessor managed_by_service: ::String
|
|
515
728
|
attr_accessor namespace_id: ::String
|
|
516
729
|
attr_accessor table_bucket_id: ::String
|
|
517
730
|
SENSITIVE: []
|