@aws-sdk/client-s3tables 3.787.0 → 3.796.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.
- package/README.md +33 -1
- package/dist-cjs/S3Tables.js +8 -0
- package/dist-cjs/commands/DeleteTableBucketEncryptionCommand.js +26 -0
- package/dist-cjs/commands/GetTableBucketEncryptionCommand.js +26 -0
- package/dist-cjs/commands/GetTableEncryptionCommand.js +26 -0
- package/dist-cjs/commands/PutTableBucketEncryptionCommand.js +26 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/models/models_0.js +5 -1
- package/dist-cjs/protocols/Aws_restJson1.js +113 -2
- package/dist-es/S3Tables.js +8 -0
- package/dist-es/commands/DeleteTableBucketEncryptionCommand.js +22 -0
- package/dist-es/commands/GetTableBucketEncryptionCommand.js +22 -0
- package/dist-es/commands/GetTableEncryptionCommand.js +22 -0
- package/dist-es/commands/PutTableBucketEncryptionCommand.js +22 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +103 -0
- package/dist-types/S3Tables.d.ts +29 -1
- package/dist-types/S3TablesClient.d.ts +7 -3
- package/dist-types/commands/CreateTableBucketCommand.d.ts +12 -1
- package/dist-types/commands/CreateTableCommand.d.ts +16 -2
- package/dist-types/commands/DeleteTableBucketEncryptionCommand.d.ts +95 -0
- package/dist-types/commands/GetNamespaceCommand.d.ts +2 -0
- package/dist-types/commands/GetTableBucketCommand.d.ts +1 -0
- package/dist-types/commands/GetTableBucketEncryptionCommand.d.ts +99 -0
- package/dist-types/commands/GetTableCommand.d.ts +2 -0
- package/dist-types/commands/GetTableEncryptionCommand.d.ts +101 -0
- package/dist-types/commands/ListNamespacesCommand.d.ts +2 -0
- package/dist-types/commands/ListTableBucketsCommand.d.ts +1 -0
- package/dist-types/commands/ListTablesCommand.d.ts +2 -0
- package/dist-types/commands/PutTableBucketEncryptionCommand.d.ts +103 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +171 -12
- package/dist-types/protocols/Aws_restJson1.d.ts +36 -0
- package/dist-types/ts3.4/S3Tables.d.ts +68 -0
- package/dist-types/ts3.4/S3TablesClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/DeleteTableBucketEncryptionCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetTableBucketEncryptionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTableEncryptionCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutTableBucketEncryptionCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +42 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +48 -0
- package/package.json +5 -5
|
@@ -115,6 +115,34 @@ export declare class TooManyRequestsException extends __BaseException {
|
|
|
115
115
|
*/
|
|
116
116
|
constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
|
|
117
117
|
}
|
|
118
|
+
/**
|
|
119
|
+
* @public
|
|
120
|
+
* @enum
|
|
121
|
+
*/
|
|
122
|
+
export declare const SSEAlgorithm: {
|
|
123
|
+
readonly AES256: "AES256";
|
|
124
|
+
readonly AWS_KMS: "aws:kms";
|
|
125
|
+
};
|
|
126
|
+
/**
|
|
127
|
+
* @public
|
|
128
|
+
*/
|
|
129
|
+
export type SSEAlgorithm = (typeof SSEAlgorithm)[keyof typeof SSEAlgorithm];
|
|
130
|
+
/**
|
|
131
|
+
* <p>Configuration specifying how data should be encrypted. This structure defines the encryption algorithm and optional KMS key to be used for server-side encryption.</p>
|
|
132
|
+
* @public
|
|
133
|
+
*/
|
|
134
|
+
export interface EncryptionConfiguration {
|
|
135
|
+
/**
|
|
136
|
+
* <p>The server-side encryption algorithm to use. Valid values are <code>AES256</code> for S3-managed encryption keys, or <code>aws:kms</code> for Amazon Web Services KMS-managed encryption keys. If you choose SSE-KMS encryption you must grant the S3 Tables maintenance principal access to your KMS key. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-kms-permissions.html">Permissions requirements for S3 Tables SSE-KMS encryption</a>.</p>
|
|
137
|
+
* @public
|
|
138
|
+
*/
|
|
139
|
+
sseAlgorithm: SSEAlgorithm | undefined;
|
|
140
|
+
/**
|
|
141
|
+
* <p>The Amazon Resource Name (ARN) of the KMS key to use for encryption. This field is required only when <code>sseAlgorithm</code> is set to <code>aws:kms</code>.</p>
|
|
142
|
+
* @public
|
|
143
|
+
*/
|
|
144
|
+
kmsKeyArn?: string | undefined;
|
|
145
|
+
}
|
|
118
146
|
/**
|
|
119
147
|
* @public
|
|
120
148
|
* @enum
|
|
@@ -228,6 +256,14 @@ export interface CreateTableRequest {
|
|
|
228
256
|
* @public
|
|
229
257
|
*/
|
|
230
258
|
metadata?: TableMetadata | undefined;
|
|
259
|
+
/**
|
|
260
|
+
* <p>The encryption configuration to use for the table. This configuration specifies the encryption algorithm and, if using SSE-KMS, the KMS key to use for encrypting the table. </p>
|
|
261
|
+
* <note>
|
|
262
|
+
* <p>If you choose SSE-KMS encryption you must grant the S3 Tables maintenance principal access to your KMS key. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-kms-permissions.html">Permissions requirements for S3 Tables SSE-KMS encryption</a>.</p>
|
|
263
|
+
* </note>
|
|
264
|
+
* @public
|
|
265
|
+
*/
|
|
266
|
+
encryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
231
267
|
}
|
|
232
268
|
/**
|
|
233
269
|
* @public
|
|
@@ -253,6 +289,11 @@ export interface CreateTableBucketRequest {
|
|
|
253
289
|
* @public
|
|
254
290
|
*/
|
|
255
291
|
name: string | undefined;
|
|
292
|
+
/**
|
|
293
|
+
* <p>The encryption configuration to use for the table bucket. This configuration specifies the default encryption settings that will be applied to all tables created in this bucket unless overridden at the table level. The configuration includes the encryption algorithm and, if using SSE-KMS, the KMS key to use.</p>
|
|
294
|
+
* @public
|
|
295
|
+
*/
|
|
296
|
+
encryptionConfiguration?: EncryptionConfiguration | undefined;
|
|
256
297
|
}
|
|
257
298
|
/**
|
|
258
299
|
* @public
|
|
@@ -314,6 +355,16 @@ export interface DeleteTableBucketRequest {
|
|
|
314
355
|
*/
|
|
315
356
|
tableBucketARN: string | undefined;
|
|
316
357
|
}
|
|
358
|
+
/**
|
|
359
|
+
* @public
|
|
360
|
+
*/
|
|
361
|
+
export interface DeleteTableBucketEncryptionRequest {
|
|
362
|
+
/**
|
|
363
|
+
* <p>The Amazon Resource Name (ARN) of the table bucket.</p>
|
|
364
|
+
* @public
|
|
365
|
+
*/
|
|
366
|
+
tableBucketARN: string | undefined;
|
|
367
|
+
}
|
|
317
368
|
/**
|
|
318
369
|
* @public
|
|
319
370
|
*/
|
|
@@ -383,6 +434,16 @@ export interface GetNamespaceResponse {
|
|
|
383
434
|
* @public
|
|
384
435
|
*/
|
|
385
436
|
ownerAccountId: string | undefined;
|
|
437
|
+
/**
|
|
438
|
+
* <p>The unique identifier of the namespace.</p>
|
|
439
|
+
* @public
|
|
440
|
+
*/
|
|
441
|
+
namespaceId?: string | undefined;
|
|
442
|
+
/**
|
|
443
|
+
* <p>The unique identifier of the table bucket containing this namespace.</p>
|
|
444
|
+
* @public
|
|
445
|
+
*/
|
|
446
|
+
tableBucketId?: string | undefined;
|
|
386
447
|
}
|
|
387
448
|
/**
|
|
388
449
|
* @public
|
|
@@ -440,6 +501,11 @@ export interface GetTableResponse {
|
|
|
440
501
|
* @public
|
|
441
502
|
*/
|
|
442
503
|
namespace: string[] | undefined;
|
|
504
|
+
/**
|
|
505
|
+
* <p>The unique identifier of the namespace containing this table.</p>
|
|
506
|
+
* @public
|
|
507
|
+
*/
|
|
508
|
+
namespaceId?: string | undefined;
|
|
443
509
|
/**
|
|
444
510
|
* <p>The version token of the table.</p>
|
|
445
511
|
* @public
|
|
@@ -490,6 +556,11 @@ export interface GetTableResponse {
|
|
|
490
556
|
* @public
|
|
491
557
|
*/
|
|
492
558
|
format: OpenTableFormat | undefined;
|
|
559
|
+
/**
|
|
560
|
+
* <p>The unique identifier of the table bucket containing this table.</p>
|
|
561
|
+
* @public
|
|
562
|
+
*/
|
|
563
|
+
tableBucketId?: string | undefined;
|
|
493
564
|
}
|
|
494
565
|
/**
|
|
495
566
|
* @public
|
|
@@ -525,6 +596,31 @@ export interface GetTableBucketResponse {
|
|
|
525
596
|
* @public
|
|
526
597
|
*/
|
|
527
598
|
createdAt: Date | undefined;
|
|
599
|
+
/**
|
|
600
|
+
* <p>The unique identifier of the table bucket.</p>
|
|
601
|
+
* @public
|
|
602
|
+
*/
|
|
603
|
+
tableBucketId?: string | undefined;
|
|
604
|
+
}
|
|
605
|
+
/**
|
|
606
|
+
* @public
|
|
607
|
+
*/
|
|
608
|
+
export interface GetTableBucketEncryptionRequest {
|
|
609
|
+
/**
|
|
610
|
+
* <p>The Amazon Resource Name (ARN) of the table bucket.</p>
|
|
611
|
+
* @public
|
|
612
|
+
*/
|
|
613
|
+
tableBucketARN: string | undefined;
|
|
614
|
+
}
|
|
615
|
+
/**
|
|
616
|
+
* @public
|
|
617
|
+
*/
|
|
618
|
+
export interface GetTableBucketEncryptionResponse {
|
|
619
|
+
/**
|
|
620
|
+
* <p>The encryption configuration for the table bucket.</p>
|
|
621
|
+
* @public
|
|
622
|
+
*/
|
|
623
|
+
encryptionConfiguration: EncryptionConfiguration | undefined;
|
|
528
624
|
}
|
|
529
625
|
/**
|
|
530
626
|
* @public
|
|
@@ -549,22 +645,17 @@ export declare const TableBucketMaintenanceType: {
|
|
|
549
645
|
*/
|
|
550
646
|
export type TableBucketMaintenanceType = (typeof TableBucketMaintenanceType)[keyof typeof TableBucketMaintenanceType];
|
|
551
647
|
/**
|
|
552
|
-
* <p>Contains details about the unreferenced file removal settings for an Iceberg table bucket
|
|
553
|
-
* </p>
|
|
648
|
+
* <p>Contains details about the unreferenced file removal settings for an Iceberg table bucket.</p>
|
|
554
649
|
* @public
|
|
555
650
|
*/
|
|
556
651
|
export interface IcebergUnreferencedFileRemovalSettings {
|
|
557
652
|
/**
|
|
558
|
-
* <p>The number of days an object has to be unreferenced before it is marked as non-current
|
|
559
|
-
*
|
|
560
|
-
* </p>
|
|
653
|
+
* <p>The number of days an object has to be unreferenced before it is marked as non-current.</p>
|
|
561
654
|
* @public
|
|
562
655
|
*/
|
|
563
656
|
unreferencedDays?: number | undefined;
|
|
564
657
|
/**
|
|
565
|
-
* <p>The number of days an object has to be non-current before it is deleted
|
|
566
|
-
*
|
|
567
|
-
* </p>
|
|
658
|
+
* <p>The number of days an object has to be non-current before it is deleted.</p>
|
|
568
659
|
* @public
|
|
569
660
|
*/
|
|
570
661
|
nonCurrentDays?: number | undefined;
|
|
@@ -663,6 +754,36 @@ export interface GetTableBucketPolicyResponse {
|
|
|
663
754
|
*/
|
|
664
755
|
resourcePolicy: string | undefined;
|
|
665
756
|
}
|
|
757
|
+
/**
|
|
758
|
+
* @public
|
|
759
|
+
*/
|
|
760
|
+
export interface GetTableEncryptionRequest {
|
|
761
|
+
/**
|
|
762
|
+
* <p>The Amazon Resource Name (ARN) of the table bucket containing the table.</p>
|
|
763
|
+
* @public
|
|
764
|
+
*/
|
|
765
|
+
tableBucketARN: string | undefined;
|
|
766
|
+
/**
|
|
767
|
+
* <p>The namespace associated with the table.</p>
|
|
768
|
+
* @public
|
|
769
|
+
*/
|
|
770
|
+
namespace: string | undefined;
|
|
771
|
+
/**
|
|
772
|
+
* <p>The name of the table.</p>
|
|
773
|
+
* @public
|
|
774
|
+
*/
|
|
775
|
+
name: string | undefined;
|
|
776
|
+
}
|
|
777
|
+
/**
|
|
778
|
+
* @public
|
|
779
|
+
*/
|
|
780
|
+
export interface GetTableEncryptionResponse {
|
|
781
|
+
/**
|
|
782
|
+
* <p>The encryption configuration for the table.</p>
|
|
783
|
+
* @public
|
|
784
|
+
*/
|
|
785
|
+
encryptionConfiguration: EncryptionConfiguration | undefined;
|
|
786
|
+
}
|
|
666
787
|
/**
|
|
667
788
|
* @public
|
|
668
789
|
*/
|
|
@@ -696,8 +817,7 @@ export declare const TableMaintenanceType: {
|
|
|
696
817
|
*/
|
|
697
818
|
export type TableMaintenanceType = (typeof TableMaintenanceType)[keyof typeof TableMaintenanceType];
|
|
698
819
|
/**
|
|
699
|
-
* <p>Contains details about the compaction settings for an Iceberg table
|
|
700
|
-
* </p>
|
|
820
|
+
* <p>Contains details about the compaction settings for an Iceberg table.</p>
|
|
701
821
|
* @public
|
|
702
822
|
*/
|
|
703
823
|
export interface IcebergCompactionSettings {
|
|
@@ -708,8 +828,7 @@ export interface IcebergCompactionSettings {
|
|
|
708
828
|
targetFileSizeMB?: number | undefined;
|
|
709
829
|
}
|
|
710
830
|
/**
|
|
711
|
-
* <p>Contains details about the snapshot management settings for an Iceberg table. The oldest snapshot expires when its age exceeds the <code>maxSnapshotAgeHours</code> and the total number of snapshots exceeds the value for the minimum number of snapshots to keep <code>minSnapshotsToKeep</code
|
|
712
|
-
* </p>
|
|
831
|
+
* <p>Contains details about the snapshot management settings for an Iceberg table. The oldest snapshot expires when its age exceeds the <code>maxSnapshotAgeHours</code> and the total number of snapshots exceeds the value for the minimum number of snapshots to keep <code>minSnapshotsToKeep</code>.</p>
|
|
713
832
|
* @public
|
|
714
833
|
*/
|
|
715
834
|
export interface IcebergSnapshotManagementSettings {
|
|
@@ -1005,6 +1124,16 @@ export interface NamespaceSummary {
|
|
|
1005
1124
|
* @public
|
|
1006
1125
|
*/
|
|
1007
1126
|
ownerAccountId: string | undefined;
|
|
1127
|
+
/**
|
|
1128
|
+
* <p>The system-assigned unique identifier for the namespace.</p>
|
|
1129
|
+
* @public
|
|
1130
|
+
*/
|
|
1131
|
+
namespaceId?: string | undefined;
|
|
1132
|
+
/**
|
|
1133
|
+
* <p>The system-assigned unique identifier for the table bucket that contains this namespace.</p>
|
|
1134
|
+
* @public
|
|
1135
|
+
*/
|
|
1136
|
+
tableBucketId?: string | undefined;
|
|
1008
1137
|
}
|
|
1009
1138
|
/**
|
|
1010
1139
|
* @public
|
|
@@ -1069,6 +1198,11 @@ export interface TableBucketSummary {
|
|
|
1069
1198
|
* @public
|
|
1070
1199
|
*/
|
|
1071
1200
|
createdAt: Date | undefined;
|
|
1201
|
+
/**
|
|
1202
|
+
* <p>The system-assigned unique identifier for the table bucket.</p>
|
|
1203
|
+
* @public
|
|
1204
|
+
*/
|
|
1205
|
+
tableBucketId?: string | undefined;
|
|
1072
1206
|
}
|
|
1073
1207
|
/**
|
|
1074
1208
|
* @public
|
|
@@ -1153,6 +1287,16 @@ export interface TableSummary {
|
|
|
1153
1287
|
* @public
|
|
1154
1288
|
*/
|
|
1155
1289
|
modifiedAt: Date | undefined;
|
|
1290
|
+
/**
|
|
1291
|
+
* <p>The unique identifier for the namespace that contains this table.</p>
|
|
1292
|
+
* @public
|
|
1293
|
+
*/
|
|
1294
|
+
namespaceId?: string | undefined;
|
|
1295
|
+
/**
|
|
1296
|
+
* <p>The unique identifier for the table bucket that contains this table.</p>
|
|
1297
|
+
* @public
|
|
1298
|
+
*/
|
|
1299
|
+
tableBucketId?: string | undefined;
|
|
1156
1300
|
}
|
|
1157
1301
|
/**
|
|
1158
1302
|
* @public
|
|
@@ -1169,6 +1313,21 @@ export interface ListTablesResponse {
|
|
|
1169
1313
|
*/
|
|
1170
1314
|
continuationToken?: string | undefined;
|
|
1171
1315
|
}
|
|
1316
|
+
/**
|
|
1317
|
+
* @public
|
|
1318
|
+
*/
|
|
1319
|
+
export interface PutTableBucketEncryptionRequest {
|
|
1320
|
+
/**
|
|
1321
|
+
* <p>The Amazon Resource Name (ARN) of the table bucket.</p>
|
|
1322
|
+
* @public
|
|
1323
|
+
*/
|
|
1324
|
+
tableBucketARN: string | undefined;
|
|
1325
|
+
/**
|
|
1326
|
+
* <p>The encryption configuration to apply to the table bucket.</p>
|
|
1327
|
+
* @public
|
|
1328
|
+
*/
|
|
1329
|
+
encryptionConfiguration: EncryptionConfiguration | undefined;
|
|
1330
|
+
}
|
|
1172
1331
|
/**
|
|
1173
1332
|
* @public
|
|
1174
1333
|
*/
|
|
@@ -5,14 +5,17 @@ import { CreateTableBucketCommandInput, CreateTableBucketCommandOutput } from ".
|
|
|
5
5
|
import { CreateTableCommandInput, CreateTableCommandOutput } from "../commands/CreateTableCommand";
|
|
6
6
|
import { DeleteNamespaceCommandInput, DeleteNamespaceCommandOutput } from "../commands/DeleteNamespaceCommand";
|
|
7
7
|
import { DeleteTableBucketCommandInput, DeleteTableBucketCommandOutput } from "../commands/DeleteTableBucketCommand";
|
|
8
|
+
import { DeleteTableBucketEncryptionCommandInput, DeleteTableBucketEncryptionCommandOutput } from "../commands/DeleteTableBucketEncryptionCommand";
|
|
8
9
|
import { DeleteTableBucketPolicyCommandInput, DeleteTableBucketPolicyCommandOutput } from "../commands/DeleteTableBucketPolicyCommand";
|
|
9
10
|
import { DeleteTableCommandInput, DeleteTableCommandOutput } from "../commands/DeleteTableCommand";
|
|
10
11
|
import { DeleteTablePolicyCommandInput, DeleteTablePolicyCommandOutput } from "../commands/DeleteTablePolicyCommand";
|
|
11
12
|
import { GetNamespaceCommandInput, GetNamespaceCommandOutput } from "../commands/GetNamespaceCommand";
|
|
12
13
|
import { GetTableBucketCommandInput, GetTableBucketCommandOutput } from "../commands/GetTableBucketCommand";
|
|
14
|
+
import { GetTableBucketEncryptionCommandInput, GetTableBucketEncryptionCommandOutput } from "../commands/GetTableBucketEncryptionCommand";
|
|
13
15
|
import { GetTableBucketMaintenanceConfigurationCommandInput, GetTableBucketMaintenanceConfigurationCommandOutput } from "../commands/GetTableBucketMaintenanceConfigurationCommand";
|
|
14
16
|
import { GetTableBucketPolicyCommandInput, GetTableBucketPolicyCommandOutput } from "../commands/GetTableBucketPolicyCommand";
|
|
15
17
|
import { GetTableCommandInput, GetTableCommandOutput } from "../commands/GetTableCommand";
|
|
18
|
+
import { GetTableEncryptionCommandInput, GetTableEncryptionCommandOutput } from "../commands/GetTableEncryptionCommand";
|
|
16
19
|
import { GetTableMaintenanceConfigurationCommandInput, GetTableMaintenanceConfigurationCommandOutput } from "../commands/GetTableMaintenanceConfigurationCommand";
|
|
17
20
|
import { GetTableMaintenanceJobStatusCommandInput, GetTableMaintenanceJobStatusCommandOutput } from "../commands/GetTableMaintenanceJobStatusCommand";
|
|
18
21
|
import { GetTableMetadataLocationCommandInput, GetTableMetadataLocationCommandOutput } from "../commands/GetTableMetadataLocationCommand";
|
|
@@ -20,6 +23,7 @@ import { GetTablePolicyCommandInput, GetTablePolicyCommandOutput } from "../comm
|
|
|
20
23
|
import { ListNamespacesCommandInput, ListNamespacesCommandOutput } from "../commands/ListNamespacesCommand";
|
|
21
24
|
import { ListTableBucketsCommandInput, ListTableBucketsCommandOutput } from "../commands/ListTableBucketsCommand";
|
|
22
25
|
import { ListTablesCommandInput, ListTablesCommandOutput } from "../commands/ListTablesCommand";
|
|
26
|
+
import { PutTableBucketEncryptionCommandInput, PutTableBucketEncryptionCommandOutput } from "../commands/PutTableBucketEncryptionCommand";
|
|
23
27
|
import { PutTableBucketMaintenanceConfigurationCommandInput, PutTableBucketMaintenanceConfigurationCommandOutput } from "../commands/PutTableBucketMaintenanceConfigurationCommand";
|
|
24
28
|
import { PutTableBucketPolicyCommandInput, PutTableBucketPolicyCommandOutput } from "../commands/PutTableBucketPolicyCommand";
|
|
25
29
|
import { PutTableMaintenanceConfigurationCommandInput, PutTableMaintenanceConfigurationCommandOutput } from "../commands/PutTableMaintenanceConfigurationCommand";
|
|
@@ -50,6 +54,10 @@ export declare const se_DeleteTableCommand: (input: DeleteTableCommandInput, con
|
|
|
50
54
|
* serializeAws_restJson1DeleteTableBucketCommand
|
|
51
55
|
*/
|
|
52
56
|
export declare const se_DeleteTableBucketCommand: (input: DeleteTableBucketCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
57
|
+
/**
|
|
58
|
+
* serializeAws_restJson1DeleteTableBucketEncryptionCommand
|
|
59
|
+
*/
|
|
60
|
+
export declare const se_DeleteTableBucketEncryptionCommand: (input: DeleteTableBucketEncryptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
53
61
|
/**
|
|
54
62
|
* serializeAws_restJson1DeleteTableBucketPolicyCommand
|
|
55
63
|
*/
|
|
@@ -70,6 +78,10 @@ export declare const se_GetTableCommand: (input: GetTableCommandInput, context:
|
|
|
70
78
|
* serializeAws_restJson1GetTableBucketCommand
|
|
71
79
|
*/
|
|
72
80
|
export declare const se_GetTableBucketCommand: (input: GetTableBucketCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
81
|
+
/**
|
|
82
|
+
* serializeAws_restJson1GetTableBucketEncryptionCommand
|
|
83
|
+
*/
|
|
84
|
+
export declare const se_GetTableBucketEncryptionCommand: (input: GetTableBucketEncryptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
73
85
|
/**
|
|
74
86
|
* serializeAws_restJson1GetTableBucketMaintenanceConfigurationCommand
|
|
75
87
|
*/
|
|
@@ -78,6 +90,10 @@ export declare const se_GetTableBucketMaintenanceConfigurationCommand: (input: G
|
|
|
78
90
|
* serializeAws_restJson1GetTableBucketPolicyCommand
|
|
79
91
|
*/
|
|
80
92
|
export declare const se_GetTableBucketPolicyCommand: (input: GetTableBucketPolicyCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
93
|
+
/**
|
|
94
|
+
* serializeAws_restJson1GetTableEncryptionCommand
|
|
95
|
+
*/
|
|
96
|
+
export declare const se_GetTableEncryptionCommand: (input: GetTableEncryptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
81
97
|
/**
|
|
82
98
|
* serializeAws_restJson1GetTableMaintenanceConfigurationCommand
|
|
83
99
|
*/
|
|
@@ -106,6 +122,10 @@ export declare const se_ListTableBucketsCommand: (input: ListTableBucketsCommand
|
|
|
106
122
|
* serializeAws_restJson1ListTablesCommand
|
|
107
123
|
*/
|
|
108
124
|
export declare const se_ListTablesCommand: (input: ListTablesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
125
|
+
/**
|
|
126
|
+
* serializeAws_restJson1PutTableBucketEncryptionCommand
|
|
127
|
+
*/
|
|
128
|
+
export declare const se_PutTableBucketEncryptionCommand: (input: PutTableBucketEncryptionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
109
129
|
/**
|
|
110
130
|
* serializeAws_restJson1PutTableBucketMaintenanceConfigurationCommand
|
|
111
131
|
*/
|
|
@@ -154,6 +174,10 @@ export declare const de_DeleteTableCommand: (output: __HttpResponse, context: __
|
|
|
154
174
|
* deserializeAws_restJson1DeleteTableBucketCommand
|
|
155
175
|
*/
|
|
156
176
|
export declare const de_DeleteTableBucketCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTableBucketCommandOutput>;
|
|
177
|
+
/**
|
|
178
|
+
* deserializeAws_restJson1DeleteTableBucketEncryptionCommand
|
|
179
|
+
*/
|
|
180
|
+
export declare const de_DeleteTableBucketEncryptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTableBucketEncryptionCommandOutput>;
|
|
157
181
|
/**
|
|
158
182
|
* deserializeAws_restJson1DeleteTableBucketPolicyCommand
|
|
159
183
|
*/
|
|
@@ -174,6 +198,10 @@ export declare const de_GetTableCommand: (output: __HttpResponse, context: __Ser
|
|
|
174
198
|
* deserializeAws_restJson1GetTableBucketCommand
|
|
175
199
|
*/
|
|
176
200
|
export declare const de_GetTableBucketCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTableBucketCommandOutput>;
|
|
201
|
+
/**
|
|
202
|
+
* deserializeAws_restJson1GetTableBucketEncryptionCommand
|
|
203
|
+
*/
|
|
204
|
+
export declare const de_GetTableBucketEncryptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTableBucketEncryptionCommandOutput>;
|
|
177
205
|
/**
|
|
178
206
|
* deserializeAws_restJson1GetTableBucketMaintenanceConfigurationCommand
|
|
179
207
|
*/
|
|
@@ -182,6 +210,10 @@ export declare const de_GetTableBucketMaintenanceConfigurationCommand: (output:
|
|
|
182
210
|
* deserializeAws_restJson1GetTableBucketPolicyCommand
|
|
183
211
|
*/
|
|
184
212
|
export declare const de_GetTableBucketPolicyCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTableBucketPolicyCommandOutput>;
|
|
213
|
+
/**
|
|
214
|
+
* deserializeAws_restJson1GetTableEncryptionCommand
|
|
215
|
+
*/
|
|
216
|
+
export declare const de_GetTableEncryptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetTableEncryptionCommandOutput>;
|
|
185
217
|
/**
|
|
186
218
|
* deserializeAws_restJson1GetTableMaintenanceConfigurationCommand
|
|
187
219
|
*/
|
|
@@ -210,6 +242,10 @@ export declare const de_ListTableBucketsCommand: (output: __HttpResponse, contex
|
|
|
210
242
|
* deserializeAws_restJson1ListTablesCommand
|
|
211
243
|
*/
|
|
212
244
|
export declare const de_ListTablesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTablesCommandOutput>;
|
|
245
|
+
/**
|
|
246
|
+
* deserializeAws_restJson1PutTableBucketEncryptionCommand
|
|
247
|
+
*/
|
|
248
|
+
export declare const de_PutTableBucketEncryptionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutTableBucketEncryptionCommandOutput>;
|
|
213
249
|
/**
|
|
214
250
|
* deserializeAws_restJson1PutTableBucketMaintenanceConfigurationCommand
|
|
215
251
|
*/
|
|
@@ -19,6 +19,10 @@ import {
|
|
|
19
19
|
DeleteTableBucketCommandInput,
|
|
20
20
|
DeleteTableBucketCommandOutput,
|
|
21
21
|
} from "./commands/DeleteTableBucketCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteTableBucketEncryptionCommandInput,
|
|
24
|
+
DeleteTableBucketEncryptionCommandOutput,
|
|
25
|
+
} from "./commands/DeleteTableBucketEncryptionCommand";
|
|
22
26
|
import {
|
|
23
27
|
DeleteTableBucketPolicyCommandInput,
|
|
24
28
|
DeleteTableBucketPolicyCommandOutput,
|
|
@@ -39,6 +43,10 @@ import {
|
|
|
39
43
|
GetTableBucketCommandInput,
|
|
40
44
|
GetTableBucketCommandOutput,
|
|
41
45
|
} from "./commands/GetTableBucketCommand";
|
|
46
|
+
import {
|
|
47
|
+
GetTableBucketEncryptionCommandInput,
|
|
48
|
+
GetTableBucketEncryptionCommandOutput,
|
|
49
|
+
} from "./commands/GetTableBucketEncryptionCommand";
|
|
42
50
|
import {
|
|
43
51
|
GetTableBucketMaintenanceConfigurationCommandInput,
|
|
44
52
|
GetTableBucketMaintenanceConfigurationCommandOutput,
|
|
@@ -51,6 +59,10 @@ import {
|
|
|
51
59
|
GetTableCommandInput,
|
|
52
60
|
GetTableCommandOutput,
|
|
53
61
|
} from "./commands/GetTableCommand";
|
|
62
|
+
import {
|
|
63
|
+
GetTableEncryptionCommandInput,
|
|
64
|
+
GetTableEncryptionCommandOutput,
|
|
65
|
+
} from "./commands/GetTableEncryptionCommand";
|
|
54
66
|
import {
|
|
55
67
|
GetTableMaintenanceConfigurationCommandInput,
|
|
56
68
|
GetTableMaintenanceConfigurationCommandOutput,
|
|
@@ -79,6 +91,10 @@ import {
|
|
|
79
91
|
ListTablesCommandInput,
|
|
80
92
|
ListTablesCommandOutput,
|
|
81
93
|
} from "./commands/ListTablesCommand";
|
|
94
|
+
import {
|
|
95
|
+
PutTableBucketEncryptionCommandInput,
|
|
96
|
+
PutTableBucketEncryptionCommandOutput,
|
|
97
|
+
} from "./commands/PutTableBucketEncryptionCommand";
|
|
82
98
|
import {
|
|
83
99
|
PutTableBucketMaintenanceConfigurationCommandInput,
|
|
84
100
|
PutTableBucketMaintenanceConfigurationCommandOutput,
|
|
@@ -183,6 +199,19 @@ export interface S3Tables {
|
|
|
183
199
|
options: __HttpHandlerOptions,
|
|
184
200
|
cb: (err: any, data?: DeleteTableBucketCommandOutput) => void
|
|
185
201
|
): void;
|
|
202
|
+
deleteTableBucketEncryption(
|
|
203
|
+
args: DeleteTableBucketEncryptionCommandInput,
|
|
204
|
+
options?: __HttpHandlerOptions
|
|
205
|
+
): Promise<DeleteTableBucketEncryptionCommandOutput>;
|
|
206
|
+
deleteTableBucketEncryption(
|
|
207
|
+
args: DeleteTableBucketEncryptionCommandInput,
|
|
208
|
+
cb: (err: any, data?: DeleteTableBucketEncryptionCommandOutput) => void
|
|
209
|
+
): void;
|
|
210
|
+
deleteTableBucketEncryption(
|
|
211
|
+
args: DeleteTableBucketEncryptionCommandInput,
|
|
212
|
+
options: __HttpHandlerOptions,
|
|
213
|
+
cb: (err: any, data?: DeleteTableBucketEncryptionCommandOutput) => void
|
|
214
|
+
): void;
|
|
186
215
|
deleteTableBucketPolicy(
|
|
187
216
|
args: DeleteTableBucketPolicyCommandInput,
|
|
188
217
|
options?: __HttpHandlerOptions
|
|
@@ -248,6 +277,19 @@ export interface S3Tables {
|
|
|
248
277
|
options: __HttpHandlerOptions,
|
|
249
278
|
cb: (err: any, data?: GetTableBucketCommandOutput) => void
|
|
250
279
|
): void;
|
|
280
|
+
getTableBucketEncryption(
|
|
281
|
+
args: GetTableBucketEncryptionCommandInput,
|
|
282
|
+
options?: __HttpHandlerOptions
|
|
283
|
+
): Promise<GetTableBucketEncryptionCommandOutput>;
|
|
284
|
+
getTableBucketEncryption(
|
|
285
|
+
args: GetTableBucketEncryptionCommandInput,
|
|
286
|
+
cb: (err: any, data?: GetTableBucketEncryptionCommandOutput) => void
|
|
287
|
+
): void;
|
|
288
|
+
getTableBucketEncryption(
|
|
289
|
+
args: GetTableBucketEncryptionCommandInput,
|
|
290
|
+
options: __HttpHandlerOptions,
|
|
291
|
+
cb: (err: any, data?: GetTableBucketEncryptionCommandOutput) => void
|
|
292
|
+
): void;
|
|
251
293
|
getTableBucketMaintenanceConfiguration(
|
|
252
294
|
args: GetTableBucketMaintenanceConfigurationCommandInput,
|
|
253
295
|
options?: __HttpHandlerOptions
|
|
@@ -280,6 +322,19 @@ export interface S3Tables {
|
|
|
280
322
|
options: __HttpHandlerOptions,
|
|
281
323
|
cb: (err: any, data?: GetTableBucketPolicyCommandOutput) => void
|
|
282
324
|
): void;
|
|
325
|
+
getTableEncryption(
|
|
326
|
+
args: GetTableEncryptionCommandInput,
|
|
327
|
+
options?: __HttpHandlerOptions
|
|
328
|
+
): Promise<GetTableEncryptionCommandOutput>;
|
|
329
|
+
getTableEncryption(
|
|
330
|
+
args: GetTableEncryptionCommandInput,
|
|
331
|
+
cb: (err: any, data?: GetTableEncryptionCommandOutput) => void
|
|
332
|
+
): void;
|
|
333
|
+
getTableEncryption(
|
|
334
|
+
args: GetTableEncryptionCommandInput,
|
|
335
|
+
options: __HttpHandlerOptions,
|
|
336
|
+
cb: (err: any, data?: GetTableEncryptionCommandOutput) => void
|
|
337
|
+
): void;
|
|
283
338
|
getTableMaintenanceConfiguration(
|
|
284
339
|
args: GetTableMaintenanceConfigurationCommandInput,
|
|
285
340
|
options?: __HttpHandlerOptions
|
|
@@ -372,6 +427,19 @@ export interface S3Tables {
|
|
|
372
427
|
options: __HttpHandlerOptions,
|
|
373
428
|
cb: (err: any, data?: ListTablesCommandOutput) => void
|
|
374
429
|
): void;
|
|
430
|
+
putTableBucketEncryption(
|
|
431
|
+
args: PutTableBucketEncryptionCommandInput,
|
|
432
|
+
options?: __HttpHandlerOptions
|
|
433
|
+
): Promise<PutTableBucketEncryptionCommandOutput>;
|
|
434
|
+
putTableBucketEncryption(
|
|
435
|
+
args: PutTableBucketEncryptionCommandInput,
|
|
436
|
+
cb: (err: any, data?: PutTableBucketEncryptionCommandOutput) => void
|
|
437
|
+
): void;
|
|
438
|
+
putTableBucketEncryption(
|
|
439
|
+
args: PutTableBucketEncryptionCommandInput,
|
|
440
|
+
options: __HttpHandlerOptions,
|
|
441
|
+
cb: (err: any, data?: PutTableBucketEncryptionCommandOutput) => void
|
|
442
|
+
): void;
|
|
375
443
|
putTableBucketMaintenanceConfiguration(
|
|
376
444
|
args: PutTableBucketMaintenanceConfigurationCommandInput,
|
|
377
445
|
options?: __HttpHandlerOptions
|
|
@@ -65,6 +65,10 @@ import {
|
|
|
65
65
|
DeleteTableBucketCommandInput,
|
|
66
66
|
DeleteTableBucketCommandOutput,
|
|
67
67
|
} from "./commands/DeleteTableBucketCommand";
|
|
68
|
+
import {
|
|
69
|
+
DeleteTableBucketEncryptionCommandInput,
|
|
70
|
+
DeleteTableBucketEncryptionCommandOutput,
|
|
71
|
+
} from "./commands/DeleteTableBucketEncryptionCommand";
|
|
68
72
|
import {
|
|
69
73
|
DeleteTableBucketPolicyCommandInput,
|
|
70
74
|
DeleteTableBucketPolicyCommandOutput,
|
|
@@ -85,6 +89,10 @@ import {
|
|
|
85
89
|
GetTableBucketCommandInput,
|
|
86
90
|
GetTableBucketCommandOutput,
|
|
87
91
|
} from "./commands/GetTableBucketCommand";
|
|
92
|
+
import {
|
|
93
|
+
GetTableBucketEncryptionCommandInput,
|
|
94
|
+
GetTableBucketEncryptionCommandOutput,
|
|
95
|
+
} from "./commands/GetTableBucketEncryptionCommand";
|
|
88
96
|
import {
|
|
89
97
|
GetTableBucketMaintenanceConfigurationCommandInput,
|
|
90
98
|
GetTableBucketMaintenanceConfigurationCommandOutput,
|
|
@@ -97,6 +105,10 @@ import {
|
|
|
97
105
|
GetTableCommandInput,
|
|
98
106
|
GetTableCommandOutput,
|
|
99
107
|
} from "./commands/GetTableCommand";
|
|
108
|
+
import {
|
|
109
|
+
GetTableEncryptionCommandInput,
|
|
110
|
+
GetTableEncryptionCommandOutput,
|
|
111
|
+
} from "./commands/GetTableEncryptionCommand";
|
|
100
112
|
import {
|
|
101
113
|
GetTableMaintenanceConfigurationCommandInput,
|
|
102
114
|
GetTableMaintenanceConfigurationCommandOutput,
|
|
@@ -125,6 +137,10 @@ import {
|
|
|
125
137
|
ListTablesCommandInput,
|
|
126
138
|
ListTablesCommandOutput,
|
|
127
139
|
} from "./commands/ListTablesCommand";
|
|
140
|
+
import {
|
|
141
|
+
PutTableBucketEncryptionCommandInput,
|
|
142
|
+
PutTableBucketEncryptionCommandOutput,
|
|
143
|
+
} from "./commands/PutTableBucketEncryptionCommand";
|
|
128
144
|
import {
|
|
129
145
|
PutTableBucketMaintenanceConfigurationCommandInput,
|
|
130
146
|
PutTableBucketMaintenanceConfigurationCommandOutput,
|
|
@@ -162,14 +178,17 @@ export type ServiceInputTypes =
|
|
|
162
178
|
| CreateTableCommandInput
|
|
163
179
|
| DeleteNamespaceCommandInput
|
|
164
180
|
| DeleteTableBucketCommandInput
|
|
181
|
+
| DeleteTableBucketEncryptionCommandInput
|
|
165
182
|
| DeleteTableBucketPolicyCommandInput
|
|
166
183
|
| DeleteTableCommandInput
|
|
167
184
|
| DeleteTablePolicyCommandInput
|
|
168
185
|
| GetNamespaceCommandInput
|
|
169
186
|
| GetTableBucketCommandInput
|
|
187
|
+
| GetTableBucketEncryptionCommandInput
|
|
170
188
|
| GetTableBucketMaintenanceConfigurationCommandInput
|
|
171
189
|
| GetTableBucketPolicyCommandInput
|
|
172
190
|
| GetTableCommandInput
|
|
191
|
+
| GetTableEncryptionCommandInput
|
|
173
192
|
| GetTableMaintenanceConfigurationCommandInput
|
|
174
193
|
| GetTableMaintenanceJobStatusCommandInput
|
|
175
194
|
| GetTableMetadataLocationCommandInput
|
|
@@ -177,6 +196,7 @@ export type ServiceInputTypes =
|
|
|
177
196
|
| ListNamespacesCommandInput
|
|
178
197
|
| ListTableBucketsCommandInput
|
|
179
198
|
| ListTablesCommandInput
|
|
199
|
+
| PutTableBucketEncryptionCommandInput
|
|
180
200
|
| PutTableBucketMaintenanceConfigurationCommandInput
|
|
181
201
|
| PutTableBucketPolicyCommandInput
|
|
182
202
|
| PutTableMaintenanceConfigurationCommandInput
|
|
@@ -189,14 +209,17 @@ export type ServiceOutputTypes =
|
|
|
189
209
|
| CreateTableCommandOutput
|
|
190
210
|
| DeleteNamespaceCommandOutput
|
|
191
211
|
| DeleteTableBucketCommandOutput
|
|
212
|
+
| DeleteTableBucketEncryptionCommandOutput
|
|
192
213
|
| DeleteTableBucketPolicyCommandOutput
|
|
193
214
|
| DeleteTableCommandOutput
|
|
194
215
|
| DeleteTablePolicyCommandOutput
|
|
195
216
|
| GetNamespaceCommandOutput
|
|
196
217
|
| GetTableBucketCommandOutput
|
|
218
|
+
| GetTableBucketEncryptionCommandOutput
|
|
197
219
|
| GetTableBucketMaintenanceConfigurationCommandOutput
|
|
198
220
|
| GetTableBucketPolicyCommandOutput
|
|
199
221
|
| GetTableCommandOutput
|
|
222
|
+
| GetTableEncryptionCommandOutput
|
|
200
223
|
| GetTableMaintenanceConfigurationCommandOutput
|
|
201
224
|
| GetTableMaintenanceJobStatusCommandOutput
|
|
202
225
|
| GetTableMetadataLocationCommandOutput
|
|
@@ -204,6 +227,7 @@ export type ServiceOutputTypes =
|
|
|
204
227
|
| ListNamespacesCommandOutput
|
|
205
228
|
| ListTableBucketsCommandOutput
|
|
206
229
|
| ListTablesCommandOutput
|
|
230
|
+
| PutTableBucketEncryptionCommandOutput
|
|
207
231
|
| PutTableBucketMaintenanceConfigurationCommandOutput
|
|
208
232
|
| PutTableBucketPolicyCommandOutput
|
|
209
233
|
| PutTableMaintenanceConfigurationCommandOutput
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteTableBucketEncryptionRequest } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
S3TablesClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../S3TablesClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteTableBucketEncryptionCommandInput
|
|
12
|
+
extends DeleteTableBucketEncryptionRequest {}
|
|
13
|
+
export interface DeleteTableBucketEncryptionCommandOutput
|
|
14
|
+
extends __MetadataBearer {}
|
|
15
|
+
declare const DeleteTableBucketEncryptionCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteTableBucketEncryptionCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
DeleteTableBucketEncryptionCommandInput,
|
|
20
|
+
DeleteTableBucketEncryptionCommandOutput,
|
|
21
|
+
S3TablesClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
__0_0: DeleteTableBucketEncryptionCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
DeleteTableBucketEncryptionCommandInput,
|
|
29
|
+
DeleteTableBucketEncryptionCommandOutput,
|
|
30
|
+
S3TablesClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class DeleteTableBucketEncryptionCommand extends DeleteTableBucketEncryptionCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: DeleteTableBucketEncryptionRequest;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: DeleteTableBucketEncryptionCommandInput;
|
|
44
|
+
output: DeleteTableBucketEncryptionCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|