aws-sdk-s3tables 1.3.0 → 1.5.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-s3tables/client.rb +233 -36
- data/lib/aws-sdk-s3tables/client_api.rb +104 -0
- data/lib/aws-sdk-s3tables/types.rb +206 -10
- data/lib/aws-sdk-s3tables.rb +1 -1
- data/sig/client.rbs +52 -1
- data/sig/types.rbs +51 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e29b5a48edd9a4cf58f83b64b45d4166942a3a77085e16c84d83e0269c33c04a
|
4
|
+
data.tar.gz: 5879126c68ab09a9f48004f5930c49325fa852b813a98c7a5929c2cc54e339ec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e5c052b4b1b292b71eef23f80078b76d5543e4eaa3e82735896c518e6539e5fd69ca4bb751053cf1905bb839175e4074fa782e9d8d8e3653953938d9bce4f427
|
7
|
+
data.tar.gz: 5a6418a429c61ebf00c9c8af794d49ec7e4ed6cd65b3fff1125ddceeae99e7c5ad05e32c3076a9f461115445d70042f7c170a624f94e91bc5b30cbf97dec629b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.5.0 (2025-04-16)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - S3 Tables now supports setting encryption configurations on table buckets and tables. Encryption configurations can use server side encryption using AES256 or KMS customer-managed keys.
|
8
|
+
|
9
|
+
1.4.0 (2025-02-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.3.0 (2025-02-06)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.5.0
|
@@ -7,34 +7,34 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
-
require 'seahorse/client/plugins/content_length
|
11
|
-
require 'aws-sdk-core/plugins/credentials_configuration
|
12
|
-
require 'aws-sdk-core/plugins/logging
|
13
|
-
require 'aws-sdk-core/plugins/param_converter
|
14
|
-
require 'aws-sdk-core/plugins/param_validator
|
15
|
-
require 'aws-sdk-core/plugins/user_agent
|
16
|
-
require 'aws-sdk-core/plugins/helpful_socket_errors
|
17
|
-
require 'aws-sdk-core/plugins/retry_errors
|
18
|
-
require 'aws-sdk-core/plugins/global_configuration
|
19
|
-
require 'aws-sdk-core/plugins/regional_endpoint
|
20
|
-
require 'aws-sdk-core/plugins/endpoint_discovery
|
21
|
-
require 'aws-sdk-core/plugins/endpoint_pattern
|
22
|
-
require 'aws-sdk-core/plugins/response_paging
|
23
|
-
require 'aws-sdk-core/plugins/stub_responses
|
24
|
-
require 'aws-sdk-core/plugins/idempotency_token
|
25
|
-
require 'aws-sdk-core/plugins/invocation_id
|
26
|
-
require 'aws-sdk-core/plugins/jsonvalue_converter
|
27
|
-
require 'aws-sdk-core/plugins/client_metrics_plugin
|
28
|
-
require 'aws-sdk-core/plugins/client_metrics_send_plugin
|
29
|
-
require 'aws-sdk-core/plugins/transfer_encoding
|
30
|
-
require 'aws-sdk-core/plugins/http_checksum
|
31
|
-
require 'aws-sdk-core/plugins/checksum_algorithm
|
32
|
-
require 'aws-sdk-core/plugins/request_compression
|
33
|
-
require 'aws-sdk-core/plugins/defaults_mode
|
34
|
-
require 'aws-sdk-core/plugins/recursion_detection
|
35
|
-
require 'aws-sdk-core/plugins/telemetry
|
36
|
-
require 'aws-sdk-core/plugins/sign
|
37
|
-
require 'aws-sdk-core/plugins/protocols/rest_json
|
10
|
+
require 'seahorse/client/plugins/content_length'
|
11
|
+
require 'aws-sdk-core/plugins/credentials_configuration'
|
12
|
+
require 'aws-sdk-core/plugins/logging'
|
13
|
+
require 'aws-sdk-core/plugins/param_converter'
|
14
|
+
require 'aws-sdk-core/plugins/param_validator'
|
15
|
+
require 'aws-sdk-core/plugins/user_agent'
|
16
|
+
require 'aws-sdk-core/plugins/helpful_socket_errors'
|
17
|
+
require 'aws-sdk-core/plugins/retry_errors'
|
18
|
+
require 'aws-sdk-core/plugins/global_configuration'
|
19
|
+
require 'aws-sdk-core/plugins/regional_endpoint'
|
20
|
+
require 'aws-sdk-core/plugins/endpoint_discovery'
|
21
|
+
require 'aws-sdk-core/plugins/endpoint_pattern'
|
22
|
+
require 'aws-sdk-core/plugins/response_paging'
|
23
|
+
require 'aws-sdk-core/plugins/stub_responses'
|
24
|
+
require 'aws-sdk-core/plugins/idempotency_token'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id'
|
26
|
+
require 'aws-sdk-core/plugins/jsonvalue_converter'
|
27
|
+
require 'aws-sdk-core/plugins/client_metrics_plugin'
|
28
|
+
require 'aws-sdk-core/plugins/client_metrics_send_plugin'
|
29
|
+
require 'aws-sdk-core/plugins/transfer_encoding'
|
30
|
+
require 'aws-sdk-core/plugins/http_checksum'
|
31
|
+
require 'aws-sdk-core/plugins/checksum_algorithm'
|
32
|
+
require 'aws-sdk-core/plugins/request_compression'
|
33
|
+
require 'aws-sdk-core/plugins/defaults_mode'
|
34
|
+
require 'aws-sdk-core/plugins/recursion_detection'
|
35
|
+
require 'aws-sdk-core/plugins/telemetry'
|
36
|
+
require 'aws-sdk-core/plugins/sign'
|
37
|
+
require 'aws-sdk-core/plugins/protocols/rest_json'
|
38
38
|
|
39
39
|
module Aws::S3Tables
|
40
40
|
# An API client for S3Tables. To construct a client, you need to configure a `:region` and `:credentials`.
|
@@ -523,13 +523,17 @@ module Aws::S3Tables
|
|
523
523
|
# the *Amazon Simple Storage Service User Guide*.
|
524
524
|
#
|
525
525
|
# Permissions
|
526
|
+
# : * You must have the `s3tables:CreateTable` permission to use this
|
527
|
+
# operation.
|
526
528
|
#
|
527
|
-
#
|
528
|
-
#
|
529
|
+
# * If you use this operation with the optional `metadata` request
|
530
|
+
# parameter you must have the `s3tables:PutTableData` permission.
|
531
|
+
#
|
532
|
+
# * If you use this operation with the optional
|
533
|
+
# `encryptionConfiguration` request parameter you must have the
|
534
|
+
# `s3tables:PutTableEncryption` permission.
|
529
535
|
#
|
530
|
-
# <note markdown="1"> Additionally,
|
531
|
-
# to use this operation with the optional `metadata` request
|
532
|
-
# parameter.
|
536
|
+
# <note markdown="1"> Additionally,
|
533
537
|
#
|
534
538
|
# </note>
|
535
539
|
#
|
@@ -553,6 +557,21 @@ module Aws::S3Tables
|
|
553
557
|
# @option params [Types::TableMetadata] :metadata
|
554
558
|
# The metadata for the table.
|
555
559
|
#
|
560
|
+
# @option params [Types::EncryptionConfiguration] :encryption_configuration
|
561
|
+
# The encryption configuration to use for the table. This configuration
|
562
|
+
# specifies the encryption algorithm and, if using SSE-KMS, the KMS key
|
563
|
+
# to use for encrypting the table.
|
564
|
+
#
|
565
|
+
# <note markdown="1"> If you choose SSE-KMS encryption you must grant the S3 Tables
|
566
|
+
# maintenance principal access to your KMS key. For more information,
|
567
|
+
# see [Permissions requirements for S3 Tables SSE-KMS encryption][1].
|
568
|
+
#
|
569
|
+
# </note>
|
570
|
+
#
|
571
|
+
#
|
572
|
+
#
|
573
|
+
# [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-kms-permissions.html
|
574
|
+
#
|
556
575
|
# @return [Types::CreateTableResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
557
576
|
#
|
558
577
|
# * {Types::CreateTableResponse#table_arn #table_arn} => String
|
@@ -578,6 +597,10 @@ module Aws::S3Tables
|
|
578
597
|
# },
|
579
598
|
# },
|
580
599
|
# },
|
600
|
+
# encryption_configuration: {
|
601
|
+
# sse_algorithm: "AES256", # required, accepts AES256, aws:kms
|
602
|
+
# kms_key_arn: "EncryptionConfigurationKmsKeyArnString",
|
603
|
+
# },
|
581
604
|
# })
|
582
605
|
#
|
583
606
|
# @example Response structure
|
@@ -598,9 +621,12 @@ module Aws::S3Tables
|
|
598
621
|
# bucket][1] in the *Amazon Simple Storage Service User Guide*.
|
599
622
|
#
|
600
623
|
# Permissions
|
624
|
+
# : * You must have the `s3tables:CreateTableBucket` permission to use
|
625
|
+
# this operation.
|
601
626
|
#
|
602
|
-
#
|
603
|
-
#
|
627
|
+
# * If you use this operation with the optional
|
628
|
+
# `encryptionConfiguration` parameter you must have the
|
629
|
+
# `s3tables:PutTableBucketEncryption` permission.
|
604
630
|
#
|
605
631
|
#
|
606
632
|
#
|
@@ -609,6 +635,13 @@ module Aws::S3Tables
|
|
609
635
|
# @option params [required, String] :name
|
610
636
|
# The name for the table bucket.
|
611
637
|
#
|
638
|
+
# @option params [Types::EncryptionConfiguration] :encryption_configuration
|
639
|
+
# The encryption configuration to use for the table bucket. This
|
640
|
+
# configuration specifies the default encryption settings that will be
|
641
|
+
# applied to all tables created in this bucket unless overridden at the
|
642
|
+
# table level. The configuration includes the encryption algorithm and,
|
643
|
+
# if using SSE-KMS, the KMS key to use.
|
644
|
+
#
|
612
645
|
# @return [Types::CreateTableBucketResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
613
646
|
#
|
614
647
|
# * {Types::CreateTableBucketResponse#arn #arn} => String
|
@@ -617,6 +650,10 @@ module Aws::S3Tables
|
|
617
650
|
#
|
618
651
|
# resp = client.create_table_bucket({
|
619
652
|
# name: "TableBucketName", # required
|
653
|
+
# encryption_configuration: {
|
654
|
+
# sse_algorithm: "AES256", # required, accepts AES256, aws:kms
|
655
|
+
# kms_key_arn: "EncryptionConfigurationKmsKeyArnString",
|
656
|
+
# },
|
620
657
|
# })
|
621
658
|
#
|
622
659
|
# @example Response structure
|
@@ -746,6 +783,33 @@ module Aws::S3Tables
|
|
746
783
|
req.send_request(options)
|
747
784
|
end
|
748
785
|
|
786
|
+
# Deletes the encryption configuration for a table bucket.
|
787
|
+
#
|
788
|
+
# Permissions
|
789
|
+
#
|
790
|
+
# : You must have the `s3tables:DeleteTableBucketEncryption` permission
|
791
|
+
# to use this operation.
|
792
|
+
#
|
793
|
+
# @option params [required, String] :table_bucket_arn
|
794
|
+
# The Amazon Resource Name (ARN) of the table bucket.
|
795
|
+
#
|
796
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
797
|
+
#
|
798
|
+
# @example Request syntax with placeholder values
|
799
|
+
#
|
800
|
+
# resp = client.delete_table_bucket_encryption({
|
801
|
+
# table_bucket_arn: "TableBucketARN", # required
|
802
|
+
# })
|
803
|
+
#
|
804
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/DeleteTableBucketEncryption AWS API Documentation
|
805
|
+
#
|
806
|
+
# @overload delete_table_bucket_encryption(params = {})
|
807
|
+
# @param [Hash] params ({})
|
808
|
+
def delete_table_bucket_encryption(params = {}, options = {})
|
809
|
+
req = build_request(:delete_table_bucket_encryption, params)
|
810
|
+
req.send_request(options)
|
811
|
+
end
|
812
|
+
|
749
813
|
# Deletes a table bucket policy. For more information, see [Deleting a
|
750
814
|
# table bucket policy][1] in the *Amazon Simple Storage Service User
|
751
815
|
# Guide*.
|
@@ -844,6 +908,8 @@ module Aws::S3Tables
|
|
844
908
|
# * {Types::GetNamespaceResponse#created_at #created_at} => Time
|
845
909
|
# * {Types::GetNamespaceResponse#created_by #created_by} => String
|
846
910
|
# * {Types::GetNamespaceResponse#owner_account_id #owner_account_id} => String
|
911
|
+
# * {Types::GetNamespaceResponse#namespace_id #namespace_id} => String
|
912
|
+
# * {Types::GetNamespaceResponse#table_bucket_id #table_bucket_id} => String
|
847
913
|
#
|
848
914
|
# @example Request syntax with placeholder values
|
849
915
|
#
|
@@ -859,6 +925,8 @@ module Aws::S3Tables
|
|
859
925
|
# resp.created_at #=> Time
|
860
926
|
# resp.created_by #=> String
|
861
927
|
# resp.owner_account_id #=> String
|
928
|
+
# resp.namespace_id #=> String
|
929
|
+
# resp.table_bucket_id #=> String
|
862
930
|
#
|
863
931
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetNamespace AWS API Documentation
|
864
932
|
#
|
@@ -897,6 +965,7 @@ module Aws::S3Tables
|
|
897
965
|
# * {Types::GetTableResponse#type #type} => String
|
898
966
|
# * {Types::GetTableResponse#table_arn #table_arn} => String
|
899
967
|
# * {Types::GetTableResponse#namespace #namespace} => Array<String>
|
968
|
+
# * {Types::GetTableResponse#namespace_id #namespace_id} => String
|
900
969
|
# * {Types::GetTableResponse#version_token #version_token} => String
|
901
970
|
# * {Types::GetTableResponse#metadata_location #metadata_location} => String
|
902
971
|
# * {Types::GetTableResponse#warehouse_location #warehouse_location} => String
|
@@ -907,6 +976,7 @@ module Aws::S3Tables
|
|
907
976
|
# * {Types::GetTableResponse#modified_by #modified_by} => String
|
908
977
|
# * {Types::GetTableResponse#owner_account_id #owner_account_id} => String
|
909
978
|
# * {Types::GetTableResponse#format #format} => String
|
979
|
+
# * {Types::GetTableResponse#table_bucket_id #table_bucket_id} => String
|
910
980
|
#
|
911
981
|
# @example Request syntax with placeholder values
|
912
982
|
#
|
@@ -923,6 +993,7 @@ module Aws::S3Tables
|
|
923
993
|
# resp.table_arn #=> String
|
924
994
|
# resp.namespace #=> Array
|
925
995
|
# resp.namespace[0] #=> String
|
996
|
+
# resp.namespace_id #=> String
|
926
997
|
# resp.version_token #=> String
|
927
998
|
# resp.metadata_location #=> String
|
928
999
|
# resp.warehouse_location #=> String
|
@@ -933,6 +1004,7 @@ module Aws::S3Tables
|
|
933
1004
|
# resp.modified_by #=> String
|
934
1005
|
# resp.owner_account_id #=> String
|
935
1006
|
# resp.format #=> String, one of "ICEBERG"
|
1007
|
+
# resp.table_bucket_id #=> String
|
936
1008
|
#
|
937
1009
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTable AWS API Documentation
|
938
1010
|
#
|
@@ -965,6 +1037,7 @@ module Aws::S3Tables
|
|
965
1037
|
# * {Types::GetTableBucketResponse#name #name} => String
|
966
1038
|
# * {Types::GetTableBucketResponse#owner_account_id #owner_account_id} => String
|
967
1039
|
# * {Types::GetTableBucketResponse#created_at #created_at} => Time
|
1040
|
+
# * {Types::GetTableBucketResponse#table_bucket_id #table_bucket_id} => String
|
968
1041
|
#
|
969
1042
|
# @example Request syntax with placeholder values
|
970
1043
|
#
|
@@ -978,6 +1051,7 @@ module Aws::S3Tables
|
|
978
1051
|
# resp.name #=> String
|
979
1052
|
# resp.owner_account_id #=> String
|
980
1053
|
# resp.created_at #=> Time
|
1054
|
+
# resp.table_bucket_id #=> String
|
981
1055
|
#
|
982
1056
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableBucket AWS API Documentation
|
983
1057
|
#
|
@@ -988,6 +1062,40 @@ module Aws::S3Tables
|
|
988
1062
|
req.send_request(options)
|
989
1063
|
end
|
990
1064
|
|
1065
|
+
# Gets the encryption configuration for a table bucket.
|
1066
|
+
#
|
1067
|
+
# Permissions
|
1068
|
+
#
|
1069
|
+
# : You must have the `s3tables:GetTableBucketEncryption` permission to
|
1070
|
+
# use this operation.
|
1071
|
+
#
|
1072
|
+
# @option params [required, String] :table_bucket_arn
|
1073
|
+
# The Amazon Resource Name (ARN) of the table bucket.
|
1074
|
+
#
|
1075
|
+
# @return [Types::GetTableBucketEncryptionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1076
|
+
#
|
1077
|
+
# * {Types::GetTableBucketEncryptionResponse#encryption_configuration #encryption_configuration} => Types::EncryptionConfiguration
|
1078
|
+
#
|
1079
|
+
# @example Request syntax with placeholder values
|
1080
|
+
#
|
1081
|
+
# resp = client.get_table_bucket_encryption({
|
1082
|
+
# table_bucket_arn: "TableBucketARN", # required
|
1083
|
+
# })
|
1084
|
+
#
|
1085
|
+
# @example Response structure
|
1086
|
+
#
|
1087
|
+
# resp.encryption_configuration.sse_algorithm #=> String, one of "AES256", "aws:kms"
|
1088
|
+
# resp.encryption_configuration.kms_key_arn #=> String
|
1089
|
+
#
|
1090
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableBucketEncryption AWS API Documentation
|
1091
|
+
#
|
1092
|
+
# @overload get_table_bucket_encryption(params = {})
|
1093
|
+
# @param [Hash] params ({})
|
1094
|
+
def get_table_bucket_encryption(params = {}, options = {})
|
1095
|
+
req = build_request(:get_table_bucket_encryption, params)
|
1096
|
+
req.send_request(options)
|
1097
|
+
end
|
1098
|
+
|
991
1099
|
# Gets details about a maintenance configuration for a given table
|
992
1100
|
# bucket. For more information, see [Amazon S3 table bucket
|
993
1101
|
# maintenance][1] in the *Amazon Simple Storage Service User Guide*.
|
@@ -1072,6 +1180,49 @@ module Aws::S3Tables
|
|
1072
1180
|
req.send_request(options)
|
1073
1181
|
end
|
1074
1182
|
|
1183
|
+
# Gets the encryption configuration for a table.
|
1184
|
+
#
|
1185
|
+
# Permissions
|
1186
|
+
#
|
1187
|
+
# : You must have the `s3tables:GetTableEncryption` permission to use
|
1188
|
+
# this operation.
|
1189
|
+
#
|
1190
|
+
# @option params [required, String] :table_bucket_arn
|
1191
|
+
# The Amazon Resource Name (ARN) of the table bucket containing the
|
1192
|
+
# table.
|
1193
|
+
#
|
1194
|
+
# @option params [required, String] :namespace
|
1195
|
+
# The namespace associated with the table.
|
1196
|
+
#
|
1197
|
+
# @option params [required, String] :name
|
1198
|
+
# The name of the table.
|
1199
|
+
#
|
1200
|
+
# @return [Types::GetTableEncryptionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1201
|
+
#
|
1202
|
+
# * {Types::GetTableEncryptionResponse#encryption_configuration #encryption_configuration} => Types::EncryptionConfiguration
|
1203
|
+
#
|
1204
|
+
# @example Request syntax with placeholder values
|
1205
|
+
#
|
1206
|
+
# resp = client.get_table_encryption({
|
1207
|
+
# table_bucket_arn: "TableBucketARN", # required
|
1208
|
+
# namespace: "NamespaceName", # required
|
1209
|
+
# name: "TableName", # required
|
1210
|
+
# })
|
1211
|
+
#
|
1212
|
+
# @example Response structure
|
1213
|
+
#
|
1214
|
+
# resp.encryption_configuration.sse_algorithm #=> String, one of "AES256", "aws:kms"
|
1215
|
+
# resp.encryption_configuration.kms_key_arn #=> String
|
1216
|
+
#
|
1217
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableEncryption AWS API Documentation
|
1218
|
+
#
|
1219
|
+
# @overload get_table_encryption(params = {})
|
1220
|
+
# @param [Hash] params ({})
|
1221
|
+
def get_table_encryption(params = {}, options = {})
|
1222
|
+
req = build_request(:get_table_encryption, params)
|
1223
|
+
req.send_request(options)
|
1224
|
+
end
|
1225
|
+
|
1075
1226
|
# Gets details about the maintenance configuration of a table. For more
|
1076
1227
|
# information, see [S3 Tables maintenance][1] in the *Amazon Simple
|
1077
1228
|
# Storage Service User Guide*.
|
@@ -1321,6 +1472,8 @@ module Aws::S3Tables
|
|
1321
1472
|
# resp.namespaces[0].created_at #=> Time
|
1322
1473
|
# resp.namespaces[0].created_by #=> String
|
1323
1474
|
# resp.namespaces[0].owner_account_id #=> String
|
1475
|
+
# resp.namespaces[0].namespace_id #=> String
|
1476
|
+
# resp.namespaces[0].table_bucket_id #=> String
|
1324
1477
|
# resp.continuation_token #=> String
|
1325
1478
|
#
|
1326
1479
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/ListNamespaces AWS API Documentation
|
@@ -1378,6 +1531,7 @@ module Aws::S3Tables
|
|
1378
1531
|
# resp.table_buckets[0].name #=> String
|
1379
1532
|
# resp.table_buckets[0].owner_account_id #=> String
|
1380
1533
|
# resp.table_buckets[0].created_at #=> Time
|
1534
|
+
# resp.table_buckets[0].table_bucket_id #=> String
|
1381
1535
|
# resp.continuation_token #=> String
|
1382
1536
|
#
|
1383
1537
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/ListTableBuckets AWS API Documentation
|
@@ -1446,6 +1600,8 @@ module Aws::S3Tables
|
|
1446
1600
|
# resp.tables[0].table_arn #=> String
|
1447
1601
|
# resp.tables[0].created_at #=> Time
|
1448
1602
|
# resp.tables[0].modified_at #=> Time
|
1603
|
+
# resp.tables[0].namespace_id #=> String
|
1604
|
+
# resp.tables[0].table_bucket_id #=> String
|
1449
1605
|
# resp.continuation_token #=> String
|
1450
1606
|
#
|
1451
1607
|
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/ListTables AWS API Documentation
|
@@ -1457,6 +1613,47 @@ module Aws::S3Tables
|
|
1457
1613
|
req.send_request(options)
|
1458
1614
|
end
|
1459
1615
|
|
1616
|
+
# Sets the encryption configuration for a table bucket.
|
1617
|
+
#
|
1618
|
+
# Permissions
|
1619
|
+
#
|
1620
|
+
# : You must have the `s3tables:PutTableBucketEncryption` permission to
|
1621
|
+
# use this operation.
|
1622
|
+
#
|
1623
|
+
# <note markdown="1"> If you choose SSE-KMS encryption you must grant the S3 Tables
|
1624
|
+
# maintenance principal access to your KMS key. For more information,
|
1625
|
+
# see [Permissions requirements for S3 Tables SSE-KMS
|
1626
|
+
# encryption](AmazonS3/latest/userguide/s3-tables-kms-permissions.html)
|
1627
|
+
#
|
1628
|
+
# </note>
|
1629
|
+
#
|
1630
|
+
# @option params [required, String] :table_bucket_arn
|
1631
|
+
# The Amazon Resource Name (ARN) of the table bucket.
|
1632
|
+
#
|
1633
|
+
# @option params [required, Types::EncryptionConfiguration] :encryption_configuration
|
1634
|
+
# The encryption configuration to apply to the table bucket.
|
1635
|
+
#
|
1636
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
1637
|
+
#
|
1638
|
+
# @example Request syntax with placeholder values
|
1639
|
+
#
|
1640
|
+
# resp = client.put_table_bucket_encryption({
|
1641
|
+
# table_bucket_arn: "TableBucketARN", # required
|
1642
|
+
# encryption_configuration: { # required
|
1643
|
+
# sse_algorithm: "AES256", # required, accepts AES256, aws:kms
|
1644
|
+
# kms_key_arn: "EncryptionConfigurationKmsKeyArnString",
|
1645
|
+
# },
|
1646
|
+
# })
|
1647
|
+
#
|
1648
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/PutTableBucketEncryption AWS API Documentation
|
1649
|
+
#
|
1650
|
+
# @overload put_table_bucket_encryption(params = {})
|
1651
|
+
# @param [Hash] params ({})
|
1652
|
+
def put_table_bucket_encryption(params = {}, options = {})
|
1653
|
+
req = build_request(:put_table_bucket_encryption, params)
|
1654
|
+
req.send_request(options)
|
1655
|
+
end
|
1656
|
+
|
1460
1657
|
# Creates a new maintenance configuration or replaces an existing
|
1461
1658
|
# maintenance configuration for a table bucket. For more information,
|
1462
1659
|
# see [Amazon S3 table bucket maintenance][1] in the *Amazon Simple
|
@@ -1787,7 +1984,7 @@ module Aws::S3Tables
|
|
1787
1984
|
tracer: tracer
|
1788
1985
|
)
|
1789
1986
|
context[:gem_name] = 'aws-sdk-s3tables'
|
1790
|
-
context[:gem_version] = '1.
|
1987
|
+
context[:gem_version] = '1.5.0'
|
1791
1988
|
Seahorse::Client::Request.new(handlers, context)
|
1792
1989
|
end
|
1793
1990
|
|