aws-sdk-s3tables 1.4.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e3233235ff5936e379b1c04e15a1b58dbb7c83300a40bf1099c7758f4a452dff
4
- data.tar.gz: 9f5cb44c47796bd30a0da28afa3bc7f7def76c89b695861ae6a4e3084f8791b2
3
+ metadata.gz: e29b5a48edd9a4cf58f83b64b45d4166942a3a77085e16c84d83e0269c33c04a
4
+ data.tar.gz: 5879126c68ab09a9f48004f5930c49325fa852b813a98c7a5929c2cc54e339ec
5
5
  SHA512:
6
- metadata.gz: bf040e6609d584b776e1b91dea4ef9398bc1dea992146d884659d003b6072b62fc700d7423b8b411ae30cf411962cf34ff548b906a9d63ccab520c67baa8b4dd
7
- data.tar.gz: 66df3bc4c828639c0857b5984057f5a35c5e52b69c2721f058461659d5a9a3b10af7006831863ee5ba987fbf4693e1ac07ed5e1cb569a95b0d2fc560a01b4b3d
6
+ metadata.gz: e5c052b4b1b292b71eef23f80078b76d5543e4eaa3e82735896c518e6539e5fd69ca4bb751053cf1905bb839175e4074fa782e9d8d8e3653953938d9bce4f427
7
+ data.tar.gz: 5a6418a429c61ebf00c9c8af794d49ec7e4ed6cd65b3fff1125ddceeae99e7c5ad05e32c3076a9f461115445d70042f7c170a624f94e91bc5b30cbf97dec629b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.4.0 (2025-02-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.4.0
1
+ 1.5.0
@@ -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
- # : You must have the `s3tables:CreateTable` permission to use this
528
- # operation.
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, you must have the `s3tables:PutTableData` permission
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
- # : You must have the `s3tables:CreateTableBucket` permission to use
603
- # this operation.
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&lt;String&gt;
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.4.0'
1987
+ context[:gem_version] = '1.5.0'
1791
1988
  Seahorse::Client::Request.new(handlers, context)
1792
1989
  end
1793
1990
 
@@ -27,20 +27,27 @@ module Aws::S3Tables
27
27
  CreateTableRequest = Shapes::StructureShape.new(name: 'CreateTableRequest')
28
28
  CreateTableResponse = Shapes::StructureShape.new(name: 'CreateTableResponse')
29
29
  DeleteNamespaceRequest = Shapes::StructureShape.new(name: 'DeleteNamespaceRequest')
30
+ DeleteTableBucketEncryptionRequest = Shapes::StructureShape.new(name: 'DeleteTableBucketEncryptionRequest')
30
31
  DeleteTableBucketPolicyRequest = Shapes::StructureShape.new(name: 'DeleteTableBucketPolicyRequest')
31
32
  DeleteTableBucketRequest = Shapes::StructureShape.new(name: 'DeleteTableBucketRequest')
32
33
  DeleteTablePolicyRequest = Shapes::StructureShape.new(name: 'DeleteTablePolicyRequest')
33
34
  DeleteTableRequest = Shapes::StructureShape.new(name: 'DeleteTableRequest')
35
+ EncryptionConfiguration = Shapes::StructureShape.new(name: 'EncryptionConfiguration')
36
+ EncryptionConfigurationKmsKeyArnString = Shapes::StringShape.new(name: 'EncryptionConfigurationKmsKeyArnString')
34
37
  ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
35
38
  ForbiddenException = Shapes::StructureShape.new(name: 'ForbiddenException')
36
39
  GetNamespaceRequest = Shapes::StructureShape.new(name: 'GetNamespaceRequest')
37
40
  GetNamespaceResponse = Shapes::StructureShape.new(name: 'GetNamespaceResponse')
41
+ GetTableBucketEncryptionRequest = Shapes::StructureShape.new(name: 'GetTableBucketEncryptionRequest')
42
+ GetTableBucketEncryptionResponse = Shapes::StructureShape.new(name: 'GetTableBucketEncryptionResponse')
38
43
  GetTableBucketMaintenanceConfigurationRequest = Shapes::StructureShape.new(name: 'GetTableBucketMaintenanceConfigurationRequest')
39
44
  GetTableBucketMaintenanceConfigurationResponse = Shapes::StructureShape.new(name: 'GetTableBucketMaintenanceConfigurationResponse')
40
45
  GetTableBucketPolicyRequest = Shapes::StructureShape.new(name: 'GetTableBucketPolicyRequest')
41
46
  GetTableBucketPolicyResponse = Shapes::StructureShape.new(name: 'GetTableBucketPolicyResponse')
42
47
  GetTableBucketRequest = Shapes::StructureShape.new(name: 'GetTableBucketRequest')
43
48
  GetTableBucketResponse = Shapes::StructureShape.new(name: 'GetTableBucketResponse')
49
+ GetTableEncryptionRequest = Shapes::StructureShape.new(name: 'GetTableEncryptionRequest')
50
+ GetTableEncryptionResponse = Shapes::StructureShape.new(name: 'GetTableEncryptionResponse')
44
51
  GetTableMaintenanceConfigurationRequest = Shapes::StructureShape.new(name: 'GetTableMaintenanceConfigurationRequest')
45
52
  GetTableMaintenanceConfigurationResponse = Shapes::StructureShape.new(name: 'GetTableMaintenanceConfigurationResponse')
46
53
  GetTableMaintenanceJobStatusRequest = Shapes::StructureShape.new(name: 'GetTableMaintenanceJobStatusRequest')
@@ -72,6 +79,7 @@ module Aws::S3Tables
72
79
  ListTablesResponse = Shapes::StructureShape.new(name: 'ListTablesResponse')
73
80
  MaintenanceStatus = Shapes::StringShape.new(name: 'MaintenanceStatus')
74
81
  MetadataLocation = Shapes::StringShape.new(name: 'MetadataLocation')
82
+ NamespaceId = Shapes::StringShape.new(name: 'NamespaceId')
75
83
  NamespaceList = Shapes::ListShape.new(name: 'NamespaceList')
76
84
  NamespaceName = Shapes::StringShape.new(name: 'NamespaceName')
77
85
  NamespaceSummary = Shapes::StructureShape.new(name: 'NamespaceSummary')
@@ -80,18 +88,21 @@ module Aws::S3Tables
80
88
  NotFoundException = Shapes::StructureShape.new(name: 'NotFoundException')
81
89
  OpenTableFormat = Shapes::StringShape.new(name: 'OpenTableFormat')
82
90
  PositiveInteger = Shapes::IntegerShape.new(name: 'PositiveInteger')
91
+ PutTableBucketEncryptionRequest = Shapes::StructureShape.new(name: 'PutTableBucketEncryptionRequest')
83
92
  PutTableBucketMaintenanceConfigurationRequest = Shapes::StructureShape.new(name: 'PutTableBucketMaintenanceConfigurationRequest')
84
93
  PutTableBucketPolicyRequest = Shapes::StructureShape.new(name: 'PutTableBucketPolicyRequest')
85
94
  PutTableMaintenanceConfigurationRequest = Shapes::StructureShape.new(name: 'PutTableMaintenanceConfigurationRequest')
86
95
  PutTablePolicyRequest = Shapes::StructureShape.new(name: 'PutTablePolicyRequest')
87
96
  RenameTableRequest = Shapes::StructureShape.new(name: 'RenameTableRequest')
88
97
  ResourcePolicy = Shapes::StringShape.new(name: 'ResourcePolicy')
98
+ SSEAlgorithm = Shapes::StringShape.new(name: 'SSEAlgorithm')
89
99
  SchemaField = Shapes::StructureShape.new(name: 'SchemaField')
90
100
  SchemaFieldList = Shapes::ListShape.new(name: 'SchemaFieldList')
91
101
  String = Shapes::StringShape.new(name: 'String')
92
102
  SyntheticTimestamp_date_time = Shapes::TimestampShape.new(name: 'SyntheticTimestamp_date_time', timestampFormat: "iso8601")
93
103
  TableARN = Shapes::StringShape.new(name: 'TableARN')
94
104
  TableBucketARN = Shapes::StringShape.new(name: 'TableBucketARN')
105
+ TableBucketId = Shapes::StringShape.new(name: 'TableBucketId')
95
106
  TableBucketMaintenanceConfiguration = Shapes::MapShape.new(name: 'TableBucketMaintenanceConfiguration')
96
107
  TableBucketMaintenanceConfigurationValue = Shapes::StructureShape.new(name: 'TableBucketMaintenanceConfigurationValue')
97
108
  TableBucketMaintenanceSettings = Shapes::UnionShape.new(name: 'TableBucketMaintenanceSettings')
@@ -137,6 +148,7 @@ module Aws::S3Tables
137
148
  CreateNamespaceResponse.struct_class = Types::CreateNamespaceResponse
138
149
 
139
150
  CreateTableBucketRequest.add_member(:name, Shapes::ShapeRef.new(shape: TableBucketName, required: true, location_name: "name"))
151
+ CreateTableBucketRequest.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, location_name: "encryptionConfiguration"))
140
152
  CreateTableBucketRequest.struct_class = Types::CreateTableBucketRequest
141
153
 
142
154
  CreateTableBucketResponse.add_member(:arn, Shapes::ShapeRef.new(shape: TableBucketARN, required: true, location_name: "arn"))
@@ -147,6 +159,7 @@ module Aws::S3Tables
147
159
  CreateTableRequest.add_member(:name, Shapes::ShapeRef.new(shape: TableName, required: true, location_name: "name"))
148
160
  CreateTableRequest.add_member(:format, Shapes::ShapeRef.new(shape: OpenTableFormat, required: true, location_name: "format"))
149
161
  CreateTableRequest.add_member(:metadata, Shapes::ShapeRef.new(shape: TableMetadata, location_name: "metadata"))
162
+ CreateTableRequest.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, location_name: "encryptionConfiguration"))
150
163
  CreateTableRequest.struct_class = Types::CreateTableRequest
151
164
 
152
165
  CreateTableResponse.add_member(:table_arn, Shapes::ShapeRef.new(shape: TableARN, required: true, location_name: "tableARN"))
@@ -157,6 +170,9 @@ module Aws::S3Tables
157
170
  DeleteNamespaceRequest.add_member(:namespace, Shapes::ShapeRef.new(shape: NamespaceName, required: true, location: "uri", location_name: "namespace"))
158
171
  DeleteNamespaceRequest.struct_class = Types::DeleteNamespaceRequest
159
172
 
173
+ DeleteTableBucketEncryptionRequest.add_member(:table_bucket_arn, Shapes::ShapeRef.new(shape: TableBucketARN, required: true, location: "uri", location_name: "tableBucketARN"))
174
+ DeleteTableBucketEncryptionRequest.struct_class = Types::DeleteTableBucketEncryptionRequest
175
+
160
176
  DeleteTableBucketPolicyRequest.add_member(:table_bucket_arn, Shapes::ShapeRef.new(shape: TableBucketARN, required: true, location: "uri", location_name: "tableBucketARN"))
161
177
  DeleteTableBucketPolicyRequest.struct_class = Types::DeleteTableBucketPolicyRequest
162
178
 
@@ -174,6 +190,10 @@ module Aws::S3Tables
174
190
  DeleteTableRequest.add_member(:version_token, Shapes::ShapeRef.new(shape: VersionToken, location: "querystring", location_name: "versionToken"))
175
191
  DeleteTableRequest.struct_class = Types::DeleteTableRequest
176
192
 
193
+ EncryptionConfiguration.add_member(:sse_algorithm, Shapes::ShapeRef.new(shape: SSEAlgorithm, required: true, location_name: "sseAlgorithm"))
194
+ EncryptionConfiguration.add_member(:kms_key_arn, Shapes::ShapeRef.new(shape: EncryptionConfigurationKmsKeyArnString, location_name: "kmsKeyArn"))
195
+ EncryptionConfiguration.struct_class = Types::EncryptionConfiguration
196
+
177
197
  ForbiddenException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
178
198
  ForbiddenException.struct_class = Types::ForbiddenException
179
199
 
@@ -185,8 +205,16 @@ module Aws::S3Tables
185
205
  GetNamespaceResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "createdAt"))
186
206
  GetNamespaceResponse.add_member(:created_by, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "createdBy"))
187
207
  GetNamespaceResponse.add_member(:owner_account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "ownerAccountId"))
208
+ GetNamespaceResponse.add_member(:namespace_id, Shapes::ShapeRef.new(shape: NamespaceId, location_name: "namespaceId"))
209
+ GetNamespaceResponse.add_member(:table_bucket_id, Shapes::ShapeRef.new(shape: TableBucketId, location_name: "tableBucketId"))
188
210
  GetNamespaceResponse.struct_class = Types::GetNamespaceResponse
189
211
 
212
+ GetTableBucketEncryptionRequest.add_member(:table_bucket_arn, Shapes::ShapeRef.new(shape: TableBucketARN, required: true, location: "uri", location_name: "tableBucketARN"))
213
+ GetTableBucketEncryptionRequest.struct_class = Types::GetTableBucketEncryptionRequest
214
+
215
+ GetTableBucketEncryptionResponse.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, required: true, location_name: "encryptionConfiguration"))
216
+ GetTableBucketEncryptionResponse.struct_class = Types::GetTableBucketEncryptionResponse
217
+
190
218
  GetTableBucketMaintenanceConfigurationRequest.add_member(:table_bucket_arn, Shapes::ShapeRef.new(shape: TableBucketARN, required: true, location: "uri", location_name: "tableBucketARN"))
191
219
  GetTableBucketMaintenanceConfigurationRequest.struct_class = Types::GetTableBucketMaintenanceConfigurationRequest
192
220
 
@@ -207,8 +235,17 @@ module Aws::S3Tables
207
235
  GetTableBucketResponse.add_member(:name, Shapes::ShapeRef.new(shape: TableBucketName, required: true, location_name: "name"))
208
236
  GetTableBucketResponse.add_member(:owner_account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "ownerAccountId"))
209
237
  GetTableBucketResponse.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "createdAt"))
238
+ GetTableBucketResponse.add_member(:table_bucket_id, Shapes::ShapeRef.new(shape: TableBucketId, location_name: "tableBucketId"))
210
239
  GetTableBucketResponse.struct_class = Types::GetTableBucketResponse
211
240
 
241
+ GetTableEncryptionRequest.add_member(:table_bucket_arn, Shapes::ShapeRef.new(shape: TableBucketARN, required: true, location: "uri", location_name: "tableBucketARN"))
242
+ GetTableEncryptionRequest.add_member(:namespace, Shapes::ShapeRef.new(shape: NamespaceName, required: true, location: "uri", location_name: "namespace"))
243
+ GetTableEncryptionRequest.add_member(:name, Shapes::ShapeRef.new(shape: TableName, required: true, location: "uri", location_name: "name"))
244
+ GetTableEncryptionRequest.struct_class = Types::GetTableEncryptionRequest
245
+
246
+ GetTableEncryptionResponse.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, required: true, location_name: "encryptionConfiguration"))
247
+ GetTableEncryptionResponse.struct_class = Types::GetTableEncryptionResponse
248
+
212
249
  GetTableMaintenanceConfigurationRequest.add_member(:table_bucket_arn, Shapes::ShapeRef.new(shape: TableBucketARN, required: true, location: "uri", location_name: "tableBucketARN"))
213
250
  GetTableMaintenanceConfigurationRequest.add_member(:namespace, Shapes::ShapeRef.new(shape: NamespaceName, required: true, location: "uri", location_name: "namespace"))
214
251
  GetTableMaintenanceConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: TableName, required: true, location: "uri", location_name: "name"))
@@ -254,6 +291,7 @@ module Aws::S3Tables
254
291
  GetTableResponse.add_member(:type, Shapes::ShapeRef.new(shape: TableType, required: true, location_name: "type"))
255
292
  GetTableResponse.add_member(:table_arn, Shapes::ShapeRef.new(shape: TableARN, required: true, location_name: "tableARN"))
256
293
  GetTableResponse.add_member(:namespace, Shapes::ShapeRef.new(shape: NamespaceList, required: true, location_name: "namespace"))
294
+ GetTableResponse.add_member(:namespace_id, Shapes::ShapeRef.new(shape: NamespaceId, location_name: "namespaceId"))
257
295
  GetTableResponse.add_member(:version_token, Shapes::ShapeRef.new(shape: VersionToken, required: true, location_name: "versionToken"))
258
296
  GetTableResponse.add_member(:metadata_location, Shapes::ShapeRef.new(shape: MetadataLocation, location_name: "metadataLocation"))
259
297
  GetTableResponse.add_member(:warehouse_location, Shapes::ShapeRef.new(shape: WarehouseLocation, required: true, location_name: "warehouseLocation"))
@@ -264,6 +302,7 @@ module Aws::S3Tables
264
302
  GetTableResponse.add_member(:modified_by, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "modifiedBy"))
265
303
  GetTableResponse.add_member(:owner_account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "ownerAccountId"))
266
304
  GetTableResponse.add_member(:format, Shapes::ShapeRef.new(shape: OpenTableFormat, required: true, location_name: "format"))
305
+ GetTableResponse.add_member(:table_bucket_id, Shapes::ShapeRef.new(shape: TableBucketId, location_name: "tableBucketId"))
267
306
  GetTableResponse.struct_class = Types::GetTableResponse
268
307
 
269
308
  IcebergCompactionSettings.add_member(:target_file_size_mb, Shapes::ShapeRef.new(shape: PositiveInteger, location_name: "targetFileSizeMB"))
@@ -322,6 +361,8 @@ module Aws::S3Tables
322
361
  NamespaceSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "createdAt"))
323
362
  NamespaceSummary.add_member(:created_by, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "createdBy"))
324
363
  NamespaceSummary.add_member(:owner_account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "ownerAccountId"))
364
+ NamespaceSummary.add_member(:namespace_id, Shapes::ShapeRef.new(shape: NamespaceId, location_name: "namespaceId"))
365
+ NamespaceSummary.add_member(:table_bucket_id, Shapes::ShapeRef.new(shape: TableBucketId, location_name: "tableBucketId"))
325
366
  NamespaceSummary.struct_class = Types::NamespaceSummary
326
367
 
327
368
  NamespaceSummaryList.member = Shapes::ShapeRef.new(shape: NamespaceSummary)
@@ -329,6 +370,10 @@ module Aws::S3Tables
329
370
  NotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, location_name: "message"))
330
371
  NotFoundException.struct_class = Types::NotFoundException
331
372
 
373
+ PutTableBucketEncryptionRequest.add_member(:table_bucket_arn, Shapes::ShapeRef.new(shape: TableBucketARN, required: true, location: "uri", location_name: "tableBucketARN"))
374
+ PutTableBucketEncryptionRequest.add_member(:encryption_configuration, Shapes::ShapeRef.new(shape: EncryptionConfiguration, required: true, location_name: "encryptionConfiguration"))
375
+ PutTableBucketEncryptionRequest.struct_class = Types::PutTableBucketEncryptionRequest
376
+
332
377
  PutTableBucketMaintenanceConfigurationRequest.add_member(:table_bucket_arn, Shapes::ShapeRef.new(shape: TableBucketARN, required: true, location: "uri", location_name: "tableBucketARN"))
333
378
  PutTableBucketMaintenanceConfigurationRequest.add_member(:type, Shapes::ShapeRef.new(shape: TableBucketMaintenanceType, required: true, location: "uri", location_name: "type"))
334
379
  PutTableBucketMaintenanceConfigurationRequest.add_member(:value, Shapes::ShapeRef.new(shape: TableBucketMaintenanceConfigurationValue, required: true, location_name: "value"))
@@ -383,6 +428,7 @@ module Aws::S3Tables
383
428
  TableBucketSummary.add_member(:name, Shapes::ShapeRef.new(shape: TableBucketName, required: true, location_name: "name"))
384
429
  TableBucketSummary.add_member(:owner_account_id, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "ownerAccountId"))
385
430
  TableBucketSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "createdAt"))
431
+ TableBucketSummary.add_member(:table_bucket_id, Shapes::ShapeRef.new(shape: TableBucketId, location_name: "tableBucketId"))
386
432
  TableBucketSummary.struct_class = Types::TableBucketSummary
387
433
 
388
434
  TableBucketSummaryList.member = Shapes::ShapeRef.new(shape: TableBucketSummary)
@@ -422,6 +468,8 @@ module Aws::S3Tables
422
468
  TableSummary.add_member(:table_arn, Shapes::ShapeRef.new(shape: TableARN, required: true, location_name: "tableARN"))
423
469
  TableSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "createdAt"))
424
470
  TableSummary.add_member(:modified_at, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "modifiedAt"))
471
+ TableSummary.add_member(:namespace_id, Shapes::ShapeRef.new(shape: NamespaceId, location_name: "namespaceId"))
472
+ TableSummary.add_member(:table_bucket_id, Shapes::ShapeRef.new(shape: TableBucketId, location_name: "tableBucketId"))
425
473
  TableSummary.struct_class = Types::TableSummary
426
474
 
427
475
  TableSummaryList.member = Shapes::ShapeRef.new(shape: TableSummary)
@@ -546,6 +594,20 @@ module Aws::S3Tables
546
594
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
547
595
  end)
548
596
 
597
+ api.add_operation(:delete_table_bucket_encryption, Seahorse::Model::Operation.new.tap do |o|
598
+ o.name = "DeleteTableBucketEncryption"
599
+ o.http_method = "DELETE"
600
+ o.http_request_uri = "/buckets/{tableBucketARN}/encryption"
601
+ o.input = Shapes::ShapeRef.new(shape: DeleteTableBucketEncryptionRequest)
602
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
603
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
604
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
605
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
606
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
607
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
608
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
609
+ end)
610
+
549
611
  api.add_operation(:delete_table_bucket_policy, Seahorse::Model::Operation.new.tap do |o|
550
612
  o.name = "DeleteTableBucketPolicy"
551
613
  o.http_method = "DELETE"
@@ -619,6 +681,20 @@ module Aws::S3Tables
619
681
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
620
682
  end)
621
683
 
684
+ api.add_operation(:get_table_bucket_encryption, Seahorse::Model::Operation.new.tap do |o|
685
+ o.name = "GetTableBucketEncryption"
686
+ o.http_method = "GET"
687
+ o.http_request_uri = "/buckets/{tableBucketARN}/encryption"
688
+ o.input = Shapes::ShapeRef.new(shape: GetTableBucketEncryptionRequest)
689
+ o.output = Shapes::ShapeRef.new(shape: GetTableBucketEncryptionResponse)
690
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
691
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
692
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
693
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
694
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
695
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
696
+ end)
697
+
622
698
  api.add_operation(:get_table_bucket_maintenance_configuration, Seahorse::Model::Operation.new.tap do |o|
623
699
  o.name = "GetTableBucketMaintenanceConfiguration"
624
700
  o.http_method = "GET"
@@ -647,6 +723,20 @@ module Aws::S3Tables
647
723
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
648
724
  end)
649
725
 
726
+ api.add_operation(:get_table_encryption, Seahorse::Model::Operation.new.tap do |o|
727
+ o.name = "GetTableEncryption"
728
+ o.http_method = "GET"
729
+ o.http_request_uri = "/tables/{tableBucketARN}/{namespace}/{name}/encryption"
730
+ o.input = Shapes::ShapeRef.new(shape: GetTableEncryptionRequest)
731
+ o.output = Shapes::ShapeRef.new(shape: GetTableEncryptionResponse)
732
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
733
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
734
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
735
+ o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
736
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
737
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
738
+ end)
739
+
650
740
  api.add_operation(:get_table_maintenance_configuration, Seahorse::Model::Operation.new.tap do |o|
651
741
  o.name = "GetTableMaintenanceConfiguration"
652
742
  o.http_method = "GET"
@@ -765,6 +855,20 @@ module Aws::S3Tables
765
855
  )
766
856
  end)
767
857
 
858
+ api.add_operation(:put_table_bucket_encryption, Seahorse::Model::Operation.new.tap do |o|
859
+ o.name = "PutTableBucketEncryption"
860
+ o.http_method = "PUT"
861
+ o.http_request_uri = "/buckets/{tableBucketARN}/encryption"
862
+ o.input = Shapes::ShapeRef.new(shape: PutTableBucketEncryptionRequest)
863
+ o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
864
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
865
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
866
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
867
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
868
+ o.errors << Shapes::ShapeRef.new(shape: ConflictException)
869
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
870
+ end)
871
+
768
872
  api.add_operation(:put_table_bucket_maintenance_configuration, Seahorse::Model::Operation.new.tap do |o|
769
873
  o.name = "PutTableBucketMaintenanceConfiguration"
770
874
  o.http_method = "PUT"
@@ -91,10 +91,19 @@ module Aws::S3Tables
91
91
  # The name for the table bucket.
92
92
  # @return [String]
93
93
  #
94
+ # @!attribute [rw] encryption_configuration
95
+ # The encryption configuration to use for the table bucket. This
96
+ # configuration specifies the default encryption settings that will be
97
+ # applied to all tables created in this bucket unless overridden at
98
+ # the table level. The configuration includes the encryption algorithm
99
+ # and, if using SSE-KMS, the KMS key to use.
100
+ # @return [Types::EncryptionConfiguration]
101
+ #
94
102
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/CreateTableBucketRequest AWS API Documentation
95
103
  #
96
104
  class CreateTableBucketRequest < Struct.new(
97
- :name)
105
+ :name,
106
+ :encryption_configuration)
98
107
  SENSITIVE = []
99
108
  include Aws::Structure
100
109
  end
@@ -132,6 +141,22 @@ module Aws::S3Tables
132
141
  # The metadata for the table.
133
142
  # @return [Types::TableMetadata]
134
143
  #
144
+ # @!attribute [rw] encryption_configuration
145
+ # The encryption configuration to use for the table. This
146
+ # configuration specifies the encryption algorithm and, if using
147
+ # SSE-KMS, the KMS key to use for encrypting the table.
148
+ #
149
+ # <note markdown="1"> If you choose SSE-KMS encryption you must grant the S3 Tables
150
+ # maintenance principal access to your KMS key. For more information,
151
+ # see [Permissions requirements for S3 Tables SSE-KMS encryption][1].
152
+ #
153
+ # </note>
154
+ #
155
+ #
156
+ #
157
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-kms-permissions.html
158
+ # @return [Types::EncryptionConfiguration]
159
+ #
135
160
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/CreateTableRequest AWS API Documentation
136
161
  #
137
162
  class CreateTableRequest < Struct.new(
@@ -139,7 +164,8 @@ module Aws::S3Tables
139
164
  :namespace,
140
165
  :name,
141
166
  :format,
142
- :metadata)
167
+ :metadata,
168
+ :encryption_configuration)
143
169
  SENSITIVE = []
144
170
  include Aws::Structure
145
171
  end
@@ -179,6 +205,18 @@ module Aws::S3Tables
179
205
  include Aws::Structure
180
206
  end
181
207
 
208
+ # @!attribute [rw] table_bucket_arn
209
+ # The Amazon Resource Name (ARN) of the table bucket.
210
+ # @return [String]
211
+ #
212
+ # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/DeleteTableBucketEncryptionRequest AWS API Documentation
213
+ #
214
+ class DeleteTableBucketEncryptionRequest < Struct.new(
215
+ :table_bucket_arn)
216
+ SENSITIVE = []
217
+ include Aws::Structure
218
+ end
219
+
182
220
  # @!attribute [rw] table_bucket_arn
183
221
  # The Amazon Resource Name (ARN) of the table bucket.
184
222
  # @return [String]
@@ -254,6 +292,37 @@ module Aws::S3Tables
254
292
  include Aws::Structure
255
293
  end
256
294
 
295
+ # Configuration specifying how data should be encrypted. This structure
296
+ # defines the encryption algorithm and optional KMS key to be used for
297
+ # server-side encryption.
298
+ #
299
+ # @!attribute [rw] sse_algorithm
300
+ # The server-side encryption algorithm to use. Valid values are
301
+ # `AES256` for S3-managed encryption keys, or `aws:kms` for Amazon Web
302
+ # Services KMS-managed encryption keys. If you choose SSE-KMS
303
+ # encryption you must grant the S3 Tables maintenance principal access
304
+ # to your KMS key. For more information, see [Permissions requirements
305
+ # for S3 Tables SSE-KMS encryption][1].
306
+ #
307
+ #
308
+ #
309
+ # [1]: https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-kms-permissions.html
310
+ # @return [String]
311
+ #
312
+ # @!attribute [rw] kms_key_arn
313
+ # The Amazon Resource Name (ARN) of the KMS key to use for encryption.
314
+ # This field is required only when `sseAlgorithm` is set to `aws:kms`.
315
+ # @return [String]
316
+ #
317
+ # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/EncryptionConfiguration AWS API Documentation
318
+ #
319
+ class EncryptionConfiguration < Struct.new(
320
+ :sse_algorithm,
321
+ :kms_key_arn)
322
+ SENSITIVE = []
323
+ include Aws::Structure
324
+ end
325
+
257
326
  # The caller isn't authorized to make the request.
258
327
  #
259
328
  # @!attribute [rw] message
@@ -300,13 +369,47 @@ module Aws::S3Tables
300
369
  # The ID of the account that owns the namespcace.
301
370
  # @return [String]
302
371
  #
372
+ # @!attribute [rw] namespace_id
373
+ # The unique identifier of the namespace.
374
+ # @return [String]
375
+ #
376
+ # @!attribute [rw] table_bucket_id
377
+ # The unique identifier of the table bucket containing this namespace.
378
+ # @return [String]
379
+ #
303
380
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetNamespaceResponse AWS API Documentation
304
381
  #
305
382
  class GetNamespaceResponse < Struct.new(
306
383
  :namespace,
307
384
  :created_at,
308
385
  :created_by,
309
- :owner_account_id)
386
+ :owner_account_id,
387
+ :namespace_id,
388
+ :table_bucket_id)
389
+ SENSITIVE = []
390
+ include Aws::Structure
391
+ end
392
+
393
+ # @!attribute [rw] table_bucket_arn
394
+ # The Amazon Resource Name (ARN) of the table bucket.
395
+ # @return [String]
396
+ #
397
+ # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableBucketEncryptionRequest AWS API Documentation
398
+ #
399
+ class GetTableBucketEncryptionRequest < Struct.new(
400
+ :table_bucket_arn)
401
+ SENSITIVE = []
402
+ include Aws::Structure
403
+ end
404
+
405
+ # @!attribute [rw] encryption_configuration
406
+ # The encryption configuration for the table bucket.
407
+ # @return [Types::EncryptionConfiguration]
408
+ #
409
+ # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableBucketEncryptionResponse AWS API Documentation
410
+ #
411
+ class GetTableBucketEncryptionResponse < Struct.new(
412
+ :encryption_configuration)
310
413
  SENSITIVE = []
311
414
  include Aws::Structure
312
415
  end
@@ -394,13 +497,53 @@ module Aws::S3Tables
394
497
  # The date and time the table bucket was created.
395
498
  # @return [Time]
396
499
  #
500
+ # @!attribute [rw] table_bucket_id
501
+ # The unique identifier of the table bucket.
502
+ # @return [String]
503
+ #
397
504
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableBucketResponse AWS API Documentation
398
505
  #
399
506
  class GetTableBucketResponse < Struct.new(
400
507
  :arn,
401
508
  :name,
402
509
  :owner_account_id,
403
- :created_at)
510
+ :created_at,
511
+ :table_bucket_id)
512
+ SENSITIVE = []
513
+ include Aws::Structure
514
+ end
515
+
516
+ # @!attribute [rw] table_bucket_arn
517
+ # The Amazon Resource Name (ARN) of the table bucket containing the
518
+ # table.
519
+ # @return [String]
520
+ #
521
+ # @!attribute [rw] namespace
522
+ # The namespace associated with the table.
523
+ # @return [String]
524
+ #
525
+ # @!attribute [rw] name
526
+ # The name of the table.
527
+ # @return [String]
528
+ #
529
+ # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableEncryptionRequest AWS API Documentation
530
+ #
531
+ class GetTableEncryptionRequest < Struct.new(
532
+ :table_bucket_arn,
533
+ :namespace,
534
+ :name)
535
+ SENSITIVE = []
536
+ include Aws::Structure
537
+ end
538
+
539
+ # @!attribute [rw] encryption_configuration
540
+ # The encryption configuration for the table.
541
+ # @return [Types::EncryptionConfiguration]
542
+ #
543
+ # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableEncryptionResponse AWS API Documentation
544
+ #
545
+ class GetTableEncryptionResponse < Struct.new(
546
+ :encryption_configuration)
404
547
  SENSITIVE = []
405
548
  include Aws::Structure
406
549
  end
@@ -601,6 +744,10 @@ module Aws::S3Tables
601
744
  # The namespace associated with the table.
602
745
  # @return [Array<String>]
603
746
  #
747
+ # @!attribute [rw] namespace_id
748
+ # The unique identifier of the namespace containing this table.
749
+ # @return [String]
750
+ #
604
751
  # @!attribute [rw] version_token
605
752
  # The version token of the table.
606
753
  # @return [String]
@@ -641,6 +788,10 @@ module Aws::S3Tables
641
788
  # The format of the table.
642
789
  # @return [String]
643
790
  #
791
+ # @!attribute [rw] table_bucket_id
792
+ # The unique identifier of the table bucket containing this table.
793
+ # @return [String]
794
+ #
644
795
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/GetTableResponse AWS API Documentation
645
796
  #
646
797
  class GetTableResponse < Struct.new(
@@ -648,6 +799,7 @@ module Aws::S3Tables
648
799
  :type,
649
800
  :table_arn,
650
801
  :namespace,
802
+ :namespace_id,
651
803
  :version_token,
652
804
  :metadata_location,
653
805
  :warehouse_location,
@@ -657,7 +809,8 @@ module Aws::S3Tables
657
809
  :modified_at,
658
810
  :modified_by,
659
811
  :owner_account_id,
660
- :format)
812
+ :format,
813
+ :table_bucket_id)
661
814
  SENSITIVE = []
662
815
  include Aws::Structure
663
816
  end
@@ -732,12 +885,12 @@ module Aws::S3Tables
732
885
  #
733
886
  # @!attribute [rw] unreferenced_days
734
887
  # The number of days an object has to be unreferenced before it is
735
- # marked as non-current. </p>
888
+ # marked as non-current.
736
889
  # @return [Integer]
737
890
  #
738
891
  # @!attribute [rw] non_current_days
739
892
  # The number of days an object has to be non-current before it is
740
- # deleted. </p>
893
+ # deleted.
741
894
  # @return [Integer]
742
895
  #
743
896
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/IcebergUnreferencedFileRemovalSettings AWS API Documentation
@@ -923,13 +1076,24 @@ module Aws::S3Tables
923
1076
  # The ID of the account that owns the namespace.
924
1077
  # @return [String]
925
1078
  #
1079
+ # @!attribute [rw] namespace_id
1080
+ # The system-assigned unique identifier for the namespace.
1081
+ # @return [String]
1082
+ #
1083
+ # @!attribute [rw] table_bucket_id
1084
+ # The system-assigned unique identifier for the table bucket that
1085
+ # contains this namespace.
1086
+ # @return [String]
1087
+ #
926
1088
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/NamespaceSummary AWS API Documentation
927
1089
  #
928
1090
  class NamespaceSummary < Struct.new(
929
1091
  :namespace,
930
1092
  :created_at,
931
1093
  :created_by,
932
- :owner_account_id)
1094
+ :owner_account_id,
1095
+ :namespace_id,
1096
+ :table_bucket_id)
933
1097
  SENSITIVE = []
934
1098
  include Aws::Structure
935
1099
  end
@@ -948,6 +1112,23 @@ module Aws::S3Tables
948
1112
  include Aws::Structure
949
1113
  end
950
1114
 
1115
+ # @!attribute [rw] table_bucket_arn
1116
+ # The Amazon Resource Name (ARN) of the table bucket.
1117
+ # @return [String]
1118
+ #
1119
+ # @!attribute [rw] encryption_configuration
1120
+ # The encryption configuration to apply to the table bucket.
1121
+ # @return [Types::EncryptionConfiguration]
1122
+ #
1123
+ # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/PutTableBucketEncryptionRequest AWS API Documentation
1124
+ #
1125
+ class PutTableBucketEncryptionRequest < Struct.new(
1126
+ :table_bucket_arn,
1127
+ :encryption_configuration)
1128
+ SENSITIVE = []
1129
+ include Aws::Structure
1130
+ end
1131
+
951
1132
  # @!attribute [rw] table_bucket_arn
952
1133
  # The Amazon Resource Name (ARN) of the table bucket associated with
953
1134
  # the maintenance configuration.
@@ -1182,13 +1363,18 @@ module Aws::S3Tables
1182
1363
  # The date and time the table bucket was created at.
1183
1364
  # @return [Time]
1184
1365
  #
1366
+ # @!attribute [rw] table_bucket_id
1367
+ # The system-assigned unique identifier for the table bucket.
1368
+ # @return [String]
1369
+ #
1185
1370
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/TableBucketSummary AWS API Documentation
1186
1371
  #
1187
1372
  class TableBucketSummary < Struct.new(
1188
1373
  :arn,
1189
1374
  :name,
1190
1375
  :owner_account_id,
1191
- :created_at)
1376
+ :created_at,
1377
+ :table_bucket_id)
1192
1378
  SENSITIVE = []
1193
1379
  include Aws::Structure
1194
1380
  end
@@ -1316,6 +1502,14 @@ module Aws::S3Tables
1316
1502
  # The date and time the table was last modified at.
1317
1503
  # @return [Time]
1318
1504
  #
1505
+ # @!attribute [rw] namespace_id
1506
+ # The unique identifier for the namespace that contains this table.
1507
+ # @return [String]
1508
+ #
1509
+ # @!attribute [rw] table_bucket_id
1510
+ # The unique identifier for the table bucket that contains this table.
1511
+ # @return [String]
1512
+ #
1319
1513
  # @see http://docs.aws.amazon.com/goto/WebAPI/s3tables-2018-05-10/TableSummary AWS API Documentation
1320
1514
  #
1321
1515
  class TableSummary < Struct.new(
@@ -1324,7 +1518,9 @@ module Aws::S3Tables
1324
1518
  :type,
1325
1519
  :table_arn,
1326
1520
  :created_at,
1327
- :modified_at)
1521
+ :modified_at,
1522
+ :namespace_id,
1523
+ :table_bucket_id)
1328
1524
  SENSITIVE = []
1329
1525
  include Aws::Structure
1330
1526
  end
@@ -55,7 +55,7 @@ module Aws::S3Tables
55
55
  autoload :EndpointProvider, 'aws-sdk-s3tables/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-s3tables/endpoints'
57
57
 
58
- GEM_VERSION = '1.4.0'
58
+ GEM_VERSION = '1.5.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -112,6 +112,10 @@ module Aws
112
112
  ]
113
113
  }
114
114
  }?
115
+ },
116
+ ?encryption_configuration: {
117
+ sse_algorithm: ("AES256" | "aws:kms"),
118
+ kms_key_arn: ::String?
115
119
  }
116
120
  ) -> _CreateTableResponseSuccess
117
121
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTableResponseSuccess
@@ -122,7 +126,11 @@ module Aws
122
126
  end
123
127
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#create_table_bucket-instance_method
124
128
  def create_table_bucket: (
125
- name: ::String
129
+ name: ::String,
130
+ ?encryption_configuration: {
131
+ sse_algorithm: ("AES256" | "aws:kms"),
132
+ kms_key_arn: ::String?
133
+ }
126
134
  ) -> _CreateTableBucketResponseSuccess
127
135
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTableBucketResponseSuccess
128
136
 
@@ -148,6 +156,12 @@ module Aws
148
156
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
149
157
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
150
158
 
159
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#delete_table_bucket_encryption-instance_method
160
+ def delete_table_bucket_encryption: (
161
+ table_bucket_arn: ::String
162
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
163
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
164
+
151
165
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#delete_table_bucket_policy-instance_method
152
166
  def delete_table_bucket_policy: (
153
167
  table_bucket_arn: ::String
@@ -168,6 +182,8 @@ module Aws
168
182
  def created_at: () -> ::Time
169
183
  def created_by: () -> ::String
170
184
  def owner_account_id: () -> ::String
185
+ def namespace_id: () -> ::String
186
+ def table_bucket_id: () -> ::String
171
187
  end
172
188
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#get_namespace-instance_method
173
189
  def get_namespace: (
@@ -182,6 +198,7 @@ module Aws
182
198
  def type: () -> ("customer" | "aws")
183
199
  def table_arn: () -> ::String
184
200
  def namespace: () -> ::Array[::String]
201
+ def namespace_id: () -> ::String
185
202
  def version_token: () -> ::String
186
203
  def metadata_location: () -> ::String
187
204
  def warehouse_location: () -> ::String
@@ -192,6 +209,7 @@ module Aws
192
209
  def modified_by: () -> ::String
193
210
  def owner_account_id: () -> ::String
194
211
  def format: () -> ("ICEBERG")
212
+ def table_bucket_id: () -> ::String
195
213
  end
196
214
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#get_table-instance_method
197
215
  def get_table: (
@@ -207,6 +225,7 @@ module Aws
207
225
  def name: () -> ::String
208
226
  def owner_account_id: () -> ::String
209
227
  def created_at: () -> ::Time
228
+ def table_bucket_id: () -> ::String
210
229
  end
211
230
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#get_table_bucket-instance_method
212
231
  def get_table_bucket: (
@@ -214,6 +233,16 @@ module Aws
214
233
  ) -> _GetTableBucketResponseSuccess
215
234
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTableBucketResponseSuccess
216
235
 
236
+ interface _GetTableBucketEncryptionResponseSuccess
237
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTableBucketEncryptionResponse]
238
+ def encryption_configuration: () -> Types::EncryptionConfiguration
239
+ end
240
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#get_table_bucket_encryption-instance_method
241
+ def get_table_bucket_encryption: (
242
+ table_bucket_arn: ::String
243
+ ) -> _GetTableBucketEncryptionResponseSuccess
244
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTableBucketEncryptionResponseSuccess
245
+
217
246
  interface _GetTableBucketMaintenanceConfigurationResponseSuccess
218
247
  include ::Seahorse::Client::_ResponseSuccess[Types::GetTableBucketMaintenanceConfigurationResponse]
219
248
  def table_bucket_arn: () -> ::String
@@ -235,6 +264,18 @@ module Aws
235
264
  ) -> _GetTableBucketPolicyResponseSuccess
236
265
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTableBucketPolicyResponseSuccess
237
266
 
267
+ interface _GetTableEncryptionResponseSuccess
268
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetTableEncryptionResponse]
269
+ def encryption_configuration: () -> Types::EncryptionConfiguration
270
+ end
271
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#get_table_encryption-instance_method
272
+ def get_table_encryption: (
273
+ table_bucket_arn: ::String,
274
+ namespace: ::String,
275
+ name: ::String
276
+ ) -> _GetTableEncryptionResponseSuccess
277
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetTableEncryptionResponseSuccess
278
+
238
279
  interface _GetTableMaintenanceConfigurationResponseSuccess
239
280
  include ::Seahorse::Client::_ResponseSuccess[Types::GetTableMaintenanceConfigurationResponse]
240
281
  def table_arn: () -> ::String
@@ -329,6 +370,16 @@ module Aws
329
370
  ) -> _ListTablesResponseSuccess
330
371
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTablesResponseSuccess
331
372
 
373
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#put_table_bucket_encryption-instance_method
374
+ def put_table_bucket_encryption: (
375
+ table_bucket_arn: ::String,
376
+ encryption_configuration: {
377
+ sse_algorithm: ("AES256" | "aws:kms"),
378
+ kms_key_arn: ::String?
379
+ }
380
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
381
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
382
+
332
383
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/S3Tables/Client.html#put_table_bucket_maintenance_configuration-instance_method
333
384
  def put_table_bucket_maintenance_configuration: (
334
385
  table_bucket_arn: ::String,
data/sig/types.rbs CHANGED
@@ -37,6 +37,7 @@ module Aws::S3Tables
37
37
 
38
38
  class CreateTableBucketRequest
39
39
  attr_accessor name: ::String
40
+ attr_accessor encryption_configuration: Types::EncryptionConfiguration
40
41
  SENSITIVE: []
41
42
  end
42
43
 
@@ -51,6 +52,7 @@ module Aws::S3Tables
51
52
  attr_accessor name: ::String
52
53
  attr_accessor format: ("ICEBERG")
53
54
  attr_accessor metadata: Types::TableMetadata
55
+ attr_accessor encryption_configuration: Types::EncryptionConfiguration
54
56
  SENSITIVE: []
55
57
  end
56
58
 
@@ -66,6 +68,11 @@ module Aws::S3Tables
66
68
  SENSITIVE: []
67
69
  end
68
70
 
71
+ class DeleteTableBucketEncryptionRequest
72
+ attr_accessor table_bucket_arn: ::String
73
+ SENSITIVE: []
74
+ end
75
+
69
76
  class DeleteTableBucketPolicyRequest
70
77
  attr_accessor table_bucket_arn: ::String
71
78
  SENSITIVE: []
@@ -91,6 +98,12 @@ module Aws::S3Tables
91
98
  SENSITIVE: []
92
99
  end
93
100
 
101
+ class EncryptionConfiguration
102
+ attr_accessor sse_algorithm: ("AES256" | "aws:kms")
103
+ attr_accessor kms_key_arn: ::String
104
+ SENSITIVE: []
105
+ end
106
+
94
107
  class ForbiddenException
95
108
  attr_accessor message: ::String
96
109
  SENSITIVE: []
@@ -107,6 +120,18 @@ module Aws::S3Tables
107
120
  attr_accessor created_at: ::Time
108
121
  attr_accessor created_by: ::String
109
122
  attr_accessor owner_account_id: ::String
123
+ attr_accessor namespace_id: ::String
124
+ attr_accessor table_bucket_id: ::String
125
+ SENSITIVE: []
126
+ end
127
+
128
+ class GetTableBucketEncryptionRequest
129
+ attr_accessor table_bucket_arn: ::String
130
+ SENSITIVE: []
131
+ end
132
+
133
+ class GetTableBucketEncryptionResponse
134
+ attr_accessor encryption_configuration: Types::EncryptionConfiguration
110
135
  SENSITIVE: []
111
136
  end
112
137
 
@@ -141,6 +166,19 @@ module Aws::S3Tables
141
166
  attr_accessor name: ::String
142
167
  attr_accessor owner_account_id: ::String
143
168
  attr_accessor created_at: ::Time
169
+ attr_accessor table_bucket_id: ::String
170
+ SENSITIVE: []
171
+ end
172
+
173
+ class GetTableEncryptionRequest
174
+ attr_accessor table_bucket_arn: ::String
175
+ attr_accessor namespace: ::String
176
+ attr_accessor name: ::String
177
+ SENSITIVE: []
178
+ end
179
+
180
+ class GetTableEncryptionResponse
181
+ attr_accessor encryption_configuration: Types::EncryptionConfiguration
144
182
  SENSITIVE: []
145
183
  end
146
184
 
@@ -208,6 +246,7 @@ module Aws::S3Tables
208
246
  attr_accessor type: ("customer" | "aws")
209
247
  attr_accessor table_arn: ::String
210
248
  attr_accessor namespace: ::Array[::String]
249
+ attr_accessor namespace_id: ::String
211
250
  attr_accessor version_token: ::String
212
251
  attr_accessor metadata_location: ::String
213
252
  attr_accessor warehouse_location: ::String
@@ -218,6 +257,7 @@ module Aws::S3Tables
218
257
  attr_accessor modified_by: ::String
219
258
  attr_accessor owner_account_id: ::String
220
259
  attr_accessor format: ("ICEBERG")
260
+ attr_accessor table_bucket_id: ::String
221
261
  SENSITIVE: []
222
262
  end
223
263
 
@@ -300,6 +340,8 @@ module Aws::S3Tables
300
340
  attr_accessor created_at: ::Time
301
341
  attr_accessor created_by: ::String
302
342
  attr_accessor owner_account_id: ::String
343
+ attr_accessor namespace_id: ::String
344
+ attr_accessor table_bucket_id: ::String
303
345
  SENSITIVE: []
304
346
  end
305
347
 
@@ -308,6 +350,12 @@ module Aws::S3Tables
308
350
  SENSITIVE: []
309
351
  end
310
352
 
353
+ class PutTableBucketEncryptionRequest
354
+ attr_accessor table_bucket_arn: ::String
355
+ attr_accessor encryption_configuration: Types::EncryptionConfiguration
356
+ SENSITIVE: []
357
+ end
358
+
311
359
  class PutTableBucketMaintenanceConfigurationRequest
312
360
  attr_accessor table_bucket_arn: ::String
313
361
  attr_accessor type: ("icebergUnreferencedFileRemoval")
@@ -377,6 +425,7 @@ module Aws::S3Tables
377
425
  attr_accessor name: ::String
378
426
  attr_accessor owner_account_id: ::String
379
427
  attr_accessor created_at: ::Time
428
+ attr_accessor table_bucket_id: ::String
380
429
  SENSITIVE: []
381
430
  end
382
431
 
@@ -425,6 +474,8 @@ module Aws::S3Tables
425
474
  attr_accessor table_arn: ::String
426
475
  attr_accessor created_at: ::Time
427
476
  attr_accessor modified_at: ::Time
477
+ attr_accessor namespace_id: ::String
478
+ attr_accessor table_bucket_id: ::String
428
479
  SENSITIVE: []
429
480
  end
430
481
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-s3tables
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-18 00:00:00.000000000 Z
11
+ date: 2025-04-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core