@aws-sdk/client-s3tables 3.939.0 → 3.943.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 +104 -0
- package/dist-cjs/index.js +755 -20
- package/dist-es/S3Tables.js +26 -0
- package/dist-es/commands/DeleteTableBucketReplicationCommand.js +16 -0
- package/dist-es/commands/DeleteTableReplicationCommand.js +16 -0
- package/dist-es/commands/GetTableBucketReplicationCommand.js +16 -0
- package/dist-es/commands/GetTableBucketStorageClassCommand.js +16 -0
- package/dist-es/commands/GetTableRecordExpirationConfigurationCommand.js +16 -0
- package/dist-es/commands/GetTableRecordExpirationJobStatusCommand.js +16 -0
- package/dist-es/commands/GetTableReplicationCommand.js +16 -0
- package/dist-es/commands/GetTableReplicationStatusCommand.js +16 -0
- package/dist-es/commands/GetTableStorageClassCommand.js +16 -0
- package/dist-es/commands/PutTableBucketReplicationCommand.js +16 -0
- package/dist-es/commands/PutTableBucketStorageClassCommand.js +16 -0
- package/dist-es/commands/PutTableRecordExpirationConfigurationCommand.js +16 -0
- package/dist-es/commands/PutTableReplicationCommand.js +16 -0
- package/dist-es/commands/index.js +13 -0
- package/dist-es/models/enums.js +19 -0
- package/dist-es/models/errors.js +12 -0
- package/dist-es/schemas/schemas_0.js +539 -21
- package/dist-types/S3Tables.d.ts +91 -0
- package/dist-types/S3TablesClient.d.ts +15 -2
- package/dist-types/commands/CreateTableBucketCommand.d.ts +4 -1
- package/dist-types/commands/CreateTableCommand.d.ts +7 -1
- package/dist-types/commands/DeleteTableBucketReplicationCommand.d.ts +94 -0
- package/dist-types/commands/DeleteTableReplicationCommand.d.ts +94 -0
- package/dist-types/commands/GetTableBucketReplicationCommand.d.ts +107 -0
- package/dist-types/commands/GetTableBucketStorageClassCommand.d.ts +94 -0
- package/dist-types/commands/GetTableCommand.d.ts +5 -0
- package/dist-types/commands/GetTableRecordExpirationConfigurationCommand.d.ts +97 -0
- package/dist-types/commands/GetTableRecordExpirationJobStatusCommand.d.ts +99 -0
- package/dist-types/commands/GetTableReplicationCommand.d.ts +107 -0
- package/dist-types/commands/GetTableReplicationStatusCommand.d.ts +104 -0
- package/dist-types/commands/GetTableStorageClassCommand.d.ts +96 -0
- package/dist-types/commands/ListTablesCommand.d.ts +1 -0
- package/dist-types/commands/PutTableBucketReplicationCommand.d.ts +109 -0
- package/dist-types/commands/PutTableBucketStorageClassCommand.d.ts +93 -0
- package/dist-types/commands/PutTableRecordExpirationConfigurationCommand.d.ts +96 -0
- package/dist-types/commands/PutTableReplicationCommand.d.ts +109 -0
- package/dist-types/commands/index.d.ts +13 -0
- package/dist-types/models/enums.d.ts +51 -0
- package/dist-types/models/errors.d.ts +12 -0
- package/dist-types/models/models_0.d.ts +530 -2
- package/dist-types/schemas/schemas_0.d.ts +54 -0
- package/dist-types/ts3.4/S3Tables.d.ts +239 -0
- package/dist-types/ts3.4/S3TablesClient.d.ts +78 -0
- package/dist-types/ts3.4/commands/DeleteTableBucketReplicationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteTableReplicationCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/GetTableBucketReplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTableBucketStorageClassCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTableRecordExpirationConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTableRecordExpirationJobStatusCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTableReplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTableReplicationStatusCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTableStorageClassCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutTableBucketReplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutTableBucketStorageClassCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/PutTableRecordExpirationConfigurationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/PutTableReplicationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/dist-types/ts3.4/models/enums.d.ts +26 -0
- package/dist-types/ts3.4/models/errors.d.ts +7 -0
- package/dist-types/ts3.4/models/models_0.d.ts +142 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +54 -0
- package/package.json +5 -5
package/dist-types/S3Tables.d.ts
CHANGED
|
@@ -7,20 +7,29 @@ import { DeleteTableBucketCommandInput, DeleteTableBucketCommandOutput } from ".
|
|
|
7
7
|
import { DeleteTableBucketEncryptionCommandInput, DeleteTableBucketEncryptionCommandOutput } from "./commands/DeleteTableBucketEncryptionCommand";
|
|
8
8
|
import { DeleteTableBucketMetricsConfigurationCommandInput, DeleteTableBucketMetricsConfigurationCommandOutput } from "./commands/DeleteTableBucketMetricsConfigurationCommand";
|
|
9
9
|
import { DeleteTableBucketPolicyCommandInput, DeleteTableBucketPolicyCommandOutput } from "./commands/DeleteTableBucketPolicyCommand";
|
|
10
|
+
import { DeleteTableBucketReplicationCommandInput, DeleteTableBucketReplicationCommandOutput } from "./commands/DeleteTableBucketReplicationCommand";
|
|
10
11
|
import { DeleteTableCommandInput, DeleteTableCommandOutput } from "./commands/DeleteTableCommand";
|
|
11
12
|
import { DeleteTablePolicyCommandInput, DeleteTablePolicyCommandOutput } from "./commands/DeleteTablePolicyCommand";
|
|
13
|
+
import { DeleteTableReplicationCommandInput, DeleteTableReplicationCommandOutput } from "./commands/DeleteTableReplicationCommand";
|
|
12
14
|
import { GetNamespaceCommandInput, GetNamespaceCommandOutput } from "./commands/GetNamespaceCommand";
|
|
13
15
|
import { GetTableBucketCommandInput, GetTableBucketCommandOutput } from "./commands/GetTableBucketCommand";
|
|
14
16
|
import { GetTableBucketEncryptionCommandInput, GetTableBucketEncryptionCommandOutput } from "./commands/GetTableBucketEncryptionCommand";
|
|
15
17
|
import { GetTableBucketMaintenanceConfigurationCommandInput, GetTableBucketMaintenanceConfigurationCommandOutput } from "./commands/GetTableBucketMaintenanceConfigurationCommand";
|
|
16
18
|
import { GetTableBucketMetricsConfigurationCommandInput, GetTableBucketMetricsConfigurationCommandOutput } from "./commands/GetTableBucketMetricsConfigurationCommand";
|
|
17
19
|
import { GetTableBucketPolicyCommandInput, GetTableBucketPolicyCommandOutput } from "./commands/GetTableBucketPolicyCommand";
|
|
20
|
+
import { GetTableBucketReplicationCommandInput, GetTableBucketReplicationCommandOutput } from "./commands/GetTableBucketReplicationCommand";
|
|
21
|
+
import { GetTableBucketStorageClassCommandInput, GetTableBucketStorageClassCommandOutput } from "./commands/GetTableBucketStorageClassCommand";
|
|
18
22
|
import { GetTableCommandInput, GetTableCommandOutput } from "./commands/GetTableCommand";
|
|
19
23
|
import { GetTableEncryptionCommandInput, GetTableEncryptionCommandOutput } from "./commands/GetTableEncryptionCommand";
|
|
20
24
|
import { GetTableMaintenanceConfigurationCommandInput, GetTableMaintenanceConfigurationCommandOutput } from "./commands/GetTableMaintenanceConfigurationCommand";
|
|
21
25
|
import { GetTableMaintenanceJobStatusCommandInput, GetTableMaintenanceJobStatusCommandOutput } from "./commands/GetTableMaintenanceJobStatusCommand";
|
|
22
26
|
import { GetTableMetadataLocationCommandInput, GetTableMetadataLocationCommandOutput } from "./commands/GetTableMetadataLocationCommand";
|
|
23
27
|
import { GetTablePolicyCommandInput, GetTablePolicyCommandOutput } from "./commands/GetTablePolicyCommand";
|
|
28
|
+
import { GetTableRecordExpirationConfigurationCommandInput, GetTableRecordExpirationConfigurationCommandOutput } from "./commands/GetTableRecordExpirationConfigurationCommand";
|
|
29
|
+
import { GetTableRecordExpirationJobStatusCommandInput, GetTableRecordExpirationJobStatusCommandOutput } from "./commands/GetTableRecordExpirationJobStatusCommand";
|
|
30
|
+
import { GetTableReplicationCommandInput, GetTableReplicationCommandOutput } from "./commands/GetTableReplicationCommand";
|
|
31
|
+
import { GetTableReplicationStatusCommandInput, GetTableReplicationStatusCommandOutput } from "./commands/GetTableReplicationStatusCommand";
|
|
32
|
+
import { GetTableStorageClassCommandInput, GetTableStorageClassCommandOutput } from "./commands/GetTableStorageClassCommand";
|
|
24
33
|
import { ListNamespacesCommandInput, ListNamespacesCommandOutput } from "./commands/ListNamespacesCommand";
|
|
25
34
|
import { ListTableBucketsCommandInput, ListTableBucketsCommandOutput } from "./commands/ListTableBucketsCommand";
|
|
26
35
|
import { ListTablesCommandInput, ListTablesCommandOutput } from "./commands/ListTablesCommand";
|
|
@@ -29,8 +38,12 @@ import { PutTableBucketEncryptionCommandInput, PutTableBucketEncryptionCommandOu
|
|
|
29
38
|
import { PutTableBucketMaintenanceConfigurationCommandInput, PutTableBucketMaintenanceConfigurationCommandOutput } from "./commands/PutTableBucketMaintenanceConfigurationCommand";
|
|
30
39
|
import { PutTableBucketMetricsConfigurationCommandInput, PutTableBucketMetricsConfigurationCommandOutput } from "./commands/PutTableBucketMetricsConfigurationCommand";
|
|
31
40
|
import { PutTableBucketPolicyCommandInput, PutTableBucketPolicyCommandOutput } from "./commands/PutTableBucketPolicyCommand";
|
|
41
|
+
import { PutTableBucketReplicationCommandInput, PutTableBucketReplicationCommandOutput } from "./commands/PutTableBucketReplicationCommand";
|
|
42
|
+
import { PutTableBucketStorageClassCommandInput, PutTableBucketStorageClassCommandOutput } from "./commands/PutTableBucketStorageClassCommand";
|
|
32
43
|
import { PutTableMaintenanceConfigurationCommandInput, PutTableMaintenanceConfigurationCommandOutput } from "./commands/PutTableMaintenanceConfigurationCommand";
|
|
33
44
|
import { PutTablePolicyCommandInput, PutTablePolicyCommandOutput } from "./commands/PutTablePolicyCommand";
|
|
45
|
+
import { PutTableRecordExpirationConfigurationCommandInput, PutTableRecordExpirationConfigurationCommandOutput } from "./commands/PutTableRecordExpirationConfigurationCommand";
|
|
46
|
+
import { PutTableReplicationCommandInput, PutTableReplicationCommandOutput } from "./commands/PutTableReplicationCommand";
|
|
34
47
|
import { RenameTableCommandInput, RenameTableCommandOutput } from "./commands/RenameTableCommand";
|
|
35
48
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
36
49
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
@@ -91,12 +104,24 @@ export interface S3Tables {
|
|
|
91
104
|
deleteTableBucketPolicy(args: DeleteTableBucketPolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTableBucketPolicyCommandOutput>;
|
|
92
105
|
deleteTableBucketPolicy(args: DeleteTableBucketPolicyCommandInput, cb: (err: any, data?: DeleteTableBucketPolicyCommandOutput) => void): void;
|
|
93
106
|
deleteTableBucketPolicy(args: DeleteTableBucketPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTableBucketPolicyCommandOutput) => void): void;
|
|
107
|
+
/**
|
|
108
|
+
* @see {@link DeleteTableBucketReplicationCommand}
|
|
109
|
+
*/
|
|
110
|
+
deleteTableBucketReplication(args: DeleteTableBucketReplicationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTableBucketReplicationCommandOutput>;
|
|
111
|
+
deleteTableBucketReplication(args: DeleteTableBucketReplicationCommandInput, cb: (err: any, data?: DeleteTableBucketReplicationCommandOutput) => void): void;
|
|
112
|
+
deleteTableBucketReplication(args: DeleteTableBucketReplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTableBucketReplicationCommandOutput) => void): void;
|
|
94
113
|
/**
|
|
95
114
|
* @see {@link DeleteTablePolicyCommand}
|
|
96
115
|
*/
|
|
97
116
|
deleteTablePolicy(args: DeleteTablePolicyCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTablePolicyCommandOutput>;
|
|
98
117
|
deleteTablePolicy(args: DeleteTablePolicyCommandInput, cb: (err: any, data?: DeleteTablePolicyCommandOutput) => void): void;
|
|
99
118
|
deleteTablePolicy(args: DeleteTablePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTablePolicyCommandOutput) => void): void;
|
|
119
|
+
/**
|
|
120
|
+
* @see {@link DeleteTableReplicationCommand}
|
|
121
|
+
*/
|
|
122
|
+
deleteTableReplication(args: DeleteTableReplicationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTableReplicationCommandOutput>;
|
|
123
|
+
deleteTableReplication(args: DeleteTableReplicationCommandInput, cb: (err: any, data?: DeleteTableReplicationCommandOutput) => void): void;
|
|
124
|
+
deleteTableReplication(args: DeleteTableReplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTableReplicationCommandOutput) => void): void;
|
|
100
125
|
/**
|
|
101
126
|
* @see {@link GetNamespaceCommand}
|
|
102
127
|
*/
|
|
@@ -140,6 +165,18 @@ export interface S3Tables {
|
|
|
140
165
|
getTableBucketPolicy(args: GetTableBucketPolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetTableBucketPolicyCommandOutput>;
|
|
141
166
|
getTableBucketPolicy(args: GetTableBucketPolicyCommandInput, cb: (err: any, data?: GetTableBucketPolicyCommandOutput) => void): void;
|
|
142
167
|
getTableBucketPolicy(args: GetTableBucketPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTableBucketPolicyCommandOutput) => void): void;
|
|
168
|
+
/**
|
|
169
|
+
* @see {@link GetTableBucketReplicationCommand}
|
|
170
|
+
*/
|
|
171
|
+
getTableBucketReplication(args: GetTableBucketReplicationCommandInput, options?: __HttpHandlerOptions): Promise<GetTableBucketReplicationCommandOutput>;
|
|
172
|
+
getTableBucketReplication(args: GetTableBucketReplicationCommandInput, cb: (err: any, data?: GetTableBucketReplicationCommandOutput) => void): void;
|
|
173
|
+
getTableBucketReplication(args: GetTableBucketReplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTableBucketReplicationCommandOutput) => void): void;
|
|
174
|
+
/**
|
|
175
|
+
* @see {@link GetTableBucketStorageClassCommand}
|
|
176
|
+
*/
|
|
177
|
+
getTableBucketStorageClass(args: GetTableBucketStorageClassCommandInput, options?: __HttpHandlerOptions): Promise<GetTableBucketStorageClassCommandOutput>;
|
|
178
|
+
getTableBucketStorageClass(args: GetTableBucketStorageClassCommandInput, cb: (err: any, data?: GetTableBucketStorageClassCommandOutput) => void): void;
|
|
179
|
+
getTableBucketStorageClass(args: GetTableBucketStorageClassCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTableBucketStorageClassCommandOutput) => void): void;
|
|
143
180
|
/**
|
|
144
181
|
* @see {@link GetTableEncryptionCommand}
|
|
145
182
|
*/
|
|
@@ -170,6 +207,36 @@ export interface S3Tables {
|
|
|
170
207
|
getTablePolicy(args: GetTablePolicyCommandInput, options?: __HttpHandlerOptions): Promise<GetTablePolicyCommandOutput>;
|
|
171
208
|
getTablePolicy(args: GetTablePolicyCommandInput, cb: (err: any, data?: GetTablePolicyCommandOutput) => void): void;
|
|
172
209
|
getTablePolicy(args: GetTablePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTablePolicyCommandOutput) => void): void;
|
|
210
|
+
/**
|
|
211
|
+
* @see {@link GetTableRecordExpirationConfigurationCommand}
|
|
212
|
+
*/
|
|
213
|
+
getTableRecordExpirationConfiguration(args: GetTableRecordExpirationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<GetTableRecordExpirationConfigurationCommandOutput>;
|
|
214
|
+
getTableRecordExpirationConfiguration(args: GetTableRecordExpirationConfigurationCommandInput, cb: (err: any, data?: GetTableRecordExpirationConfigurationCommandOutput) => void): void;
|
|
215
|
+
getTableRecordExpirationConfiguration(args: GetTableRecordExpirationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTableRecordExpirationConfigurationCommandOutput) => void): void;
|
|
216
|
+
/**
|
|
217
|
+
* @see {@link GetTableRecordExpirationJobStatusCommand}
|
|
218
|
+
*/
|
|
219
|
+
getTableRecordExpirationJobStatus(args: GetTableRecordExpirationJobStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetTableRecordExpirationJobStatusCommandOutput>;
|
|
220
|
+
getTableRecordExpirationJobStatus(args: GetTableRecordExpirationJobStatusCommandInput, cb: (err: any, data?: GetTableRecordExpirationJobStatusCommandOutput) => void): void;
|
|
221
|
+
getTableRecordExpirationJobStatus(args: GetTableRecordExpirationJobStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTableRecordExpirationJobStatusCommandOutput) => void): void;
|
|
222
|
+
/**
|
|
223
|
+
* @see {@link GetTableReplicationCommand}
|
|
224
|
+
*/
|
|
225
|
+
getTableReplication(args: GetTableReplicationCommandInput, options?: __HttpHandlerOptions): Promise<GetTableReplicationCommandOutput>;
|
|
226
|
+
getTableReplication(args: GetTableReplicationCommandInput, cb: (err: any, data?: GetTableReplicationCommandOutput) => void): void;
|
|
227
|
+
getTableReplication(args: GetTableReplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTableReplicationCommandOutput) => void): void;
|
|
228
|
+
/**
|
|
229
|
+
* @see {@link GetTableReplicationStatusCommand}
|
|
230
|
+
*/
|
|
231
|
+
getTableReplicationStatus(args: GetTableReplicationStatusCommandInput, options?: __HttpHandlerOptions): Promise<GetTableReplicationStatusCommandOutput>;
|
|
232
|
+
getTableReplicationStatus(args: GetTableReplicationStatusCommandInput, cb: (err: any, data?: GetTableReplicationStatusCommandOutput) => void): void;
|
|
233
|
+
getTableReplicationStatus(args: GetTableReplicationStatusCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTableReplicationStatusCommandOutput) => void): void;
|
|
234
|
+
/**
|
|
235
|
+
* @see {@link GetTableStorageClassCommand}
|
|
236
|
+
*/
|
|
237
|
+
getTableStorageClass(args: GetTableStorageClassCommandInput, options?: __HttpHandlerOptions): Promise<GetTableStorageClassCommandOutput>;
|
|
238
|
+
getTableStorageClass(args: GetTableStorageClassCommandInput, cb: (err: any, data?: GetTableStorageClassCommandOutput) => void): void;
|
|
239
|
+
getTableStorageClass(args: GetTableStorageClassCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetTableStorageClassCommandOutput) => void): void;
|
|
173
240
|
/**
|
|
174
241
|
* @see {@link ListNamespacesCommand}
|
|
175
242
|
*/
|
|
@@ -219,6 +286,18 @@ export interface S3Tables {
|
|
|
219
286
|
putTableBucketPolicy(args: PutTableBucketPolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutTableBucketPolicyCommandOutput>;
|
|
220
287
|
putTableBucketPolicy(args: PutTableBucketPolicyCommandInput, cb: (err: any, data?: PutTableBucketPolicyCommandOutput) => void): void;
|
|
221
288
|
putTableBucketPolicy(args: PutTableBucketPolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutTableBucketPolicyCommandOutput) => void): void;
|
|
289
|
+
/**
|
|
290
|
+
* @see {@link PutTableBucketReplicationCommand}
|
|
291
|
+
*/
|
|
292
|
+
putTableBucketReplication(args: PutTableBucketReplicationCommandInput, options?: __HttpHandlerOptions): Promise<PutTableBucketReplicationCommandOutput>;
|
|
293
|
+
putTableBucketReplication(args: PutTableBucketReplicationCommandInput, cb: (err: any, data?: PutTableBucketReplicationCommandOutput) => void): void;
|
|
294
|
+
putTableBucketReplication(args: PutTableBucketReplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutTableBucketReplicationCommandOutput) => void): void;
|
|
295
|
+
/**
|
|
296
|
+
* @see {@link PutTableBucketStorageClassCommand}
|
|
297
|
+
*/
|
|
298
|
+
putTableBucketStorageClass(args: PutTableBucketStorageClassCommandInput, options?: __HttpHandlerOptions): Promise<PutTableBucketStorageClassCommandOutput>;
|
|
299
|
+
putTableBucketStorageClass(args: PutTableBucketStorageClassCommandInput, cb: (err: any, data?: PutTableBucketStorageClassCommandOutput) => void): void;
|
|
300
|
+
putTableBucketStorageClass(args: PutTableBucketStorageClassCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutTableBucketStorageClassCommandOutput) => void): void;
|
|
222
301
|
/**
|
|
223
302
|
* @see {@link PutTableMaintenanceConfigurationCommand}
|
|
224
303
|
*/
|
|
@@ -231,6 +310,18 @@ export interface S3Tables {
|
|
|
231
310
|
putTablePolicy(args: PutTablePolicyCommandInput, options?: __HttpHandlerOptions): Promise<PutTablePolicyCommandOutput>;
|
|
232
311
|
putTablePolicy(args: PutTablePolicyCommandInput, cb: (err: any, data?: PutTablePolicyCommandOutput) => void): void;
|
|
233
312
|
putTablePolicy(args: PutTablePolicyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutTablePolicyCommandOutput) => void): void;
|
|
313
|
+
/**
|
|
314
|
+
* @see {@link PutTableRecordExpirationConfigurationCommand}
|
|
315
|
+
*/
|
|
316
|
+
putTableRecordExpirationConfiguration(args: PutTableRecordExpirationConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<PutTableRecordExpirationConfigurationCommandOutput>;
|
|
317
|
+
putTableRecordExpirationConfiguration(args: PutTableRecordExpirationConfigurationCommandInput, cb: (err: any, data?: PutTableRecordExpirationConfigurationCommandOutput) => void): void;
|
|
318
|
+
putTableRecordExpirationConfiguration(args: PutTableRecordExpirationConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutTableRecordExpirationConfigurationCommandOutput) => void): void;
|
|
319
|
+
/**
|
|
320
|
+
* @see {@link PutTableReplicationCommand}
|
|
321
|
+
*/
|
|
322
|
+
putTableReplication(args: PutTableReplicationCommandInput, options?: __HttpHandlerOptions): Promise<PutTableReplicationCommandOutput>;
|
|
323
|
+
putTableReplication(args: PutTableReplicationCommandInput, cb: (err: any, data?: PutTableReplicationCommandOutput) => void): void;
|
|
324
|
+
putTableReplication(args: PutTableReplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutTableReplicationCommandOutput) => void): void;
|
|
234
325
|
/**
|
|
235
326
|
* @see {@link RenameTableCommand}
|
|
236
327
|
*/
|
|
@@ -15,20 +15,29 @@ import { DeleteTableBucketCommandInput, DeleteTableBucketCommandOutput } from ".
|
|
|
15
15
|
import { DeleteTableBucketEncryptionCommandInput, DeleteTableBucketEncryptionCommandOutput } from "./commands/DeleteTableBucketEncryptionCommand";
|
|
16
16
|
import { DeleteTableBucketMetricsConfigurationCommandInput, DeleteTableBucketMetricsConfigurationCommandOutput } from "./commands/DeleteTableBucketMetricsConfigurationCommand";
|
|
17
17
|
import { DeleteTableBucketPolicyCommandInput, DeleteTableBucketPolicyCommandOutput } from "./commands/DeleteTableBucketPolicyCommand";
|
|
18
|
+
import { DeleteTableBucketReplicationCommandInput, DeleteTableBucketReplicationCommandOutput } from "./commands/DeleteTableBucketReplicationCommand";
|
|
18
19
|
import { DeleteTableCommandInput, DeleteTableCommandOutput } from "./commands/DeleteTableCommand";
|
|
19
20
|
import { DeleteTablePolicyCommandInput, DeleteTablePolicyCommandOutput } from "./commands/DeleteTablePolicyCommand";
|
|
21
|
+
import { DeleteTableReplicationCommandInput, DeleteTableReplicationCommandOutput } from "./commands/DeleteTableReplicationCommand";
|
|
20
22
|
import { GetNamespaceCommandInput, GetNamespaceCommandOutput } from "./commands/GetNamespaceCommand";
|
|
21
23
|
import { GetTableBucketCommandInput, GetTableBucketCommandOutput } from "./commands/GetTableBucketCommand";
|
|
22
24
|
import { GetTableBucketEncryptionCommandInput, GetTableBucketEncryptionCommandOutput } from "./commands/GetTableBucketEncryptionCommand";
|
|
23
25
|
import { GetTableBucketMaintenanceConfigurationCommandInput, GetTableBucketMaintenanceConfigurationCommandOutput } from "./commands/GetTableBucketMaintenanceConfigurationCommand";
|
|
24
26
|
import { GetTableBucketMetricsConfigurationCommandInput, GetTableBucketMetricsConfigurationCommandOutput } from "./commands/GetTableBucketMetricsConfigurationCommand";
|
|
25
27
|
import { GetTableBucketPolicyCommandInput, GetTableBucketPolicyCommandOutput } from "./commands/GetTableBucketPolicyCommand";
|
|
28
|
+
import { GetTableBucketReplicationCommandInput, GetTableBucketReplicationCommandOutput } from "./commands/GetTableBucketReplicationCommand";
|
|
29
|
+
import { GetTableBucketStorageClassCommandInput, GetTableBucketStorageClassCommandOutput } from "./commands/GetTableBucketStorageClassCommand";
|
|
26
30
|
import { GetTableCommandInput, GetTableCommandOutput } from "./commands/GetTableCommand";
|
|
27
31
|
import { GetTableEncryptionCommandInput, GetTableEncryptionCommandOutput } from "./commands/GetTableEncryptionCommand";
|
|
28
32
|
import { GetTableMaintenanceConfigurationCommandInput, GetTableMaintenanceConfigurationCommandOutput } from "./commands/GetTableMaintenanceConfigurationCommand";
|
|
29
33
|
import { GetTableMaintenanceJobStatusCommandInput, GetTableMaintenanceJobStatusCommandOutput } from "./commands/GetTableMaintenanceJobStatusCommand";
|
|
30
34
|
import { GetTableMetadataLocationCommandInput, GetTableMetadataLocationCommandOutput } from "./commands/GetTableMetadataLocationCommand";
|
|
31
35
|
import { GetTablePolicyCommandInput, GetTablePolicyCommandOutput } from "./commands/GetTablePolicyCommand";
|
|
36
|
+
import { GetTableRecordExpirationConfigurationCommandInput, GetTableRecordExpirationConfigurationCommandOutput } from "./commands/GetTableRecordExpirationConfigurationCommand";
|
|
37
|
+
import { GetTableRecordExpirationJobStatusCommandInput, GetTableRecordExpirationJobStatusCommandOutput } from "./commands/GetTableRecordExpirationJobStatusCommand";
|
|
38
|
+
import { GetTableReplicationCommandInput, GetTableReplicationCommandOutput } from "./commands/GetTableReplicationCommand";
|
|
39
|
+
import { GetTableReplicationStatusCommandInput, GetTableReplicationStatusCommandOutput } from "./commands/GetTableReplicationStatusCommand";
|
|
40
|
+
import { GetTableStorageClassCommandInput, GetTableStorageClassCommandOutput } from "./commands/GetTableStorageClassCommand";
|
|
32
41
|
import { ListNamespacesCommandInput, ListNamespacesCommandOutput } from "./commands/ListNamespacesCommand";
|
|
33
42
|
import { ListTableBucketsCommandInput, ListTableBucketsCommandOutput } from "./commands/ListTableBucketsCommand";
|
|
34
43
|
import { ListTablesCommandInput, ListTablesCommandOutput } from "./commands/ListTablesCommand";
|
|
@@ -37,8 +46,12 @@ import { PutTableBucketEncryptionCommandInput, PutTableBucketEncryptionCommandOu
|
|
|
37
46
|
import { PutTableBucketMaintenanceConfigurationCommandInput, PutTableBucketMaintenanceConfigurationCommandOutput } from "./commands/PutTableBucketMaintenanceConfigurationCommand";
|
|
38
47
|
import { PutTableBucketMetricsConfigurationCommandInput, PutTableBucketMetricsConfigurationCommandOutput } from "./commands/PutTableBucketMetricsConfigurationCommand";
|
|
39
48
|
import { PutTableBucketPolicyCommandInput, PutTableBucketPolicyCommandOutput } from "./commands/PutTableBucketPolicyCommand";
|
|
49
|
+
import { PutTableBucketReplicationCommandInput, PutTableBucketReplicationCommandOutput } from "./commands/PutTableBucketReplicationCommand";
|
|
50
|
+
import { PutTableBucketStorageClassCommandInput, PutTableBucketStorageClassCommandOutput } from "./commands/PutTableBucketStorageClassCommand";
|
|
40
51
|
import { PutTableMaintenanceConfigurationCommandInput, PutTableMaintenanceConfigurationCommandOutput } from "./commands/PutTableMaintenanceConfigurationCommand";
|
|
41
52
|
import { PutTablePolicyCommandInput, PutTablePolicyCommandOutput } from "./commands/PutTablePolicyCommand";
|
|
53
|
+
import { PutTableRecordExpirationConfigurationCommandInput, PutTableRecordExpirationConfigurationCommandOutput } from "./commands/PutTableRecordExpirationConfigurationCommand";
|
|
54
|
+
import { PutTableReplicationCommandInput, PutTableReplicationCommandOutput } from "./commands/PutTableReplicationCommand";
|
|
42
55
|
import { RenameTableCommandInput, RenameTableCommandOutput } from "./commands/RenameTableCommand";
|
|
43
56
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
44
57
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
@@ -49,11 +62,11 @@ export { __Client };
|
|
|
49
62
|
/**
|
|
50
63
|
* @public
|
|
51
64
|
*/
|
|
52
|
-
export type ServiceInputTypes = CreateNamespaceCommandInput | CreateTableBucketCommandInput | CreateTableCommandInput | DeleteNamespaceCommandInput | DeleteTableBucketCommandInput | DeleteTableBucketEncryptionCommandInput | DeleteTableBucketMetricsConfigurationCommandInput | DeleteTableBucketPolicyCommandInput | DeleteTableCommandInput | DeleteTablePolicyCommandInput | GetNamespaceCommandInput | GetTableBucketCommandInput | GetTableBucketEncryptionCommandInput | GetTableBucketMaintenanceConfigurationCommandInput | GetTableBucketMetricsConfigurationCommandInput | GetTableBucketPolicyCommandInput | GetTableCommandInput | GetTableEncryptionCommandInput | GetTableMaintenanceConfigurationCommandInput | GetTableMaintenanceJobStatusCommandInput | GetTableMetadataLocationCommandInput | GetTablePolicyCommandInput | ListNamespacesCommandInput | ListTableBucketsCommandInput | ListTablesCommandInput | ListTagsForResourceCommandInput | PutTableBucketEncryptionCommandInput | PutTableBucketMaintenanceConfigurationCommandInput | PutTableBucketMetricsConfigurationCommandInput | PutTableBucketPolicyCommandInput | PutTableMaintenanceConfigurationCommandInput | PutTablePolicyCommandInput | RenameTableCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateTableMetadataLocationCommandInput;
|
|
65
|
+
export type ServiceInputTypes = CreateNamespaceCommandInput | CreateTableBucketCommandInput | CreateTableCommandInput | DeleteNamespaceCommandInput | DeleteTableBucketCommandInput | DeleteTableBucketEncryptionCommandInput | DeleteTableBucketMetricsConfigurationCommandInput | DeleteTableBucketPolicyCommandInput | DeleteTableBucketReplicationCommandInput | DeleteTableCommandInput | DeleteTablePolicyCommandInput | DeleteTableReplicationCommandInput | GetNamespaceCommandInput | GetTableBucketCommandInput | GetTableBucketEncryptionCommandInput | GetTableBucketMaintenanceConfigurationCommandInput | GetTableBucketMetricsConfigurationCommandInput | GetTableBucketPolicyCommandInput | GetTableBucketReplicationCommandInput | GetTableBucketStorageClassCommandInput | GetTableCommandInput | GetTableEncryptionCommandInput | GetTableMaintenanceConfigurationCommandInput | GetTableMaintenanceJobStatusCommandInput | GetTableMetadataLocationCommandInput | GetTablePolicyCommandInput | GetTableRecordExpirationConfigurationCommandInput | GetTableRecordExpirationJobStatusCommandInput | GetTableReplicationCommandInput | GetTableReplicationStatusCommandInput | GetTableStorageClassCommandInput | ListNamespacesCommandInput | ListTableBucketsCommandInput | ListTablesCommandInput | ListTagsForResourceCommandInput | PutTableBucketEncryptionCommandInput | PutTableBucketMaintenanceConfigurationCommandInput | PutTableBucketMetricsConfigurationCommandInput | PutTableBucketPolicyCommandInput | PutTableBucketReplicationCommandInput | PutTableBucketStorageClassCommandInput | PutTableMaintenanceConfigurationCommandInput | PutTablePolicyCommandInput | PutTableRecordExpirationConfigurationCommandInput | PutTableReplicationCommandInput | RenameTableCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateTableMetadataLocationCommandInput;
|
|
53
66
|
/**
|
|
54
67
|
* @public
|
|
55
68
|
*/
|
|
56
|
-
export type ServiceOutputTypes = CreateNamespaceCommandOutput | CreateTableBucketCommandOutput | CreateTableCommandOutput | DeleteNamespaceCommandOutput | DeleteTableBucketCommandOutput | DeleteTableBucketEncryptionCommandOutput | DeleteTableBucketMetricsConfigurationCommandOutput | DeleteTableBucketPolicyCommandOutput | DeleteTableCommandOutput | DeleteTablePolicyCommandOutput | GetNamespaceCommandOutput | GetTableBucketCommandOutput | GetTableBucketEncryptionCommandOutput | GetTableBucketMaintenanceConfigurationCommandOutput | GetTableBucketMetricsConfigurationCommandOutput | GetTableBucketPolicyCommandOutput | GetTableCommandOutput | GetTableEncryptionCommandOutput | GetTableMaintenanceConfigurationCommandOutput | GetTableMaintenanceJobStatusCommandOutput | GetTableMetadataLocationCommandOutput | GetTablePolicyCommandOutput | ListNamespacesCommandOutput | ListTableBucketsCommandOutput | ListTablesCommandOutput | ListTagsForResourceCommandOutput | PutTableBucketEncryptionCommandOutput | PutTableBucketMaintenanceConfigurationCommandOutput | PutTableBucketMetricsConfigurationCommandOutput | PutTableBucketPolicyCommandOutput | PutTableMaintenanceConfigurationCommandOutput | PutTablePolicyCommandOutput | RenameTableCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateTableMetadataLocationCommandOutput;
|
|
69
|
+
export type ServiceOutputTypes = CreateNamespaceCommandOutput | CreateTableBucketCommandOutput | CreateTableCommandOutput | DeleteNamespaceCommandOutput | DeleteTableBucketCommandOutput | DeleteTableBucketEncryptionCommandOutput | DeleteTableBucketMetricsConfigurationCommandOutput | DeleteTableBucketPolicyCommandOutput | DeleteTableBucketReplicationCommandOutput | DeleteTableCommandOutput | DeleteTablePolicyCommandOutput | DeleteTableReplicationCommandOutput | GetNamespaceCommandOutput | GetTableBucketCommandOutput | GetTableBucketEncryptionCommandOutput | GetTableBucketMaintenanceConfigurationCommandOutput | GetTableBucketMetricsConfigurationCommandOutput | GetTableBucketPolicyCommandOutput | GetTableBucketReplicationCommandOutput | GetTableBucketStorageClassCommandOutput | GetTableCommandOutput | GetTableEncryptionCommandOutput | GetTableMaintenanceConfigurationCommandOutput | GetTableMaintenanceJobStatusCommandOutput | GetTableMetadataLocationCommandOutput | GetTablePolicyCommandOutput | GetTableRecordExpirationConfigurationCommandOutput | GetTableRecordExpirationJobStatusCommandOutput | GetTableReplicationCommandOutput | GetTableReplicationStatusCommandOutput | GetTableStorageClassCommandOutput | ListNamespacesCommandOutput | ListTableBucketsCommandOutput | ListTablesCommandOutput | ListTagsForResourceCommandOutput | PutTableBucketEncryptionCommandOutput | PutTableBucketMaintenanceConfigurationCommandOutput | PutTableBucketMetricsConfigurationCommandOutput | PutTableBucketPolicyCommandOutput | PutTableBucketReplicationCommandOutput | PutTableBucketStorageClassCommandOutput | PutTableMaintenanceConfigurationCommandOutput | PutTablePolicyCommandOutput | PutTableRecordExpirationConfigurationCommandOutput | PutTableReplicationCommandOutput | RenameTableCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateTableMetadataLocationCommandOutput;
|
|
57
70
|
/**
|
|
58
71
|
* @public
|
|
59
72
|
*/
|
|
@@ -27,7 +27,7 @@ declare const CreateTableBucketCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Creates a table bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-buckets-create.html">Creating a table bucket</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <ul> <li> <p>You must have the <code>s3tables:CreateTableBucket</code> permission to use this operation. </p> </li> <li> <p>If you use this operation with the optional <code>encryptionConfiguration</code> parameter you must have the <code>s3tables:PutTableBucketEncryption</code> permission.</p> </li> <li> <p>
|
|
30
|
+
* <p>Creates a table bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-buckets-create.html">Creating a table bucket</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <ul> <li> <p>You must have the <code>s3tables:CreateTableBucket</code> permission to use this operation. </p> </li> <li> <p>If you use this operation with the optional <code>encryptionConfiguration</code> parameter you must have the <code>s3tables:PutTableBucketEncryption</code> permission.</p> </li> <li> <p>If you use this operation with the <code>storageClassConfiguration</code> request parameter, you must have the <code>s3tables:PutTableBucketStorageClass</code> permission.</p> </li> <li> <p>To create a table bucket with tags, you must have the <code>s3tables:TagResource</code> permission in addition to <code>s3tables:CreateTableBucket</code> permission.</p> </li> </ul> </dd> </dl>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -42,6 +42,9 @@ declare const CreateTableBucketCommand_base: {
|
|
|
42
42
|
* sseAlgorithm: "AES256" || "aws:kms", // required
|
|
43
43
|
* kmsKeyArn: "STRING_VALUE",
|
|
44
44
|
* },
|
|
45
|
+
* storageClassConfiguration: { // StorageClassConfiguration
|
|
46
|
+
* storageClass: "STANDARD" || "INTELLIGENT_TIERING", // required
|
|
47
|
+
* },
|
|
45
48
|
* tags: { // Tags
|
|
46
49
|
* "<keys>": "STRING_VALUE",
|
|
47
50
|
* },
|
|
@@ -27,7 +27,7 @@ declare const CreateTableCommand_base: {
|
|
|
27
27
|
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
28
|
};
|
|
29
29
|
/**
|
|
30
|
-
* <p>Creates a new table associated with the given namespace in a table bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-create.html">Creating an Amazon S3 table</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <ul> <li> <p>You must have the <code>s3tables:CreateTable</code> permission to use this operation. </p> </li> <li> <p>If you use this operation with the optional <code>metadata</code> request parameter you must have the <code>s3tables:PutTableData</code> permission. </p> </li> <li> <p>If you use this operation with the optional <code>encryptionConfiguration</code> request parameter you must have the <code>s3tables:PutTableEncryption</code> permission. </p> </li> <li> <p>
|
|
30
|
+
* <p>Creates a new table associated with the given namespace in a table bucket. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-create.html">Creating an Amazon S3 table</a> in the <i>Amazon Simple Storage Service User Guide</i>.</p> <dl> <dt>Permissions</dt> <dd> <ul> <li> <p>You must have the <code>s3tables:CreateTable</code> permission to use this operation. </p> </li> <li> <p>If you use this operation with the optional <code>metadata</code> request parameter you must have the <code>s3tables:PutTableData</code> permission. </p> </li> <li> <p>If you use this operation with the optional <code>encryptionConfiguration</code> request parameter you must have the <code>s3tables:PutTableEncryption</code> permission. </p> </li> <li> <p>If you use this operation with the <code>storageClassConfiguration</code> request parameter, you must have the <code>s3tables:PutTableStorageClass</code> permission.</p> </li> <li> <p>To create a table with tags, you must have the <code>s3tables:TagResource</code> permission in addition to <code>s3tables:CreateTable</code> permission.</p> </li> </ul> <note> <p>Additionally, 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> </note> </dd> </dl>
|
|
31
31
|
* @example
|
|
32
32
|
* Use a bare-bones client and the command you need to make an API call.
|
|
33
33
|
* ```javascript
|
|
@@ -52,12 +52,18 @@ declare const CreateTableCommand_base: {
|
|
|
52
52
|
* },
|
|
53
53
|
* ],
|
|
54
54
|
* },
|
|
55
|
+
* properties: { // TableProperties
|
|
56
|
+
* "<keys>": "STRING_VALUE",
|
|
57
|
+
* },
|
|
55
58
|
* },
|
|
56
59
|
* },
|
|
57
60
|
* encryptionConfiguration: { // EncryptionConfiguration
|
|
58
61
|
* sseAlgorithm: "AES256" || "aws:kms", // required
|
|
59
62
|
* kmsKeyArn: "STRING_VALUE",
|
|
60
63
|
* },
|
|
64
|
+
* storageClassConfiguration: { // StorageClassConfiguration
|
|
65
|
+
* storageClass: "STANDARD" || "INTELLIGENT_TIERING", // required
|
|
66
|
+
* },
|
|
61
67
|
* tags: { // Tags
|
|
62
68
|
* "<keys>": "STRING_VALUE",
|
|
63
69
|
* },
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteTableBucketReplicationRequest } from "../models/models_0";
|
|
4
|
+
import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteTableBucketReplicationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteTableBucketReplicationCommandInput extends DeleteTableBucketReplicationRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteTableBucketReplicationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteTableBucketReplicationCommandOutput extends __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteTableBucketReplicationCommand_base: {
|
|
25
|
+
new (input: DeleteTableBucketReplicationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteTableBucketReplicationCommandInput, DeleteTableBucketReplicationCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: DeleteTableBucketReplicationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteTableBucketReplicationCommandInput, DeleteTableBucketReplicationCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Deletes the replication configuration for a table bucket. After deletion, new table updates will no longer be replicated to destination buckets, though existing replicated tables will remain in destination buckets.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:DeleteTableBucketReplication</code> permission to use this operation.</p> </dd> </dl>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { S3TablesClient, DeleteTableBucketReplicationCommand } from "@aws-sdk/client-s3tables"; // ES Modules import
|
|
35
|
+
* // const { S3TablesClient, DeleteTableBucketReplicationCommand } = require("@aws-sdk/client-s3tables"); // CommonJS import
|
|
36
|
+
* // import type { S3TablesClientConfig } from "@aws-sdk/client-s3tables";
|
|
37
|
+
* const config = {}; // type is S3TablesClientConfig
|
|
38
|
+
* const client = new S3TablesClient(config);
|
|
39
|
+
* const input = { // DeleteTableBucketReplicationRequest
|
|
40
|
+
* tableBucketARN: "STRING_VALUE", // required
|
|
41
|
+
* versionToken: "STRING_VALUE",
|
|
42
|
+
* };
|
|
43
|
+
* const command = new DeleteTableBucketReplicationCommand(input);
|
|
44
|
+
* const response = await client.send(command);
|
|
45
|
+
* // {};
|
|
46
|
+
*
|
|
47
|
+
* ```
|
|
48
|
+
*
|
|
49
|
+
* @param DeleteTableBucketReplicationCommandInput - {@link DeleteTableBucketReplicationCommandInput}
|
|
50
|
+
* @returns {@link DeleteTableBucketReplicationCommandOutput}
|
|
51
|
+
* @see {@link DeleteTableBucketReplicationCommandInput} for command's `input` shape.
|
|
52
|
+
* @see {@link DeleteTableBucketReplicationCommandOutput} for command's `response` shape.
|
|
53
|
+
* @see {@link S3TablesClientResolvedConfig | config} for S3TablesClient's `config` shape.
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
56
|
+
* <p>The action cannot be performed because you do not have the required permission.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link BadRequestException} (client fault)
|
|
59
|
+
* <p>The request is invalid or malformed.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ConflictException} (client fault)
|
|
62
|
+
* <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
65
|
+
* <p>The caller isn't authorized to make the request.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
68
|
+
* <p>The request failed due to an internal server error.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link NotFoundException} (client fault)
|
|
71
|
+
* <p>The request was rejected because the specified resource could not be found.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
74
|
+
* <p>The limit on the number of requests per second was exceeded.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link S3TablesServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from S3Tables service.</p>
|
|
78
|
+
*
|
|
79
|
+
*
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
export declare class DeleteTableBucketReplicationCommand extends DeleteTableBucketReplicationCommand_base {
|
|
83
|
+
/** @internal type navigation helper, not in runtime. */
|
|
84
|
+
protected static __types: {
|
|
85
|
+
api: {
|
|
86
|
+
input: DeleteTableBucketReplicationRequest;
|
|
87
|
+
output: {};
|
|
88
|
+
};
|
|
89
|
+
sdk: {
|
|
90
|
+
input: DeleteTableBucketReplicationCommandInput;
|
|
91
|
+
output: DeleteTableBucketReplicationCommandOutput;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteTableReplicationRequest } from "../models/models_0";
|
|
4
|
+
import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link DeleteTableReplicationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteTableReplicationCommandInput extends DeleteTableReplicationRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteTableReplicationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteTableReplicationCommandOutput extends __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteTableReplicationCommand_base: {
|
|
25
|
+
new (input: DeleteTableReplicationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteTableReplicationCommandInput, DeleteTableReplicationCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: DeleteTableReplicationCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteTableReplicationCommandInput, DeleteTableReplicationCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Deletes the replication configuration for a specific table. After deletion, new updates to this table will no longer be replicated to destination tables, though existing replicated copies will remain in destination buckets.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:DeleteTableReplication</code> permission to use this operation.</p> </dd> </dl>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { S3TablesClient, DeleteTableReplicationCommand } from "@aws-sdk/client-s3tables"; // ES Modules import
|
|
35
|
+
* // const { S3TablesClient, DeleteTableReplicationCommand } = require("@aws-sdk/client-s3tables"); // CommonJS import
|
|
36
|
+
* // import type { S3TablesClientConfig } from "@aws-sdk/client-s3tables";
|
|
37
|
+
* const config = {}; // type is S3TablesClientConfig
|
|
38
|
+
* const client = new S3TablesClient(config);
|
|
39
|
+
* const input = { // DeleteTableReplicationRequest
|
|
40
|
+
* tableArn: "STRING_VALUE", // required
|
|
41
|
+
* versionToken: "STRING_VALUE", // required
|
|
42
|
+
* };
|
|
43
|
+
* const command = new DeleteTableReplicationCommand(input);
|
|
44
|
+
* const response = await client.send(command);
|
|
45
|
+
* // {};
|
|
46
|
+
*
|
|
47
|
+
* ```
|
|
48
|
+
*
|
|
49
|
+
* @param DeleteTableReplicationCommandInput - {@link DeleteTableReplicationCommandInput}
|
|
50
|
+
* @returns {@link DeleteTableReplicationCommandOutput}
|
|
51
|
+
* @see {@link DeleteTableReplicationCommandInput} for command's `input` shape.
|
|
52
|
+
* @see {@link DeleteTableReplicationCommandOutput} for command's `response` shape.
|
|
53
|
+
* @see {@link S3TablesClientResolvedConfig | config} for S3TablesClient's `config` shape.
|
|
54
|
+
*
|
|
55
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
56
|
+
* <p>The action cannot be performed because you do not have the required permission.</p>
|
|
57
|
+
*
|
|
58
|
+
* @throws {@link BadRequestException} (client fault)
|
|
59
|
+
* <p>The request is invalid or malformed.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ConflictException} (client fault)
|
|
62
|
+
* <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
65
|
+
* <p>The caller isn't authorized to make the request.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
68
|
+
* <p>The request failed due to an internal server error.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link NotFoundException} (client fault)
|
|
71
|
+
* <p>The request was rejected because the specified resource could not be found.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
74
|
+
* <p>The limit on the number of requests per second was exceeded.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link S3TablesServiceException}
|
|
77
|
+
* <p>Base exception class for all service exceptions from S3Tables service.</p>
|
|
78
|
+
*
|
|
79
|
+
*
|
|
80
|
+
* @public
|
|
81
|
+
*/
|
|
82
|
+
export declare class DeleteTableReplicationCommand extends DeleteTableReplicationCommand_base {
|
|
83
|
+
/** @internal type navigation helper, not in runtime. */
|
|
84
|
+
protected static __types: {
|
|
85
|
+
api: {
|
|
86
|
+
input: DeleteTableReplicationRequest;
|
|
87
|
+
output: {};
|
|
88
|
+
};
|
|
89
|
+
sdk: {
|
|
90
|
+
input: DeleteTableReplicationCommandInput;
|
|
91
|
+
output: DeleteTableReplicationCommandOutput;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
}
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { GetTableBucketReplicationRequest, GetTableBucketReplicationResponse } from "../models/models_0";
|
|
4
|
+
import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetTableBucketReplicationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetTableBucketReplicationCommandInput extends GetTableBucketReplicationRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetTableBucketReplicationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetTableBucketReplicationCommandOutput extends GetTableBucketReplicationResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetTableBucketReplicationCommand_base: {
|
|
25
|
+
new (input: GetTableBucketReplicationCommandInput): import("@smithy/smithy-client").CommandImpl<GetTableBucketReplicationCommandInput, GetTableBucketReplicationCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetTableBucketReplicationCommandInput): import("@smithy/smithy-client").CommandImpl<GetTableBucketReplicationCommandInput, GetTableBucketReplicationCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Retrieves the replication configuration for a table bucket.This operation returns the IAM role, <code>versionToken</code>, and replication rules that define how tables in this bucket are replicated to other buckets.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:GetTableBucketReplication</code> permission to use this operation.</p> </dd> </dl>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { S3TablesClient, GetTableBucketReplicationCommand } from "@aws-sdk/client-s3tables"; // ES Modules import
|
|
35
|
+
* // const { S3TablesClient, GetTableBucketReplicationCommand } = require("@aws-sdk/client-s3tables"); // CommonJS import
|
|
36
|
+
* // import type { S3TablesClientConfig } from "@aws-sdk/client-s3tables";
|
|
37
|
+
* const config = {}; // type is S3TablesClientConfig
|
|
38
|
+
* const client = new S3TablesClient(config);
|
|
39
|
+
* const input = { // GetTableBucketReplicationRequest
|
|
40
|
+
* tableBucketARN: "STRING_VALUE", // required
|
|
41
|
+
* };
|
|
42
|
+
* const command = new GetTableBucketReplicationCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // { // GetTableBucketReplicationResponse
|
|
45
|
+
* // versionToken: "STRING_VALUE", // required
|
|
46
|
+
* // configuration: { // TableBucketReplicationConfiguration
|
|
47
|
+
* // role: "STRING_VALUE", // required
|
|
48
|
+
* // rules: [ // TableBucketReplicationRules // required
|
|
49
|
+
* // { // TableBucketReplicationRule
|
|
50
|
+
* // destinations: [ // ReplicationDestinations // required
|
|
51
|
+
* // { // ReplicationDestination
|
|
52
|
+
* // destinationTableBucketARN: "STRING_VALUE", // required
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // },
|
|
56
|
+
* // ],
|
|
57
|
+
* // },
|
|
58
|
+
* // };
|
|
59
|
+
*
|
|
60
|
+
* ```
|
|
61
|
+
*
|
|
62
|
+
* @param GetTableBucketReplicationCommandInput - {@link GetTableBucketReplicationCommandInput}
|
|
63
|
+
* @returns {@link GetTableBucketReplicationCommandOutput}
|
|
64
|
+
* @see {@link GetTableBucketReplicationCommandInput} for command's `input` shape.
|
|
65
|
+
* @see {@link GetTableBucketReplicationCommandOutput} for command's `response` shape.
|
|
66
|
+
* @see {@link S3TablesClientResolvedConfig | config} for S3TablesClient's `config` shape.
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
69
|
+
* <p>The action cannot be performed because you do not have the required permission.</p>
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link BadRequestException} (client fault)
|
|
72
|
+
* <p>The request is invalid or malformed.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link ConflictException} (client fault)
|
|
75
|
+
* <p>The request failed because there is a conflict with a previous write. You can retry the request.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
78
|
+
* <p>The caller isn't authorized to make the request.</p>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
81
|
+
* <p>The request failed due to an internal server error.</p>
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link NotFoundException} (client fault)
|
|
84
|
+
* <p>The request was rejected because the specified resource could not be found.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
87
|
+
* <p>The limit on the number of requests per second was exceeded.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link S3TablesServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from S3Tables service.</p>
|
|
91
|
+
*
|
|
92
|
+
*
|
|
93
|
+
* @public
|
|
94
|
+
*/
|
|
95
|
+
export declare class GetTableBucketReplicationCommand extends GetTableBucketReplicationCommand_base {
|
|
96
|
+
/** @internal type navigation helper, not in runtime. */
|
|
97
|
+
protected static __types: {
|
|
98
|
+
api: {
|
|
99
|
+
input: GetTableBucketReplicationRequest;
|
|
100
|
+
output: GetTableBucketReplicationResponse;
|
|
101
|
+
};
|
|
102
|
+
sdk: {
|
|
103
|
+
input: GetTableBucketReplicationCommandInput;
|
|
104
|
+
output: GetTableBucketReplicationCommandOutput;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
}
|