@aws-sdk/client-s3tables 3.940.0 → 3.946.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.
Files changed (119) hide show
  1. package/README.md +104 -0
  2. package/dist-cjs/index.js +671 -304
  3. package/dist-cjs/runtimeConfig.browser.js +2 -2
  4. package/dist-cjs/runtimeConfig.js +3 -4
  5. package/dist-es/S3Tables.js +26 -0
  6. package/dist-es/S3TablesClient.js +2 -2
  7. package/dist-es/commands/DeleteTableBucketReplicationCommand.js +16 -0
  8. package/dist-es/commands/DeleteTableReplicationCommand.js +16 -0
  9. package/dist-es/commands/GetTableBucketReplicationCommand.js +16 -0
  10. package/dist-es/commands/GetTableBucketStorageClassCommand.js +16 -0
  11. package/dist-es/commands/GetTableRecordExpirationConfigurationCommand.js +16 -0
  12. package/dist-es/commands/GetTableRecordExpirationJobStatusCommand.js +16 -0
  13. package/dist-es/commands/GetTableReplicationCommand.js +16 -0
  14. package/dist-es/commands/GetTableReplicationStatusCommand.js +16 -0
  15. package/dist-es/commands/GetTableStorageClassCommand.js +16 -0
  16. package/dist-es/commands/PutTableBucketReplicationCommand.js +16 -0
  17. package/dist-es/commands/PutTableBucketStorageClassCommand.js +16 -0
  18. package/dist-es/commands/PutTableRecordExpirationConfigurationCommand.js +16 -0
  19. package/dist-es/commands/PutTableReplicationCommand.js +16 -0
  20. package/dist-es/commands/index.js +13 -0
  21. package/dist-es/models/enums.js +19 -0
  22. package/dist-es/models/errors.js +12 -0
  23. package/dist-es/runtimeConfig.browser.js +2 -2
  24. package/dist-es/runtimeConfig.js +2 -3
  25. package/dist-es/schemas/schemas_0.js +455 -305
  26. package/dist-types/S3Tables.d.ts +92 -1
  27. package/dist-types/S3TablesClient.d.ts +25 -12
  28. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +2 -2
  29. package/dist-types/auth/httpAuthSchemeProvider.d.ts +2 -2
  30. package/dist-types/commands/CreateNamespaceCommand.d.ts +3 -3
  31. package/dist-types/commands/CreateTableBucketCommand.d.ts +7 -4
  32. package/dist-types/commands/CreateTableCommand.d.ts +10 -4
  33. package/dist-types/commands/DeleteNamespaceCommand.d.ts +3 -3
  34. package/dist-types/commands/DeleteTableBucketCommand.d.ts +3 -3
  35. package/dist-types/commands/DeleteTableBucketEncryptionCommand.d.ts +3 -3
  36. package/dist-types/commands/DeleteTableBucketMetricsConfigurationCommand.d.ts +3 -3
  37. package/dist-types/commands/DeleteTableBucketPolicyCommand.d.ts +3 -3
  38. package/dist-types/commands/DeleteTableBucketReplicationCommand.d.ts +94 -0
  39. package/dist-types/commands/DeleteTableCommand.d.ts +3 -3
  40. package/dist-types/commands/DeleteTablePolicyCommand.d.ts +3 -3
  41. package/dist-types/commands/DeleteTableReplicationCommand.d.ts +94 -0
  42. package/dist-types/commands/GetNamespaceCommand.d.ts +3 -3
  43. package/dist-types/commands/GetTableBucketCommand.d.ts +3 -3
  44. package/dist-types/commands/GetTableBucketEncryptionCommand.d.ts +3 -3
  45. package/dist-types/commands/GetTableBucketMaintenanceConfigurationCommand.d.ts +3 -3
  46. package/dist-types/commands/GetTableBucketMetricsConfigurationCommand.d.ts +3 -3
  47. package/dist-types/commands/GetTableBucketPolicyCommand.d.ts +3 -3
  48. package/dist-types/commands/GetTableBucketReplicationCommand.d.ts +107 -0
  49. package/dist-types/commands/GetTableBucketStorageClassCommand.d.ts +94 -0
  50. package/dist-types/commands/GetTableCommand.d.ts +8 -3
  51. package/dist-types/commands/GetTableEncryptionCommand.d.ts +3 -3
  52. package/dist-types/commands/GetTableMaintenanceConfigurationCommand.d.ts +3 -3
  53. package/dist-types/commands/GetTableMaintenanceJobStatusCommand.d.ts +3 -3
  54. package/dist-types/commands/GetTableMetadataLocationCommand.d.ts +3 -3
  55. package/dist-types/commands/GetTablePolicyCommand.d.ts +3 -3
  56. package/dist-types/commands/GetTableRecordExpirationConfigurationCommand.d.ts +97 -0
  57. package/dist-types/commands/GetTableRecordExpirationJobStatusCommand.d.ts +99 -0
  58. package/dist-types/commands/GetTableReplicationCommand.d.ts +107 -0
  59. package/dist-types/commands/GetTableReplicationStatusCommand.d.ts +104 -0
  60. package/dist-types/commands/GetTableStorageClassCommand.d.ts +96 -0
  61. package/dist-types/commands/ListNamespacesCommand.d.ts +3 -3
  62. package/dist-types/commands/ListTableBucketsCommand.d.ts +3 -3
  63. package/dist-types/commands/ListTablesCommand.d.ts +4 -3
  64. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -3
  65. package/dist-types/commands/PutTableBucketEncryptionCommand.d.ts +3 -3
  66. package/dist-types/commands/PutTableBucketMaintenanceConfigurationCommand.d.ts +3 -3
  67. package/dist-types/commands/PutTableBucketMetricsConfigurationCommand.d.ts +3 -3
  68. package/dist-types/commands/PutTableBucketPolicyCommand.d.ts +3 -3
  69. package/dist-types/commands/PutTableBucketReplicationCommand.d.ts +109 -0
  70. package/dist-types/commands/PutTableBucketStorageClassCommand.d.ts +93 -0
  71. package/dist-types/commands/PutTableMaintenanceConfigurationCommand.d.ts +3 -3
  72. package/dist-types/commands/PutTablePolicyCommand.d.ts +3 -3
  73. package/dist-types/commands/PutTableRecordExpirationConfigurationCommand.d.ts +96 -0
  74. package/dist-types/commands/PutTableReplicationCommand.d.ts +109 -0
  75. package/dist-types/commands/RenameTableCommand.d.ts +3 -3
  76. package/dist-types/commands/TagResourceCommand.d.ts +3 -3
  77. package/dist-types/commands/UntagResourceCommand.d.ts +3 -3
  78. package/dist-types/commands/UpdateTableMetadataLocationCommand.d.ts +3 -3
  79. package/dist-types/commands/index.d.ts +13 -0
  80. package/dist-types/endpoint/EndpointParameters.d.ts +13 -1
  81. package/dist-types/endpoint/endpointResolver.d.ts +5 -2
  82. package/dist-types/extensionConfiguration.d.ts +4 -4
  83. package/dist-types/models/S3TablesServiceException.d.ts +1 -1
  84. package/dist-types/models/enums.d.ts +51 -0
  85. package/dist-types/models/errors.d.ts +13 -1
  86. package/dist-types/models/models_0.d.ts +530 -2
  87. package/dist-types/pagination/Interfaces.d.ts +1 -1
  88. package/dist-types/pagination/ListNamespacesPaginator.d.ts +1 -1
  89. package/dist-types/pagination/ListTableBucketsPaginator.d.ts +1 -1
  90. package/dist-types/pagination/ListTablesPaginator.d.ts +1 -1
  91. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  92. package/dist-types/runtimeConfig.d.ts +1 -1
  93. package/dist-types/runtimeConfig.native.d.ts +1 -1
  94. package/dist-types/runtimeConfig.shared.d.ts +1 -1
  95. package/dist-types/runtimeExtensions.d.ts +1 -1
  96. package/dist-types/schemas/schemas_0.d.ts +55 -1
  97. package/dist-types/ts3.4/S3Tables.d.ts +239 -0
  98. package/dist-types/ts3.4/S3TablesClient.d.ts +81 -3
  99. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
  100. package/dist-types/ts3.4/commands/DeleteTableBucketReplicationCommand.d.ts +47 -0
  101. package/dist-types/ts3.4/commands/DeleteTableReplicationCommand.d.ts +46 -0
  102. package/dist-types/ts3.4/commands/GetTableBucketReplicationCommand.d.ts +51 -0
  103. package/dist-types/ts3.4/commands/GetTableBucketStorageClassCommand.d.ts +51 -0
  104. package/dist-types/ts3.4/commands/GetTableRecordExpirationConfigurationCommand.d.ts +51 -0
  105. package/dist-types/ts3.4/commands/GetTableRecordExpirationJobStatusCommand.d.ts +51 -0
  106. package/dist-types/ts3.4/commands/GetTableReplicationCommand.d.ts +51 -0
  107. package/dist-types/ts3.4/commands/GetTableReplicationStatusCommand.d.ts +51 -0
  108. package/dist-types/ts3.4/commands/GetTableStorageClassCommand.d.ts +51 -0
  109. package/dist-types/ts3.4/commands/PutTableBucketReplicationCommand.d.ts +51 -0
  110. package/dist-types/ts3.4/commands/PutTableBucketStorageClassCommand.d.ts +47 -0
  111. package/dist-types/ts3.4/commands/PutTableRecordExpirationConfigurationCommand.d.ts +47 -0
  112. package/dist-types/ts3.4/commands/PutTableReplicationCommand.d.ts +51 -0
  113. package/dist-types/ts3.4/commands/index.d.ts +13 -0
  114. package/dist-types/ts3.4/models/S3TablesServiceException.d.ts +1 -1
  115. package/dist-types/ts3.4/models/enums.d.ts +26 -0
  116. package/dist-types/ts3.4/models/errors.d.ts +7 -0
  117. package/dist-types/ts3.4/models/models_0.d.ts +142 -0
  118. package/dist-types/ts3.4/schemas/schemas_0.d.ts +54 -0
  119. package/package.json +13 -12
@@ -0,0 +1,94 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { DeleteTableReplicationRequest } from "../models/models_0";
4
+ import type { 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
+ }
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { GetNamespaceRequest, GetNamespaceResponse } from "../models/models_0";
4
- import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { GetNamespaceRequest, GetNamespaceResponse } from "../models/models_0";
4
+ import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { GetTableBucketRequest, GetTableBucketResponse } from "../models/models_0";
4
- import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { GetTableBucketRequest, GetTableBucketResponse } from "../models/models_0";
4
+ import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { GetTableBucketEncryptionRequest, GetTableBucketEncryptionResponse } from "../models/models_0";
4
- import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { GetTableBucketEncryptionRequest, GetTableBucketEncryptionResponse } from "../models/models_0";
4
+ import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { GetTableBucketMaintenanceConfigurationRequest, GetTableBucketMaintenanceConfigurationResponse } from "../models/models_0";
4
- import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { GetTableBucketMaintenanceConfigurationRequest, GetTableBucketMaintenanceConfigurationResponse } from "../models/models_0";
4
+ import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { GetTableBucketMetricsConfigurationRequest, GetTableBucketMetricsConfigurationResponse } from "../models/models_0";
4
- import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { GetTableBucketMetricsConfigurationRequest, GetTableBucketMetricsConfigurationResponse } from "../models/models_0";
4
+ import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { GetTableBucketPolicyRequest, GetTableBucketPolicyResponse } from "../models/models_0";
4
- import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { GetTableBucketPolicyRequest, GetTableBucketPolicyResponse } from "../models/models_0";
4
+ import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -0,0 +1,107 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { GetTableBucketReplicationRequest, GetTableBucketReplicationResponse } from "../models/models_0";
4
+ import type { 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
+ }
@@ -0,0 +1,94 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { GetTableBucketStorageClassRequest, GetTableBucketStorageClassResponse } from "../models/models_0";
4
+ import type { 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 GetTableBucketStorageClassCommand}.
14
+ */
15
+ export interface GetTableBucketStorageClassCommandInput extends GetTableBucketStorageClassRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetTableBucketStorageClassCommand}.
21
+ */
22
+ export interface GetTableBucketStorageClassCommandOutput extends GetTableBucketStorageClassResponse, __MetadataBearer {
23
+ }
24
+ declare const GetTableBucketStorageClassCommand_base: {
25
+ new (input: GetTableBucketStorageClassCommandInput): import("@smithy/smithy-client").CommandImpl<GetTableBucketStorageClassCommandInput, GetTableBucketStorageClassCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetTableBucketStorageClassCommandInput): import("@smithy/smithy-client").CommandImpl<GetTableBucketStorageClassCommandInput, GetTableBucketStorageClassCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Retrieves the storage class configuration for a specific table. This allows you to view the storage class settings that apply to an individual table, which may differ from the table bucket's default configuration.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:GetTableBucketStorageClass</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, GetTableBucketStorageClassCommand } from "@aws-sdk/client-s3tables"; // ES Modules import
35
+ * // const { S3TablesClient, GetTableBucketStorageClassCommand } = 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 = { // GetTableBucketStorageClassRequest
40
+ * tableBucketARN: "STRING_VALUE", // required
41
+ * };
42
+ * const command = new GetTableBucketStorageClassCommand(input);
43
+ * const response = await client.send(command);
44
+ * // { // GetTableBucketStorageClassResponse
45
+ * // storageClassConfiguration: { // StorageClassConfiguration
46
+ * // storageClass: "STANDARD" || "INTELLIGENT_TIERING", // required
47
+ * // },
48
+ * // };
49
+ *
50
+ * ```
51
+ *
52
+ * @param GetTableBucketStorageClassCommandInput - {@link GetTableBucketStorageClassCommandInput}
53
+ * @returns {@link GetTableBucketStorageClassCommandOutput}
54
+ * @see {@link GetTableBucketStorageClassCommandInput} for command's `input` shape.
55
+ * @see {@link GetTableBucketStorageClassCommandOutput} for command's `response` shape.
56
+ * @see {@link S3TablesClientResolvedConfig | config} for S3TablesClient's `config` shape.
57
+ *
58
+ * @throws {@link AccessDeniedException} (client fault)
59
+ * <p>The action cannot be performed because you do not have the required permission.</p>
60
+ *
61
+ * @throws {@link BadRequestException} (client fault)
62
+ * <p>The request is invalid or malformed.</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 GetTableBucketStorageClassCommand extends GetTableBucketStorageClassCommand_base {
83
+ /** @internal type navigation helper, not in runtime. */
84
+ protected static __types: {
85
+ api: {
86
+ input: GetTableBucketStorageClassRequest;
87
+ output: GetTableBucketStorageClassResponse;
88
+ };
89
+ sdk: {
90
+ input: GetTableBucketStorageClassCommandInput;
91
+ output: GetTableBucketStorageClassCommandOutput;
92
+ };
93
+ };
94
+ }
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { GetTableRequest, GetTableResponse } from "../models/models_0";
4
- import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { GetTableRequest, GetTableResponse } from "../models/models_0";
4
+ import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -63,6 +63,11 @@ declare const GetTableCommand_base: {
63
63
  * // ownerAccountId: "STRING_VALUE", // required
64
64
  * // format: "ICEBERG", // required
65
65
  * // tableBucketId: "STRING_VALUE",
66
+ * // managedTableInformation: { // ManagedTableInformation
67
+ * // replicationInformation: { // ReplicationInformation
68
+ * // sourceTableARN: "STRING_VALUE", // required
69
+ * // },
70
+ * // },
66
71
  * // };
67
72
  *
68
73
  * ```
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { GetTableEncryptionRequest, GetTableEncryptionResponse } from "../models/models_0";
4
- import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { GetTableEncryptionRequest, GetTableEncryptionResponse } from "../models/models_0";
4
+ import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { GetTableMaintenanceConfigurationRequest, GetTableMaintenanceConfigurationResponse } from "../models/models_0";
4
- import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { GetTableMaintenanceConfigurationRequest, GetTableMaintenanceConfigurationResponse } from "../models/models_0";
4
+ import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { GetTableMaintenanceJobStatusRequest, GetTableMaintenanceJobStatusResponse } from "../models/models_0";
4
- import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { GetTableMaintenanceJobStatusRequest, GetTableMaintenanceJobStatusResponse } from "../models/models_0";
4
+ import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { GetTableMetadataLocationRequest, GetTableMetadataLocationResponse } from "../models/models_0";
4
- import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { GetTableMetadataLocationRequest, GetTableMetadataLocationResponse } from "../models/models_0";
4
+ import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -1,7 +1,7 @@
1
1
  import { Command as $Command } from "@smithy/smithy-client";
2
- import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
- import { GetTablePolicyRequest, GetTablePolicyResponse } from "../models/models_0";
4
- import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { GetTablePolicyRequest, GetTablePolicyResponse } from "../models/models_0";
4
+ import type { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
5
5
  /**
6
6
  * @public
7
7
  */
@@ -0,0 +1,97 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import type { GetTableRecordExpirationConfigurationRequest, GetTableRecordExpirationConfigurationResponse } from "../models/models_0";
4
+ import type { 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 GetTableRecordExpirationConfigurationCommand}.
14
+ */
15
+ export interface GetTableRecordExpirationConfigurationCommandInput extends GetTableRecordExpirationConfigurationRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link GetTableRecordExpirationConfigurationCommand}.
21
+ */
22
+ export interface GetTableRecordExpirationConfigurationCommandOutput extends GetTableRecordExpirationConfigurationResponse, __MetadataBearer {
23
+ }
24
+ declare const GetTableRecordExpirationConfigurationCommand_base: {
25
+ new (input: GetTableRecordExpirationConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<GetTableRecordExpirationConfigurationCommandInput, GetTableRecordExpirationConfigurationCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (input: GetTableRecordExpirationConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<GetTableRecordExpirationConfigurationCommandInput, GetTableRecordExpirationConfigurationCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Retrieves the expiration configuration settings for records in a table, and the status of the configuration. If the status of the configuration is <code>enabled</code>, records expire and are automatically removed from the table after the specified number of days.</p> <dl> <dt>Permissions</dt> <dd> <p>You must have the <code>s3tables:GetTableRecordExpirationConfiguration</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, GetTableRecordExpirationConfigurationCommand } from "@aws-sdk/client-s3tables"; // ES Modules import
35
+ * // const { S3TablesClient, GetTableRecordExpirationConfigurationCommand } = 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 = { // GetTableRecordExpirationConfigurationRequest
40
+ * tableArn: "STRING_VALUE", // required
41
+ * };
42
+ * const command = new GetTableRecordExpirationConfigurationCommand(input);
43
+ * const response = await client.send(command);
44
+ * // { // GetTableRecordExpirationConfigurationResponse
45
+ * // configuration: { // TableRecordExpirationConfigurationValue
46
+ * // status: "enabled" || "disabled",
47
+ * // settings: { // TableRecordExpirationSettings
48
+ * // days: Number("int"),
49
+ * // },
50
+ * // },
51
+ * // };
52
+ *
53
+ * ```
54
+ *
55
+ * @param GetTableRecordExpirationConfigurationCommandInput - {@link GetTableRecordExpirationConfigurationCommandInput}
56
+ * @returns {@link GetTableRecordExpirationConfigurationCommandOutput}
57
+ * @see {@link GetTableRecordExpirationConfigurationCommandInput} for command's `input` shape.
58
+ * @see {@link GetTableRecordExpirationConfigurationCommandOutput} for command's `response` shape.
59
+ * @see {@link S3TablesClientResolvedConfig | config} for S3TablesClient's `config` shape.
60
+ *
61
+ * @throws {@link BadRequestException} (client fault)
62
+ * <p>The request is invalid or malformed.</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 MethodNotAllowedException} (client fault)
71
+ * <p>The requested operation is not allowed on this resource. This may occur when attempting to modify a resource that is managed by a service or has restrictions that prevent the operation.</p>
72
+ *
73
+ * @throws {@link NotFoundException} (client fault)
74
+ * <p>The request was rejected because the specified resource could not be found.</p>
75
+ *
76
+ * @throws {@link TooManyRequestsException} (client fault)
77
+ * <p>The limit on the number of requests per second was exceeded.</p>
78
+ *
79
+ * @throws {@link S3TablesServiceException}
80
+ * <p>Base exception class for all service exceptions from S3Tables service.</p>
81
+ *
82
+ *
83
+ * @public
84
+ */
85
+ export declare class GetTableRecordExpirationConfigurationCommand extends GetTableRecordExpirationConfigurationCommand_base {
86
+ /** @internal type navigation helper, not in runtime. */
87
+ protected static __types: {
88
+ api: {
89
+ input: GetTableRecordExpirationConfigurationRequest;
90
+ output: GetTableRecordExpirationConfigurationResponse;
91
+ };
92
+ sdk: {
93
+ input: GetTableRecordExpirationConfigurationCommandInput;
94
+ output: GetTableRecordExpirationConfigurationCommandOutput;
95
+ };
96
+ };
97
+ }