@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
|
@@ -12,8 +12,10 @@ export declare var DeleteNamespaceRequest: StaticStructureSchema;
|
|
|
12
12
|
export declare var DeleteTableBucketEncryptionRequest: StaticStructureSchema;
|
|
13
13
|
export declare var DeleteTableBucketMetricsConfigurationRequest: StaticStructureSchema;
|
|
14
14
|
export declare var DeleteTableBucketPolicyRequest: StaticStructureSchema;
|
|
15
|
+
export declare var DeleteTableBucketReplicationRequest: StaticStructureSchema;
|
|
15
16
|
export declare var DeleteTableBucketRequest: StaticStructureSchema;
|
|
16
17
|
export declare var DeleteTablePolicyRequest: StaticStructureSchema;
|
|
18
|
+
export declare var DeleteTableReplicationRequest: StaticStructureSchema;
|
|
17
19
|
export declare var DeleteTableRequest: StaticStructureSchema;
|
|
18
20
|
export declare var EncryptionConfiguration: StaticStructureSchema;
|
|
19
21
|
export declare var ForbiddenException: StaticErrorSchema;
|
|
@@ -27,8 +29,12 @@ export declare var GetTableBucketMetricsConfigurationRequest: StaticStructureSch
|
|
|
27
29
|
export declare var GetTableBucketMetricsConfigurationResponse: StaticStructureSchema;
|
|
28
30
|
export declare var GetTableBucketPolicyRequest: StaticStructureSchema;
|
|
29
31
|
export declare var GetTableBucketPolicyResponse: StaticStructureSchema;
|
|
32
|
+
export declare var GetTableBucketReplicationRequest: StaticStructureSchema;
|
|
33
|
+
export declare var GetTableBucketReplicationResponse: StaticStructureSchema;
|
|
30
34
|
export declare var GetTableBucketRequest: StaticStructureSchema;
|
|
31
35
|
export declare var GetTableBucketResponse: StaticStructureSchema;
|
|
36
|
+
export declare var GetTableBucketStorageClassRequest: StaticStructureSchema;
|
|
37
|
+
export declare var GetTableBucketStorageClassResponse: StaticStructureSchema;
|
|
32
38
|
export declare var GetTableEncryptionRequest: StaticStructureSchema;
|
|
33
39
|
export declare var GetTableEncryptionResponse: StaticStructureSchema;
|
|
34
40
|
export declare var GetTableMaintenanceConfigurationRequest: StaticStructureSchema;
|
|
@@ -39,14 +45,25 @@ export declare var GetTableMetadataLocationRequest: StaticStructureSchema;
|
|
|
39
45
|
export declare var GetTableMetadataLocationResponse: StaticStructureSchema;
|
|
40
46
|
export declare var GetTablePolicyRequest: StaticStructureSchema;
|
|
41
47
|
export declare var GetTablePolicyResponse: StaticStructureSchema;
|
|
48
|
+
export declare var GetTableRecordExpirationConfigurationRequest: StaticStructureSchema;
|
|
49
|
+
export declare var GetTableRecordExpirationConfigurationResponse: StaticStructureSchema;
|
|
50
|
+
export declare var GetTableRecordExpirationJobStatusRequest: StaticStructureSchema;
|
|
51
|
+
export declare var GetTableRecordExpirationJobStatusResponse: StaticStructureSchema;
|
|
52
|
+
export declare var GetTableReplicationRequest: StaticStructureSchema;
|
|
53
|
+
export declare var GetTableReplicationResponse: StaticStructureSchema;
|
|
54
|
+
export declare var GetTableReplicationStatusRequest: StaticStructureSchema;
|
|
55
|
+
export declare var GetTableReplicationStatusResponse: StaticStructureSchema;
|
|
42
56
|
export declare var GetTableRequest: StaticStructureSchema;
|
|
43
57
|
export declare var GetTableResponse: StaticStructureSchema;
|
|
58
|
+
export declare var GetTableStorageClassRequest: StaticStructureSchema;
|
|
59
|
+
export declare var GetTableStorageClassResponse: StaticStructureSchema;
|
|
44
60
|
export declare var IcebergCompactionSettings: StaticStructureSchema;
|
|
45
61
|
export declare var IcebergMetadata: StaticStructureSchema;
|
|
46
62
|
export declare var IcebergSchema: StaticStructureSchema;
|
|
47
63
|
export declare var IcebergSnapshotManagementSettings: StaticStructureSchema;
|
|
48
64
|
export declare var IcebergUnreferencedFileRemovalSettings: StaticStructureSchema;
|
|
49
65
|
export declare var InternalServerErrorException: StaticErrorSchema;
|
|
66
|
+
export declare var LastSuccessfulReplicatedUpdate: StaticStructureSchema;
|
|
50
67
|
export declare var ListNamespacesRequest: StaticStructureSchema;
|
|
51
68
|
export declare var ListNamespacesResponse: StaticStructureSchema;
|
|
52
69
|
export declare var ListTableBucketsRequest: StaticStructureSchema;
|
|
@@ -55,20 +72,39 @@ export declare var ListTablesRequest: StaticStructureSchema;
|
|
|
55
72
|
export declare var ListTablesResponse: StaticStructureSchema;
|
|
56
73
|
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
57
74
|
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
75
|
+
export declare var ManagedTableInformation: StaticStructureSchema;
|
|
76
|
+
export declare var MethodNotAllowedException: StaticErrorSchema;
|
|
58
77
|
export declare var NamespaceSummary: StaticStructureSchema;
|
|
59
78
|
export declare var NotFoundException: StaticErrorSchema;
|
|
60
79
|
export declare var PutTableBucketEncryptionRequest: StaticStructureSchema;
|
|
61
80
|
export declare var PutTableBucketMaintenanceConfigurationRequest: StaticStructureSchema;
|
|
62
81
|
export declare var PutTableBucketMetricsConfigurationRequest: StaticStructureSchema;
|
|
63
82
|
export declare var PutTableBucketPolicyRequest: StaticStructureSchema;
|
|
83
|
+
export declare var PutTableBucketReplicationRequest: StaticStructureSchema;
|
|
84
|
+
export declare var PutTableBucketReplicationResponse: StaticStructureSchema;
|
|
85
|
+
export declare var PutTableBucketStorageClassRequest: StaticStructureSchema;
|
|
64
86
|
export declare var PutTableMaintenanceConfigurationRequest: StaticStructureSchema;
|
|
65
87
|
export declare var PutTablePolicyRequest: StaticStructureSchema;
|
|
88
|
+
export declare var PutTableRecordExpirationConfigurationRequest: StaticStructureSchema;
|
|
89
|
+
export declare var PutTableReplicationRequest: StaticStructureSchema;
|
|
90
|
+
export declare var PutTableReplicationResponse: StaticStructureSchema;
|
|
66
91
|
export declare var RenameTableRequest: StaticStructureSchema;
|
|
92
|
+
export declare var ReplicationDestination: StaticStructureSchema;
|
|
93
|
+
export declare var ReplicationDestinationStatusModel: StaticStructureSchema;
|
|
94
|
+
export declare var ReplicationInformation: StaticStructureSchema;
|
|
67
95
|
export declare var SchemaField: StaticStructureSchema;
|
|
96
|
+
export declare var StorageClassConfiguration: StaticStructureSchema;
|
|
68
97
|
export declare var TableBucketMaintenanceConfigurationValue: StaticStructureSchema;
|
|
98
|
+
export declare var TableBucketReplicationConfiguration: StaticStructureSchema;
|
|
99
|
+
export declare var TableBucketReplicationRule: StaticStructureSchema;
|
|
69
100
|
export declare var TableBucketSummary: StaticStructureSchema;
|
|
70
101
|
export declare var TableMaintenanceConfigurationValue: StaticStructureSchema;
|
|
71
102
|
export declare var TableMaintenanceJobStatusValue: StaticStructureSchema;
|
|
103
|
+
export declare var TableRecordExpirationConfigurationValue: StaticStructureSchema;
|
|
104
|
+
export declare var TableRecordExpirationJobMetrics: StaticStructureSchema;
|
|
105
|
+
export declare var TableRecordExpirationSettings: StaticStructureSchema;
|
|
106
|
+
export declare var TableReplicationConfiguration: StaticStructureSchema;
|
|
107
|
+
export declare var TableReplicationRule: StaticStructureSchema;
|
|
72
108
|
export declare var TableSummary: StaticStructureSchema;
|
|
73
109
|
export declare var TagResourceRequest: StaticStructureSchema;
|
|
74
110
|
export declare var TagResourceResponse: StaticStructureSchema;
|
|
@@ -81,13 +117,18 @@ export declare var __Unit: "unit";
|
|
|
81
117
|
export declare var S3TablesServiceException: StaticErrorSchema;
|
|
82
118
|
export declare var NamespaceList: number;
|
|
83
119
|
export declare var NamespaceSummaryList: StaticListSchema;
|
|
120
|
+
export declare var ReplicationDestinations: StaticListSchema;
|
|
121
|
+
export declare var ReplicationDestinationStatuses: StaticListSchema;
|
|
84
122
|
export declare var SchemaFieldList: StaticListSchema;
|
|
123
|
+
export declare var TableBucketReplicationRules: StaticListSchema;
|
|
85
124
|
export declare var TableBucketSummaryList: StaticListSchema;
|
|
125
|
+
export declare var TableReplicationRules: StaticListSchema;
|
|
86
126
|
export declare var TableSummaryList: StaticListSchema;
|
|
87
127
|
export declare var TagKeyList: number;
|
|
88
128
|
export declare var TableBucketMaintenanceConfiguration: StaticMapSchema;
|
|
89
129
|
export declare var TableMaintenanceConfiguration: StaticMapSchema;
|
|
90
130
|
export declare var TableMaintenanceJobStatus: StaticMapSchema;
|
|
131
|
+
export declare var TableProperties: number;
|
|
91
132
|
export declare var Tags: number;
|
|
92
133
|
export declare var TableBucketMaintenanceSettings: StaticStructureSchema;
|
|
93
134
|
export declare var TableMaintenanceSettings: StaticStructureSchema;
|
|
@@ -101,7 +142,9 @@ export declare var DeleteTableBucket: StaticOperationSchema;
|
|
|
101
142
|
export declare var DeleteTableBucketEncryption: StaticOperationSchema;
|
|
102
143
|
export declare var DeleteTableBucketMetricsConfiguration: StaticOperationSchema;
|
|
103
144
|
export declare var DeleteTableBucketPolicy: StaticOperationSchema;
|
|
145
|
+
export declare var DeleteTableBucketReplication: StaticOperationSchema;
|
|
104
146
|
export declare var DeleteTablePolicy: StaticOperationSchema;
|
|
147
|
+
export declare var DeleteTableReplication: StaticOperationSchema;
|
|
105
148
|
export declare var GetNamespace: StaticOperationSchema;
|
|
106
149
|
export declare var GetTable: StaticOperationSchema;
|
|
107
150
|
export declare var GetTableBucket: StaticOperationSchema;
|
|
@@ -109,11 +152,18 @@ export declare var GetTableBucketEncryption: StaticOperationSchema;
|
|
|
109
152
|
export declare var GetTableBucketMaintenanceConfiguration: StaticOperationSchema;
|
|
110
153
|
export declare var GetTableBucketMetricsConfiguration: StaticOperationSchema;
|
|
111
154
|
export declare var GetTableBucketPolicy: StaticOperationSchema;
|
|
155
|
+
export declare var GetTableBucketReplication: StaticOperationSchema;
|
|
156
|
+
export declare var GetTableBucketStorageClass: StaticOperationSchema;
|
|
112
157
|
export declare var GetTableEncryption: StaticOperationSchema;
|
|
113
158
|
export declare var GetTableMaintenanceConfiguration: StaticOperationSchema;
|
|
114
159
|
export declare var GetTableMaintenanceJobStatus: StaticOperationSchema;
|
|
115
160
|
export declare var GetTableMetadataLocation: StaticOperationSchema;
|
|
116
161
|
export declare var GetTablePolicy: StaticOperationSchema;
|
|
162
|
+
export declare var GetTableRecordExpirationConfiguration: StaticOperationSchema;
|
|
163
|
+
export declare var GetTableRecordExpirationJobStatus: StaticOperationSchema;
|
|
164
|
+
export declare var GetTableReplication: StaticOperationSchema;
|
|
165
|
+
export declare var GetTableReplicationStatus: StaticOperationSchema;
|
|
166
|
+
export declare var GetTableStorageClass: StaticOperationSchema;
|
|
117
167
|
export declare var ListNamespaces: StaticOperationSchema;
|
|
118
168
|
export declare var ListTableBuckets: StaticOperationSchema;
|
|
119
169
|
export declare var ListTables: StaticOperationSchema;
|
|
@@ -122,8 +172,12 @@ export declare var PutTableBucketEncryption: StaticOperationSchema;
|
|
|
122
172
|
export declare var PutTableBucketMaintenanceConfiguration: StaticOperationSchema;
|
|
123
173
|
export declare var PutTableBucketMetricsConfiguration: StaticOperationSchema;
|
|
124
174
|
export declare var PutTableBucketPolicy: StaticOperationSchema;
|
|
175
|
+
export declare var PutTableBucketReplication: StaticOperationSchema;
|
|
176
|
+
export declare var PutTableBucketStorageClass: StaticOperationSchema;
|
|
125
177
|
export declare var PutTableMaintenanceConfiguration: StaticOperationSchema;
|
|
126
178
|
export declare var PutTablePolicy: StaticOperationSchema;
|
|
179
|
+
export declare var PutTableRecordExpirationConfiguration: StaticOperationSchema;
|
|
180
|
+
export declare var PutTableReplication: StaticOperationSchema;
|
|
127
181
|
export declare var RenameTable: StaticOperationSchema;
|
|
128
182
|
export declare var TagResource: StaticOperationSchema;
|
|
129
183
|
export declare var UntagResource: StaticOperationSchema;
|
|
@@ -31,6 +31,10 @@ import {
|
|
|
31
31
|
DeleteTableBucketPolicyCommandInput,
|
|
32
32
|
DeleteTableBucketPolicyCommandOutput,
|
|
33
33
|
} from "./commands/DeleteTableBucketPolicyCommand";
|
|
34
|
+
import {
|
|
35
|
+
DeleteTableBucketReplicationCommandInput,
|
|
36
|
+
DeleteTableBucketReplicationCommandOutput,
|
|
37
|
+
} from "./commands/DeleteTableBucketReplicationCommand";
|
|
34
38
|
import {
|
|
35
39
|
DeleteTableCommandInput,
|
|
36
40
|
DeleteTableCommandOutput,
|
|
@@ -39,6 +43,10 @@ import {
|
|
|
39
43
|
DeleteTablePolicyCommandInput,
|
|
40
44
|
DeleteTablePolicyCommandOutput,
|
|
41
45
|
} from "./commands/DeleteTablePolicyCommand";
|
|
46
|
+
import {
|
|
47
|
+
DeleteTableReplicationCommandInput,
|
|
48
|
+
DeleteTableReplicationCommandOutput,
|
|
49
|
+
} from "./commands/DeleteTableReplicationCommand";
|
|
42
50
|
import {
|
|
43
51
|
GetNamespaceCommandInput,
|
|
44
52
|
GetNamespaceCommandOutput,
|
|
@@ -63,6 +71,14 @@ import {
|
|
|
63
71
|
GetTableBucketPolicyCommandInput,
|
|
64
72
|
GetTableBucketPolicyCommandOutput,
|
|
65
73
|
} from "./commands/GetTableBucketPolicyCommand";
|
|
74
|
+
import {
|
|
75
|
+
GetTableBucketReplicationCommandInput,
|
|
76
|
+
GetTableBucketReplicationCommandOutput,
|
|
77
|
+
} from "./commands/GetTableBucketReplicationCommand";
|
|
78
|
+
import {
|
|
79
|
+
GetTableBucketStorageClassCommandInput,
|
|
80
|
+
GetTableBucketStorageClassCommandOutput,
|
|
81
|
+
} from "./commands/GetTableBucketStorageClassCommand";
|
|
66
82
|
import {
|
|
67
83
|
GetTableCommandInput,
|
|
68
84
|
GetTableCommandOutput,
|
|
@@ -87,6 +103,26 @@ import {
|
|
|
87
103
|
GetTablePolicyCommandInput,
|
|
88
104
|
GetTablePolicyCommandOutput,
|
|
89
105
|
} from "./commands/GetTablePolicyCommand";
|
|
106
|
+
import {
|
|
107
|
+
GetTableRecordExpirationConfigurationCommandInput,
|
|
108
|
+
GetTableRecordExpirationConfigurationCommandOutput,
|
|
109
|
+
} from "./commands/GetTableRecordExpirationConfigurationCommand";
|
|
110
|
+
import {
|
|
111
|
+
GetTableRecordExpirationJobStatusCommandInput,
|
|
112
|
+
GetTableRecordExpirationJobStatusCommandOutput,
|
|
113
|
+
} from "./commands/GetTableRecordExpirationJobStatusCommand";
|
|
114
|
+
import {
|
|
115
|
+
GetTableReplicationCommandInput,
|
|
116
|
+
GetTableReplicationCommandOutput,
|
|
117
|
+
} from "./commands/GetTableReplicationCommand";
|
|
118
|
+
import {
|
|
119
|
+
GetTableReplicationStatusCommandInput,
|
|
120
|
+
GetTableReplicationStatusCommandOutput,
|
|
121
|
+
} from "./commands/GetTableReplicationStatusCommand";
|
|
122
|
+
import {
|
|
123
|
+
GetTableStorageClassCommandInput,
|
|
124
|
+
GetTableStorageClassCommandOutput,
|
|
125
|
+
} from "./commands/GetTableStorageClassCommand";
|
|
90
126
|
import {
|
|
91
127
|
ListNamespacesCommandInput,
|
|
92
128
|
ListNamespacesCommandOutput,
|
|
@@ -119,6 +155,14 @@ import {
|
|
|
119
155
|
PutTableBucketPolicyCommandInput,
|
|
120
156
|
PutTableBucketPolicyCommandOutput,
|
|
121
157
|
} from "./commands/PutTableBucketPolicyCommand";
|
|
158
|
+
import {
|
|
159
|
+
PutTableBucketReplicationCommandInput,
|
|
160
|
+
PutTableBucketReplicationCommandOutput,
|
|
161
|
+
} from "./commands/PutTableBucketReplicationCommand";
|
|
162
|
+
import {
|
|
163
|
+
PutTableBucketStorageClassCommandInput,
|
|
164
|
+
PutTableBucketStorageClassCommandOutput,
|
|
165
|
+
} from "./commands/PutTableBucketStorageClassCommand";
|
|
122
166
|
import {
|
|
123
167
|
PutTableMaintenanceConfigurationCommandInput,
|
|
124
168
|
PutTableMaintenanceConfigurationCommandOutput,
|
|
@@ -127,6 +171,14 @@ import {
|
|
|
127
171
|
PutTablePolicyCommandInput,
|
|
128
172
|
PutTablePolicyCommandOutput,
|
|
129
173
|
} from "./commands/PutTablePolicyCommand";
|
|
174
|
+
import {
|
|
175
|
+
PutTableRecordExpirationConfigurationCommandInput,
|
|
176
|
+
PutTableRecordExpirationConfigurationCommandOutput,
|
|
177
|
+
} from "./commands/PutTableRecordExpirationConfigurationCommand";
|
|
178
|
+
import {
|
|
179
|
+
PutTableReplicationCommandInput,
|
|
180
|
+
PutTableReplicationCommandOutput,
|
|
181
|
+
} from "./commands/PutTableReplicationCommand";
|
|
130
182
|
import {
|
|
131
183
|
RenameTableCommandInput,
|
|
132
184
|
RenameTableCommandOutput,
|
|
@@ -268,6 +320,19 @@ export interface S3Tables {
|
|
|
268
320
|
options: __HttpHandlerOptions,
|
|
269
321
|
cb: (err: any, data?: DeleteTableBucketPolicyCommandOutput) => void
|
|
270
322
|
): void;
|
|
323
|
+
deleteTableBucketReplication(
|
|
324
|
+
args: DeleteTableBucketReplicationCommandInput,
|
|
325
|
+
options?: __HttpHandlerOptions
|
|
326
|
+
): Promise<DeleteTableBucketReplicationCommandOutput>;
|
|
327
|
+
deleteTableBucketReplication(
|
|
328
|
+
args: DeleteTableBucketReplicationCommandInput,
|
|
329
|
+
cb: (err: any, data?: DeleteTableBucketReplicationCommandOutput) => void
|
|
330
|
+
): void;
|
|
331
|
+
deleteTableBucketReplication(
|
|
332
|
+
args: DeleteTableBucketReplicationCommandInput,
|
|
333
|
+
options: __HttpHandlerOptions,
|
|
334
|
+
cb: (err: any, data?: DeleteTableBucketReplicationCommandOutput) => void
|
|
335
|
+
): void;
|
|
271
336
|
deleteTablePolicy(
|
|
272
337
|
args: DeleteTablePolicyCommandInput,
|
|
273
338
|
options?: __HttpHandlerOptions
|
|
@@ -281,6 +346,19 @@ export interface S3Tables {
|
|
|
281
346
|
options: __HttpHandlerOptions,
|
|
282
347
|
cb: (err: any, data?: DeleteTablePolicyCommandOutput) => void
|
|
283
348
|
): void;
|
|
349
|
+
deleteTableReplication(
|
|
350
|
+
args: DeleteTableReplicationCommandInput,
|
|
351
|
+
options?: __HttpHandlerOptions
|
|
352
|
+
): Promise<DeleteTableReplicationCommandOutput>;
|
|
353
|
+
deleteTableReplication(
|
|
354
|
+
args: DeleteTableReplicationCommandInput,
|
|
355
|
+
cb: (err: any, data?: DeleteTableReplicationCommandOutput) => void
|
|
356
|
+
): void;
|
|
357
|
+
deleteTableReplication(
|
|
358
|
+
args: DeleteTableReplicationCommandInput,
|
|
359
|
+
options: __HttpHandlerOptions,
|
|
360
|
+
cb: (err: any, data?: DeleteTableReplicationCommandOutput) => void
|
|
361
|
+
): void;
|
|
284
362
|
getNamespace(
|
|
285
363
|
args: GetNamespaceCommandInput,
|
|
286
364
|
options?: __HttpHandlerOptions
|
|
@@ -385,6 +463,32 @@ export interface S3Tables {
|
|
|
385
463
|
options: __HttpHandlerOptions,
|
|
386
464
|
cb: (err: any, data?: GetTableBucketPolicyCommandOutput) => void
|
|
387
465
|
): void;
|
|
466
|
+
getTableBucketReplication(
|
|
467
|
+
args: GetTableBucketReplicationCommandInput,
|
|
468
|
+
options?: __HttpHandlerOptions
|
|
469
|
+
): Promise<GetTableBucketReplicationCommandOutput>;
|
|
470
|
+
getTableBucketReplication(
|
|
471
|
+
args: GetTableBucketReplicationCommandInput,
|
|
472
|
+
cb: (err: any, data?: GetTableBucketReplicationCommandOutput) => void
|
|
473
|
+
): void;
|
|
474
|
+
getTableBucketReplication(
|
|
475
|
+
args: GetTableBucketReplicationCommandInput,
|
|
476
|
+
options: __HttpHandlerOptions,
|
|
477
|
+
cb: (err: any, data?: GetTableBucketReplicationCommandOutput) => void
|
|
478
|
+
): void;
|
|
479
|
+
getTableBucketStorageClass(
|
|
480
|
+
args: GetTableBucketStorageClassCommandInput,
|
|
481
|
+
options?: __HttpHandlerOptions
|
|
482
|
+
): Promise<GetTableBucketStorageClassCommandOutput>;
|
|
483
|
+
getTableBucketStorageClass(
|
|
484
|
+
args: GetTableBucketStorageClassCommandInput,
|
|
485
|
+
cb: (err: any, data?: GetTableBucketStorageClassCommandOutput) => void
|
|
486
|
+
): void;
|
|
487
|
+
getTableBucketStorageClass(
|
|
488
|
+
args: GetTableBucketStorageClassCommandInput,
|
|
489
|
+
options: __HttpHandlerOptions,
|
|
490
|
+
cb: (err: any, data?: GetTableBucketStorageClassCommandOutput) => void
|
|
491
|
+
): void;
|
|
388
492
|
getTableEncryption(
|
|
389
493
|
args: GetTableEncryptionCommandInput,
|
|
390
494
|
options?: __HttpHandlerOptions
|
|
@@ -450,6 +554,83 @@ export interface S3Tables {
|
|
|
450
554
|
options: __HttpHandlerOptions,
|
|
451
555
|
cb: (err: any, data?: GetTablePolicyCommandOutput) => void
|
|
452
556
|
): void;
|
|
557
|
+
getTableRecordExpirationConfiguration(
|
|
558
|
+
args: GetTableRecordExpirationConfigurationCommandInput,
|
|
559
|
+
options?: __HttpHandlerOptions
|
|
560
|
+
): Promise<GetTableRecordExpirationConfigurationCommandOutput>;
|
|
561
|
+
getTableRecordExpirationConfiguration(
|
|
562
|
+
args: GetTableRecordExpirationConfigurationCommandInput,
|
|
563
|
+
cb: (
|
|
564
|
+
err: any,
|
|
565
|
+
data?: GetTableRecordExpirationConfigurationCommandOutput
|
|
566
|
+
) => void
|
|
567
|
+
): void;
|
|
568
|
+
getTableRecordExpirationConfiguration(
|
|
569
|
+
args: GetTableRecordExpirationConfigurationCommandInput,
|
|
570
|
+
options: __HttpHandlerOptions,
|
|
571
|
+
cb: (
|
|
572
|
+
err: any,
|
|
573
|
+
data?: GetTableRecordExpirationConfigurationCommandOutput
|
|
574
|
+
) => void
|
|
575
|
+
): void;
|
|
576
|
+
getTableRecordExpirationJobStatus(
|
|
577
|
+
args: GetTableRecordExpirationJobStatusCommandInput,
|
|
578
|
+
options?: __HttpHandlerOptions
|
|
579
|
+
): Promise<GetTableRecordExpirationJobStatusCommandOutput>;
|
|
580
|
+
getTableRecordExpirationJobStatus(
|
|
581
|
+
args: GetTableRecordExpirationJobStatusCommandInput,
|
|
582
|
+
cb: (
|
|
583
|
+
err: any,
|
|
584
|
+
data?: GetTableRecordExpirationJobStatusCommandOutput
|
|
585
|
+
) => void
|
|
586
|
+
): void;
|
|
587
|
+
getTableRecordExpirationJobStatus(
|
|
588
|
+
args: GetTableRecordExpirationJobStatusCommandInput,
|
|
589
|
+
options: __HttpHandlerOptions,
|
|
590
|
+
cb: (
|
|
591
|
+
err: any,
|
|
592
|
+
data?: GetTableRecordExpirationJobStatusCommandOutput
|
|
593
|
+
) => void
|
|
594
|
+
): void;
|
|
595
|
+
getTableReplication(
|
|
596
|
+
args: GetTableReplicationCommandInput,
|
|
597
|
+
options?: __HttpHandlerOptions
|
|
598
|
+
): Promise<GetTableReplicationCommandOutput>;
|
|
599
|
+
getTableReplication(
|
|
600
|
+
args: GetTableReplicationCommandInput,
|
|
601
|
+
cb: (err: any, data?: GetTableReplicationCommandOutput) => void
|
|
602
|
+
): void;
|
|
603
|
+
getTableReplication(
|
|
604
|
+
args: GetTableReplicationCommandInput,
|
|
605
|
+
options: __HttpHandlerOptions,
|
|
606
|
+
cb: (err: any, data?: GetTableReplicationCommandOutput) => void
|
|
607
|
+
): void;
|
|
608
|
+
getTableReplicationStatus(
|
|
609
|
+
args: GetTableReplicationStatusCommandInput,
|
|
610
|
+
options?: __HttpHandlerOptions
|
|
611
|
+
): Promise<GetTableReplicationStatusCommandOutput>;
|
|
612
|
+
getTableReplicationStatus(
|
|
613
|
+
args: GetTableReplicationStatusCommandInput,
|
|
614
|
+
cb: (err: any, data?: GetTableReplicationStatusCommandOutput) => void
|
|
615
|
+
): void;
|
|
616
|
+
getTableReplicationStatus(
|
|
617
|
+
args: GetTableReplicationStatusCommandInput,
|
|
618
|
+
options: __HttpHandlerOptions,
|
|
619
|
+
cb: (err: any, data?: GetTableReplicationStatusCommandOutput) => void
|
|
620
|
+
): void;
|
|
621
|
+
getTableStorageClass(
|
|
622
|
+
args: GetTableStorageClassCommandInput,
|
|
623
|
+
options?: __HttpHandlerOptions
|
|
624
|
+
): Promise<GetTableStorageClassCommandOutput>;
|
|
625
|
+
getTableStorageClass(
|
|
626
|
+
args: GetTableStorageClassCommandInput,
|
|
627
|
+
cb: (err: any, data?: GetTableStorageClassCommandOutput) => void
|
|
628
|
+
): void;
|
|
629
|
+
getTableStorageClass(
|
|
630
|
+
args: GetTableStorageClassCommandInput,
|
|
631
|
+
options: __HttpHandlerOptions,
|
|
632
|
+
cb: (err: any, data?: GetTableStorageClassCommandOutput) => void
|
|
633
|
+
): void;
|
|
453
634
|
listNamespaces(
|
|
454
635
|
args: ListNamespacesCommandInput,
|
|
455
636
|
options?: __HttpHandlerOptions
|
|
@@ -567,6 +748,32 @@ export interface S3Tables {
|
|
|
567
748
|
options: __HttpHandlerOptions,
|
|
568
749
|
cb: (err: any, data?: PutTableBucketPolicyCommandOutput) => void
|
|
569
750
|
): void;
|
|
751
|
+
putTableBucketReplication(
|
|
752
|
+
args: PutTableBucketReplicationCommandInput,
|
|
753
|
+
options?: __HttpHandlerOptions
|
|
754
|
+
): Promise<PutTableBucketReplicationCommandOutput>;
|
|
755
|
+
putTableBucketReplication(
|
|
756
|
+
args: PutTableBucketReplicationCommandInput,
|
|
757
|
+
cb: (err: any, data?: PutTableBucketReplicationCommandOutput) => void
|
|
758
|
+
): void;
|
|
759
|
+
putTableBucketReplication(
|
|
760
|
+
args: PutTableBucketReplicationCommandInput,
|
|
761
|
+
options: __HttpHandlerOptions,
|
|
762
|
+
cb: (err: any, data?: PutTableBucketReplicationCommandOutput) => void
|
|
763
|
+
): void;
|
|
764
|
+
putTableBucketStorageClass(
|
|
765
|
+
args: PutTableBucketStorageClassCommandInput,
|
|
766
|
+
options?: __HttpHandlerOptions
|
|
767
|
+
): Promise<PutTableBucketStorageClassCommandOutput>;
|
|
768
|
+
putTableBucketStorageClass(
|
|
769
|
+
args: PutTableBucketStorageClassCommandInput,
|
|
770
|
+
cb: (err: any, data?: PutTableBucketStorageClassCommandOutput) => void
|
|
771
|
+
): void;
|
|
772
|
+
putTableBucketStorageClass(
|
|
773
|
+
args: PutTableBucketStorageClassCommandInput,
|
|
774
|
+
options: __HttpHandlerOptions,
|
|
775
|
+
cb: (err: any, data?: PutTableBucketStorageClassCommandOutput) => void
|
|
776
|
+
): void;
|
|
570
777
|
putTableMaintenanceConfiguration(
|
|
571
778
|
args: PutTableMaintenanceConfigurationCommandInput,
|
|
572
779
|
options?: __HttpHandlerOptions
|
|
@@ -593,6 +800,38 @@ export interface S3Tables {
|
|
|
593
800
|
options: __HttpHandlerOptions,
|
|
594
801
|
cb: (err: any, data?: PutTablePolicyCommandOutput) => void
|
|
595
802
|
): void;
|
|
803
|
+
putTableRecordExpirationConfiguration(
|
|
804
|
+
args: PutTableRecordExpirationConfigurationCommandInput,
|
|
805
|
+
options?: __HttpHandlerOptions
|
|
806
|
+
): Promise<PutTableRecordExpirationConfigurationCommandOutput>;
|
|
807
|
+
putTableRecordExpirationConfiguration(
|
|
808
|
+
args: PutTableRecordExpirationConfigurationCommandInput,
|
|
809
|
+
cb: (
|
|
810
|
+
err: any,
|
|
811
|
+
data?: PutTableRecordExpirationConfigurationCommandOutput
|
|
812
|
+
) => void
|
|
813
|
+
): void;
|
|
814
|
+
putTableRecordExpirationConfiguration(
|
|
815
|
+
args: PutTableRecordExpirationConfigurationCommandInput,
|
|
816
|
+
options: __HttpHandlerOptions,
|
|
817
|
+
cb: (
|
|
818
|
+
err: any,
|
|
819
|
+
data?: PutTableRecordExpirationConfigurationCommandOutput
|
|
820
|
+
) => void
|
|
821
|
+
): void;
|
|
822
|
+
putTableReplication(
|
|
823
|
+
args: PutTableReplicationCommandInput,
|
|
824
|
+
options?: __HttpHandlerOptions
|
|
825
|
+
): Promise<PutTableReplicationCommandOutput>;
|
|
826
|
+
putTableReplication(
|
|
827
|
+
args: PutTableReplicationCommandInput,
|
|
828
|
+
cb: (err: any, data?: PutTableReplicationCommandOutput) => void
|
|
829
|
+
): void;
|
|
830
|
+
putTableReplication(
|
|
831
|
+
args: PutTableReplicationCommandInput,
|
|
832
|
+
options: __HttpHandlerOptions,
|
|
833
|
+
cb: (err: any, data?: PutTableReplicationCommandOutput) => void
|
|
834
|
+
): void;
|
|
596
835
|
renameTable(
|
|
597
836
|
args: RenameTableCommandInput,
|
|
598
837
|
options?: __HttpHandlerOptions
|
|
@@ -80,6 +80,10 @@ import {
|
|
|
80
80
|
DeleteTableBucketPolicyCommandInput,
|
|
81
81
|
DeleteTableBucketPolicyCommandOutput,
|
|
82
82
|
} from "./commands/DeleteTableBucketPolicyCommand";
|
|
83
|
+
import {
|
|
84
|
+
DeleteTableBucketReplicationCommandInput,
|
|
85
|
+
DeleteTableBucketReplicationCommandOutput,
|
|
86
|
+
} from "./commands/DeleteTableBucketReplicationCommand";
|
|
83
87
|
import {
|
|
84
88
|
DeleteTableCommandInput,
|
|
85
89
|
DeleteTableCommandOutput,
|
|
@@ -88,6 +92,10 @@ import {
|
|
|
88
92
|
DeleteTablePolicyCommandInput,
|
|
89
93
|
DeleteTablePolicyCommandOutput,
|
|
90
94
|
} from "./commands/DeleteTablePolicyCommand";
|
|
95
|
+
import {
|
|
96
|
+
DeleteTableReplicationCommandInput,
|
|
97
|
+
DeleteTableReplicationCommandOutput,
|
|
98
|
+
} from "./commands/DeleteTableReplicationCommand";
|
|
91
99
|
import {
|
|
92
100
|
GetNamespaceCommandInput,
|
|
93
101
|
GetNamespaceCommandOutput,
|
|
@@ -112,6 +120,14 @@ import {
|
|
|
112
120
|
GetTableBucketPolicyCommandInput,
|
|
113
121
|
GetTableBucketPolicyCommandOutput,
|
|
114
122
|
} from "./commands/GetTableBucketPolicyCommand";
|
|
123
|
+
import {
|
|
124
|
+
GetTableBucketReplicationCommandInput,
|
|
125
|
+
GetTableBucketReplicationCommandOutput,
|
|
126
|
+
} from "./commands/GetTableBucketReplicationCommand";
|
|
127
|
+
import {
|
|
128
|
+
GetTableBucketStorageClassCommandInput,
|
|
129
|
+
GetTableBucketStorageClassCommandOutput,
|
|
130
|
+
} from "./commands/GetTableBucketStorageClassCommand";
|
|
115
131
|
import {
|
|
116
132
|
GetTableCommandInput,
|
|
117
133
|
GetTableCommandOutput,
|
|
@@ -136,6 +152,26 @@ import {
|
|
|
136
152
|
GetTablePolicyCommandInput,
|
|
137
153
|
GetTablePolicyCommandOutput,
|
|
138
154
|
} from "./commands/GetTablePolicyCommand";
|
|
155
|
+
import {
|
|
156
|
+
GetTableRecordExpirationConfigurationCommandInput,
|
|
157
|
+
GetTableRecordExpirationConfigurationCommandOutput,
|
|
158
|
+
} from "./commands/GetTableRecordExpirationConfigurationCommand";
|
|
159
|
+
import {
|
|
160
|
+
GetTableRecordExpirationJobStatusCommandInput,
|
|
161
|
+
GetTableRecordExpirationJobStatusCommandOutput,
|
|
162
|
+
} from "./commands/GetTableRecordExpirationJobStatusCommand";
|
|
163
|
+
import {
|
|
164
|
+
GetTableReplicationCommandInput,
|
|
165
|
+
GetTableReplicationCommandOutput,
|
|
166
|
+
} from "./commands/GetTableReplicationCommand";
|
|
167
|
+
import {
|
|
168
|
+
GetTableReplicationStatusCommandInput,
|
|
169
|
+
GetTableReplicationStatusCommandOutput,
|
|
170
|
+
} from "./commands/GetTableReplicationStatusCommand";
|
|
171
|
+
import {
|
|
172
|
+
GetTableStorageClassCommandInput,
|
|
173
|
+
GetTableStorageClassCommandOutput,
|
|
174
|
+
} from "./commands/GetTableStorageClassCommand";
|
|
139
175
|
import {
|
|
140
176
|
ListNamespacesCommandInput,
|
|
141
177
|
ListNamespacesCommandOutput,
|
|
@@ -168,6 +204,14 @@ import {
|
|
|
168
204
|
PutTableBucketPolicyCommandInput,
|
|
169
205
|
PutTableBucketPolicyCommandOutput,
|
|
170
206
|
} from "./commands/PutTableBucketPolicyCommand";
|
|
207
|
+
import {
|
|
208
|
+
PutTableBucketReplicationCommandInput,
|
|
209
|
+
PutTableBucketReplicationCommandOutput,
|
|
210
|
+
} from "./commands/PutTableBucketReplicationCommand";
|
|
211
|
+
import {
|
|
212
|
+
PutTableBucketStorageClassCommandInput,
|
|
213
|
+
PutTableBucketStorageClassCommandOutput,
|
|
214
|
+
} from "./commands/PutTableBucketStorageClassCommand";
|
|
171
215
|
import {
|
|
172
216
|
PutTableMaintenanceConfigurationCommandInput,
|
|
173
217
|
PutTableMaintenanceConfigurationCommandOutput,
|
|
@@ -176,6 +220,14 @@ import {
|
|
|
176
220
|
PutTablePolicyCommandInput,
|
|
177
221
|
PutTablePolicyCommandOutput,
|
|
178
222
|
} from "./commands/PutTablePolicyCommand";
|
|
223
|
+
import {
|
|
224
|
+
PutTableRecordExpirationConfigurationCommandInput,
|
|
225
|
+
PutTableRecordExpirationConfigurationCommandOutput,
|
|
226
|
+
} from "./commands/PutTableRecordExpirationConfigurationCommand";
|
|
227
|
+
import {
|
|
228
|
+
PutTableReplicationCommandInput,
|
|
229
|
+
PutTableReplicationCommandOutput,
|
|
230
|
+
} from "./commands/PutTableReplicationCommand";
|
|
179
231
|
import {
|
|
180
232
|
RenameTableCommandInput,
|
|
181
233
|
RenameTableCommandOutput,
|
|
@@ -208,20 +260,29 @@ export type ServiceInputTypes =
|
|
|
208
260
|
| DeleteTableBucketEncryptionCommandInput
|
|
209
261
|
| DeleteTableBucketMetricsConfigurationCommandInput
|
|
210
262
|
| DeleteTableBucketPolicyCommandInput
|
|
263
|
+
| DeleteTableBucketReplicationCommandInput
|
|
211
264
|
| DeleteTableCommandInput
|
|
212
265
|
| DeleteTablePolicyCommandInput
|
|
266
|
+
| DeleteTableReplicationCommandInput
|
|
213
267
|
| GetNamespaceCommandInput
|
|
214
268
|
| GetTableBucketCommandInput
|
|
215
269
|
| GetTableBucketEncryptionCommandInput
|
|
216
270
|
| GetTableBucketMaintenanceConfigurationCommandInput
|
|
217
271
|
| GetTableBucketMetricsConfigurationCommandInput
|
|
218
272
|
| GetTableBucketPolicyCommandInput
|
|
273
|
+
| GetTableBucketReplicationCommandInput
|
|
274
|
+
| GetTableBucketStorageClassCommandInput
|
|
219
275
|
| GetTableCommandInput
|
|
220
276
|
| GetTableEncryptionCommandInput
|
|
221
277
|
| GetTableMaintenanceConfigurationCommandInput
|
|
222
278
|
| GetTableMaintenanceJobStatusCommandInput
|
|
223
279
|
| GetTableMetadataLocationCommandInput
|
|
224
280
|
| GetTablePolicyCommandInput
|
|
281
|
+
| GetTableRecordExpirationConfigurationCommandInput
|
|
282
|
+
| GetTableRecordExpirationJobStatusCommandInput
|
|
283
|
+
| GetTableReplicationCommandInput
|
|
284
|
+
| GetTableReplicationStatusCommandInput
|
|
285
|
+
| GetTableStorageClassCommandInput
|
|
225
286
|
| ListNamespacesCommandInput
|
|
226
287
|
| ListTableBucketsCommandInput
|
|
227
288
|
| ListTablesCommandInput
|
|
@@ -230,8 +291,12 @@ export type ServiceInputTypes =
|
|
|
230
291
|
| PutTableBucketMaintenanceConfigurationCommandInput
|
|
231
292
|
| PutTableBucketMetricsConfigurationCommandInput
|
|
232
293
|
| PutTableBucketPolicyCommandInput
|
|
294
|
+
| PutTableBucketReplicationCommandInput
|
|
295
|
+
| PutTableBucketStorageClassCommandInput
|
|
233
296
|
| PutTableMaintenanceConfigurationCommandInput
|
|
234
297
|
| PutTablePolicyCommandInput
|
|
298
|
+
| PutTableRecordExpirationConfigurationCommandInput
|
|
299
|
+
| PutTableReplicationCommandInput
|
|
235
300
|
| RenameTableCommandInput
|
|
236
301
|
| TagResourceCommandInput
|
|
237
302
|
| UntagResourceCommandInput
|
|
@@ -245,20 +310,29 @@ export type ServiceOutputTypes =
|
|
|
245
310
|
| DeleteTableBucketEncryptionCommandOutput
|
|
246
311
|
| DeleteTableBucketMetricsConfigurationCommandOutput
|
|
247
312
|
| DeleteTableBucketPolicyCommandOutput
|
|
313
|
+
| DeleteTableBucketReplicationCommandOutput
|
|
248
314
|
| DeleteTableCommandOutput
|
|
249
315
|
| DeleteTablePolicyCommandOutput
|
|
316
|
+
| DeleteTableReplicationCommandOutput
|
|
250
317
|
| GetNamespaceCommandOutput
|
|
251
318
|
| GetTableBucketCommandOutput
|
|
252
319
|
| GetTableBucketEncryptionCommandOutput
|
|
253
320
|
| GetTableBucketMaintenanceConfigurationCommandOutput
|
|
254
321
|
| GetTableBucketMetricsConfigurationCommandOutput
|
|
255
322
|
| GetTableBucketPolicyCommandOutput
|
|
323
|
+
| GetTableBucketReplicationCommandOutput
|
|
324
|
+
| GetTableBucketStorageClassCommandOutput
|
|
256
325
|
| GetTableCommandOutput
|
|
257
326
|
| GetTableEncryptionCommandOutput
|
|
258
327
|
| GetTableMaintenanceConfigurationCommandOutput
|
|
259
328
|
| GetTableMaintenanceJobStatusCommandOutput
|
|
260
329
|
| GetTableMetadataLocationCommandOutput
|
|
261
330
|
| GetTablePolicyCommandOutput
|
|
331
|
+
| GetTableRecordExpirationConfigurationCommandOutput
|
|
332
|
+
| GetTableRecordExpirationJobStatusCommandOutput
|
|
333
|
+
| GetTableReplicationCommandOutput
|
|
334
|
+
| GetTableReplicationStatusCommandOutput
|
|
335
|
+
| GetTableStorageClassCommandOutput
|
|
262
336
|
| ListNamespacesCommandOutput
|
|
263
337
|
| ListTableBucketsCommandOutput
|
|
264
338
|
| ListTablesCommandOutput
|
|
@@ -267,8 +341,12 @@ export type ServiceOutputTypes =
|
|
|
267
341
|
| PutTableBucketMaintenanceConfigurationCommandOutput
|
|
268
342
|
| PutTableBucketMetricsConfigurationCommandOutput
|
|
269
343
|
| PutTableBucketPolicyCommandOutput
|
|
344
|
+
| PutTableBucketReplicationCommandOutput
|
|
345
|
+
| PutTableBucketStorageClassCommandOutput
|
|
270
346
|
| PutTableMaintenanceConfigurationCommandOutput
|
|
271
347
|
| PutTablePolicyCommandOutput
|
|
348
|
+
| PutTableRecordExpirationConfigurationCommandOutput
|
|
349
|
+
| PutTableReplicationCommandOutput
|
|
272
350
|
| RenameTableCommandOutput
|
|
273
351
|
| TagResourceCommandOutput
|
|
274
352
|
| UntagResourceCommandOutput
|
|
@@ -0,0 +1,47 @@
|
|
|
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 {
|
|
5
|
+
S3TablesClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../S3TablesClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteTableBucketReplicationCommandInput
|
|
12
|
+
extends DeleteTableBucketReplicationRequest {}
|
|
13
|
+
export interface DeleteTableBucketReplicationCommandOutput
|
|
14
|
+
extends __MetadataBearer {}
|
|
15
|
+
declare const DeleteTableBucketReplicationCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: DeleteTableBucketReplicationCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
DeleteTableBucketReplicationCommandInput,
|
|
20
|
+
DeleteTableBucketReplicationCommandOutput,
|
|
21
|
+
S3TablesClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: DeleteTableBucketReplicationCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
DeleteTableBucketReplicationCommandInput,
|
|
29
|
+
DeleteTableBucketReplicationCommandOutput,
|
|
30
|
+
S3TablesClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class DeleteTableBucketReplicationCommand extends DeleteTableBucketReplicationCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: DeleteTableBucketReplicationRequest;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: DeleteTableBucketReplicationCommandInput;
|
|
44
|
+
output: DeleteTableBucketReplicationCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|