@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
|
@@ -0,0 +1,46 @@
|
|
|
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 {
|
|
5
|
+
S3TablesClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../S3TablesClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface DeleteTableReplicationCommandInput
|
|
12
|
+
extends DeleteTableReplicationRequest {}
|
|
13
|
+
export interface DeleteTableReplicationCommandOutput extends __MetadataBearer {}
|
|
14
|
+
declare const DeleteTableReplicationCommand_base: {
|
|
15
|
+
new (
|
|
16
|
+
input: DeleteTableReplicationCommandInput
|
|
17
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
18
|
+
DeleteTableReplicationCommandInput,
|
|
19
|
+
DeleteTableReplicationCommandOutput,
|
|
20
|
+
S3TablesClientResolvedConfig,
|
|
21
|
+
ServiceInputTypes,
|
|
22
|
+
ServiceOutputTypes
|
|
23
|
+
>;
|
|
24
|
+
new (
|
|
25
|
+
input: DeleteTableReplicationCommandInput
|
|
26
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
27
|
+
DeleteTableReplicationCommandInput,
|
|
28
|
+
DeleteTableReplicationCommandOutput,
|
|
29
|
+
S3TablesClientResolvedConfig,
|
|
30
|
+
ServiceInputTypes,
|
|
31
|
+
ServiceOutputTypes
|
|
32
|
+
>;
|
|
33
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
34
|
+
};
|
|
35
|
+
export declare class DeleteTableReplicationCommand extends DeleteTableReplicationCommand_base {
|
|
36
|
+
protected static __types: {
|
|
37
|
+
api: {
|
|
38
|
+
input: DeleteTableReplicationRequest;
|
|
39
|
+
output: {};
|
|
40
|
+
};
|
|
41
|
+
sdk: {
|
|
42
|
+
input: DeleteTableReplicationCommandInput;
|
|
43
|
+
output: DeleteTableReplicationCommandOutput;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetTableBucketReplicationRequest,
|
|
5
|
+
GetTableBucketReplicationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
S3TablesClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../S3TablesClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetTableBucketReplicationCommandInput
|
|
15
|
+
extends GetTableBucketReplicationRequest {}
|
|
16
|
+
export interface GetTableBucketReplicationCommandOutput
|
|
17
|
+
extends GetTableBucketReplicationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetTableBucketReplicationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetTableBucketReplicationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetTableBucketReplicationCommandInput,
|
|
24
|
+
GetTableBucketReplicationCommandOutput,
|
|
25
|
+
S3TablesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetTableBucketReplicationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetTableBucketReplicationCommandInput,
|
|
33
|
+
GetTableBucketReplicationCommandOutput,
|
|
34
|
+
S3TablesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetTableBucketReplicationCommand extends GetTableBucketReplicationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetTableBucketReplicationRequest;
|
|
44
|
+
output: GetTableBucketReplicationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetTableBucketReplicationCommandInput;
|
|
48
|
+
output: GetTableBucketReplicationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetTableBucketStorageClassRequest,
|
|
5
|
+
GetTableBucketStorageClassResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
S3TablesClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../S3TablesClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetTableBucketStorageClassCommandInput
|
|
15
|
+
extends GetTableBucketStorageClassRequest {}
|
|
16
|
+
export interface GetTableBucketStorageClassCommandOutput
|
|
17
|
+
extends GetTableBucketStorageClassResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetTableBucketStorageClassCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetTableBucketStorageClassCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetTableBucketStorageClassCommandInput,
|
|
24
|
+
GetTableBucketStorageClassCommandOutput,
|
|
25
|
+
S3TablesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetTableBucketStorageClassCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetTableBucketStorageClassCommandInput,
|
|
33
|
+
GetTableBucketStorageClassCommandOutput,
|
|
34
|
+
S3TablesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetTableBucketStorageClassCommand extends GetTableBucketStorageClassCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetTableBucketStorageClassRequest;
|
|
44
|
+
output: GetTableBucketStorageClassResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetTableBucketStorageClassCommandInput;
|
|
48
|
+
output: GetTableBucketStorageClassCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetTableRecordExpirationConfigurationRequest,
|
|
5
|
+
GetTableRecordExpirationConfigurationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
S3TablesClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../S3TablesClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetTableRecordExpirationConfigurationCommandInput
|
|
15
|
+
extends GetTableRecordExpirationConfigurationRequest {}
|
|
16
|
+
export interface GetTableRecordExpirationConfigurationCommandOutput
|
|
17
|
+
extends GetTableRecordExpirationConfigurationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetTableRecordExpirationConfigurationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetTableRecordExpirationConfigurationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetTableRecordExpirationConfigurationCommandInput,
|
|
24
|
+
GetTableRecordExpirationConfigurationCommandOutput,
|
|
25
|
+
S3TablesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetTableRecordExpirationConfigurationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetTableRecordExpirationConfigurationCommandInput,
|
|
33
|
+
GetTableRecordExpirationConfigurationCommandOutput,
|
|
34
|
+
S3TablesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetTableRecordExpirationConfigurationCommand extends GetTableRecordExpirationConfigurationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetTableRecordExpirationConfigurationRequest;
|
|
44
|
+
output: GetTableRecordExpirationConfigurationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetTableRecordExpirationConfigurationCommandInput;
|
|
48
|
+
output: GetTableRecordExpirationConfigurationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetTableRecordExpirationJobStatusRequest,
|
|
5
|
+
GetTableRecordExpirationJobStatusResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
S3TablesClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../S3TablesClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetTableRecordExpirationJobStatusCommandInput
|
|
15
|
+
extends GetTableRecordExpirationJobStatusRequest {}
|
|
16
|
+
export interface GetTableRecordExpirationJobStatusCommandOutput
|
|
17
|
+
extends GetTableRecordExpirationJobStatusResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetTableRecordExpirationJobStatusCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetTableRecordExpirationJobStatusCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetTableRecordExpirationJobStatusCommandInput,
|
|
24
|
+
GetTableRecordExpirationJobStatusCommandOutput,
|
|
25
|
+
S3TablesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetTableRecordExpirationJobStatusCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetTableRecordExpirationJobStatusCommandInput,
|
|
33
|
+
GetTableRecordExpirationJobStatusCommandOutput,
|
|
34
|
+
S3TablesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetTableRecordExpirationJobStatusCommand extends GetTableRecordExpirationJobStatusCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetTableRecordExpirationJobStatusRequest;
|
|
44
|
+
output: GetTableRecordExpirationJobStatusResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetTableRecordExpirationJobStatusCommandInput;
|
|
48
|
+
output: GetTableRecordExpirationJobStatusCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetTableReplicationRequest,
|
|
5
|
+
GetTableReplicationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
S3TablesClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../S3TablesClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetTableReplicationCommandInput
|
|
15
|
+
extends GetTableReplicationRequest {}
|
|
16
|
+
export interface GetTableReplicationCommandOutput
|
|
17
|
+
extends GetTableReplicationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetTableReplicationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetTableReplicationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetTableReplicationCommandInput,
|
|
24
|
+
GetTableReplicationCommandOutput,
|
|
25
|
+
S3TablesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetTableReplicationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetTableReplicationCommandInput,
|
|
33
|
+
GetTableReplicationCommandOutput,
|
|
34
|
+
S3TablesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetTableReplicationCommand extends GetTableReplicationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetTableReplicationRequest;
|
|
44
|
+
output: GetTableReplicationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetTableReplicationCommandInput;
|
|
48
|
+
output: GetTableReplicationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetTableReplicationStatusRequest,
|
|
5
|
+
GetTableReplicationStatusResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
S3TablesClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../S3TablesClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetTableReplicationStatusCommandInput
|
|
15
|
+
extends GetTableReplicationStatusRequest {}
|
|
16
|
+
export interface GetTableReplicationStatusCommandOutput
|
|
17
|
+
extends GetTableReplicationStatusResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetTableReplicationStatusCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetTableReplicationStatusCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetTableReplicationStatusCommandInput,
|
|
24
|
+
GetTableReplicationStatusCommandOutput,
|
|
25
|
+
S3TablesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetTableReplicationStatusCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetTableReplicationStatusCommandInput,
|
|
33
|
+
GetTableReplicationStatusCommandOutput,
|
|
34
|
+
S3TablesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetTableReplicationStatusCommand extends GetTableReplicationStatusCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetTableReplicationStatusRequest;
|
|
44
|
+
output: GetTableReplicationStatusResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetTableReplicationStatusCommandInput;
|
|
48
|
+
output: GetTableReplicationStatusCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetTableStorageClassRequest,
|
|
5
|
+
GetTableStorageClassResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
S3TablesClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../S3TablesClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface GetTableStorageClassCommandInput
|
|
15
|
+
extends GetTableStorageClassRequest {}
|
|
16
|
+
export interface GetTableStorageClassCommandOutput
|
|
17
|
+
extends GetTableStorageClassResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const GetTableStorageClassCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: GetTableStorageClassCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
GetTableStorageClassCommandInput,
|
|
24
|
+
GetTableStorageClassCommandOutput,
|
|
25
|
+
S3TablesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: GetTableStorageClassCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
GetTableStorageClassCommandInput,
|
|
33
|
+
GetTableStorageClassCommandOutput,
|
|
34
|
+
S3TablesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class GetTableStorageClassCommand extends GetTableStorageClassCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: GetTableStorageClassRequest;
|
|
44
|
+
output: GetTableStorageClassResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: GetTableStorageClassCommandInput;
|
|
48
|
+
output: GetTableStorageClassCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
PutTableBucketReplicationRequest,
|
|
5
|
+
PutTableBucketReplicationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
S3TablesClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../S3TablesClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface PutTableBucketReplicationCommandInput
|
|
15
|
+
extends PutTableBucketReplicationRequest {}
|
|
16
|
+
export interface PutTableBucketReplicationCommandOutput
|
|
17
|
+
extends PutTableBucketReplicationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const PutTableBucketReplicationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: PutTableBucketReplicationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
PutTableBucketReplicationCommandInput,
|
|
24
|
+
PutTableBucketReplicationCommandOutput,
|
|
25
|
+
S3TablesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: PutTableBucketReplicationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
PutTableBucketReplicationCommandInput,
|
|
33
|
+
PutTableBucketReplicationCommandOutput,
|
|
34
|
+
S3TablesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class PutTableBucketReplicationCommand extends PutTableBucketReplicationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: PutTableBucketReplicationRequest;
|
|
44
|
+
output: PutTableBucketReplicationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: PutTableBucketReplicationCommandInput;
|
|
48
|
+
output: PutTableBucketReplicationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { PutTableBucketStorageClassRequest } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
S3TablesClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../S3TablesClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface PutTableBucketStorageClassCommandInput
|
|
12
|
+
extends PutTableBucketStorageClassRequest {}
|
|
13
|
+
export interface PutTableBucketStorageClassCommandOutput
|
|
14
|
+
extends __MetadataBearer {}
|
|
15
|
+
declare const PutTableBucketStorageClassCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: PutTableBucketStorageClassCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
PutTableBucketStorageClassCommandInput,
|
|
20
|
+
PutTableBucketStorageClassCommandOutput,
|
|
21
|
+
S3TablesClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: PutTableBucketStorageClassCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
PutTableBucketStorageClassCommandInput,
|
|
29
|
+
PutTableBucketStorageClassCommandOutput,
|
|
30
|
+
S3TablesClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class PutTableBucketStorageClassCommand extends PutTableBucketStorageClassCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: PutTableBucketStorageClassRequest;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: PutTableBucketStorageClassCommandInput;
|
|
44
|
+
output: PutTableBucketStorageClassCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { PutTableRecordExpirationConfigurationRequest } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
S3TablesClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../S3TablesClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface PutTableRecordExpirationConfigurationCommandInput
|
|
12
|
+
extends PutTableRecordExpirationConfigurationRequest {}
|
|
13
|
+
export interface PutTableRecordExpirationConfigurationCommandOutput
|
|
14
|
+
extends __MetadataBearer {}
|
|
15
|
+
declare const PutTableRecordExpirationConfigurationCommand_base: {
|
|
16
|
+
new (
|
|
17
|
+
input: PutTableRecordExpirationConfigurationCommandInput
|
|
18
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
19
|
+
PutTableRecordExpirationConfigurationCommandInput,
|
|
20
|
+
PutTableRecordExpirationConfigurationCommandOutput,
|
|
21
|
+
S3TablesClientResolvedConfig,
|
|
22
|
+
ServiceInputTypes,
|
|
23
|
+
ServiceOutputTypes
|
|
24
|
+
>;
|
|
25
|
+
new (
|
|
26
|
+
input: PutTableRecordExpirationConfigurationCommandInput
|
|
27
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
28
|
+
PutTableRecordExpirationConfigurationCommandInput,
|
|
29
|
+
PutTableRecordExpirationConfigurationCommandOutput,
|
|
30
|
+
S3TablesClientResolvedConfig,
|
|
31
|
+
ServiceInputTypes,
|
|
32
|
+
ServiceOutputTypes
|
|
33
|
+
>;
|
|
34
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
35
|
+
};
|
|
36
|
+
export declare class PutTableRecordExpirationConfigurationCommand extends PutTableRecordExpirationConfigurationCommand_base {
|
|
37
|
+
protected static __types: {
|
|
38
|
+
api: {
|
|
39
|
+
input: PutTableRecordExpirationConfigurationRequest;
|
|
40
|
+
output: {};
|
|
41
|
+
};
|
|
42
|
+
sdk: {
|
|
43
|
+
input: PutTableRecordExpirationConfigurationCommandInput;
|
|
44
|
+
output: PutTableRecordExpirationConfigurationCommandOutput;
|
|
45
|
+
};
|
|
46
|
+
};
|
|
47
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
PutTableReplicationRequest,
|
|
5
|
+
PutTableReplicationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
S3TablesClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../S3TablesClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface PutTableReplicationCommandInput
|
|
15
|
+
extends PutTableReplicationRequest {}
|
|
16
|
+
export interface PutTableReplicationCommandOutput
|
|
17
|
+
extends PutTableReplicationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const PutTableReplicationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: PutTableReplicationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
PutTableReplicationCommandInput,
|
|
24
|
+
PutTableReplicationCommandOutput,
|
|
25
|
+
S3TablesClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: PutTableReplicationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
PutTableReplicationCommandInput,
|
|
33
|
+
PutTableReplicationCommandOutput,
|
|
34
|
+
S3TablesClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class PutTableReplicationCommand extends PutTableReplicationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: PutTableReplicationRequest;
|
|
44
|
+
output: PutTableReplicationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: PutTableReplicationCommandInput;
|
|
48
|
+
output: PutTableReplicationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|
|
@@ -6,20 +6,29 @@ export * from "./DeleteTableBucketCommand";
|
|
|
6
6
|
export * from "./DeleteTableBucketEncryptionCommand";
|
|
7
7
|
export * from "./DeleteTableBucketMetricsConfigurationCommand";
|
|
8
8
|
export * from "./DeleteTableBucketPolicyCommand";
|
|
9
|
+
export * from "./DeleteTableBucketReplicationCommand";
|
|
9
10
|
export * from "./DeleteTableCommand";
|
|
10
11
|
export * from "./DeleteTablePolicyCommand";
|
|
12
|
+
export * from "./DeleteTableReplicationCommand";
|
|
11
13
|
export * from "./GetNamespaceCommand";
|
|
12
14
|
export * from "./GetTableBucketCommand";
|
|
13
15
|
export * from "./GetTableBucketEncryptionCommand";
|
|
14
16
|
export * from "./GetTableBucketMaintenanceConfigurationCommand";
|
|
15
17
|
export * from "./GetTableBucketMetricsConfigurationCommand";
|
|
16
18
|
export * from "./GetTableBucketPolicyCommand";
|
|
19
|
+
export * from "./GetTableBucketReplicationCommand";
|
|
20
|
+
export * from "./GetTableBucketStorageClassCommand";
|
|
17
21
|
export * from "./GetTableCommand";
|
|
18
22
|
export * from "./GetTableEncryptionCommand";
|
|
19
23
|
export * from "./GetTableMaintenanceConfigurationCommand";
|
|
20
24
|
export * from "./GetTableMaintenanceJobStatusCommand";
|
|
21
25
|
export * from "./GetTableMetadataLocationCommand";
|
|
22
26
|
export * from "./GetTablePolicyCommand";
|
|
27
|
+
export * from "./GetTableRecordExpirationConfigurationCommand";
|
|
28
|
+
export * from "./GetTableRecordExpirationJobStatusCommand";
|
|
29
|
+
export * from "./GetTableReplicationCommand";
|
|
30
|
+
export * from "./GetTableReplicationStatusCommand";
|
|
31
|
+
export * from "./GetTableStorageClassCommand";
|
|
23
32
|
export * from "./ListNamespacesCommand";
|
|
24
33
|
export * from "./ListTableBucketsCommand";
|
|
25
34
|
export * from "./ListTablesCommand";
|
|
@@ -28,8 +37,12 @@ export * from "./PutTableBucketEncryptionCommand";
|
|
|
28
37
|
export * from "./PutTableBucketMaintenanceConfigurationCommand";
|
|
29
38
|
export * from "./PutTableBucketMetricsConfigurationCommand";
|
|
30
39
|
export * from "./PutTableBucketPolicyCommand";
|
|
40
|
+
export * from "./PutTableBucketReplicationCommand";
|
|
41
|
+
export * from "./PutTableBucketStorageClassCommand";
|
|
31
42
|
export * from "./PutTableMaintenanceConfigurationCommand";
|
|
32
43
|
export * from "./PutTablePolicyCommand";
|
|
44
|
+
export * from "./PutTableRecordExpirationConfigurationCommand";
|
|
45
|
+
export * from "./PutTableReplicationCommand";
|
|
33
46
|
export * from "./RenameTableCommand";
|
|
34
47
|
export * from "./TagResourceCommand";
|
|
35
48
|
export * from "./UntagResourceCommand";
|