@aws-sdk/client-s3tables 3.705.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 (203) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +413 -0
  3. package/dist-cjs/S3Tables.js +63 -0
  4. package/dist-cjs/S3TablesClient.js +50 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/CreateNamespaceCommand.js +26 -0
  8. package/dist-cjs/commands/CreateTableBucketCommand.js +26 -0
  9. package/dist-cjs/commands/CreateTableCommand.js +26 -0
  10. package/dist-cjs/commands/DeleteNamespaceCommand.js +26 -0
  11. package/dist-cjs/commands/DeleteTableBucketCommand.js +26 -0
  12. package/dist-cjs/commands/DeleteTableBucketPolicyCommand.js +26 -0
  13. package/dist-cjs/commands/DeleteTableCommand.js +26 -0
  14. package/dist-cjs/commands/DeleteTablePolicyCommand.js +26 -0
  15. package/dist-cjs/commands/GetNamespaceCommand.js +26 -0
  16. package/dist-cjs/commands/GetTableBucketCommand.js +26 -0
  17. package/dist-cjs/commands/GetTableBucketMaintenanceConfigurationCommand.js +26 -0
  18. package/dist-cjs/commands/GetTableBucketPolicyCommand.js +26 -0
  19. package/dist-cjs/commands/GetTableCommand.js +26 -0
  20. package/dist-cjs/commands/GetTableMaintenanceConfigurationCommand.js +26 -0
  21. package/dist-cjs/commands/GetTableMaintenanceJobStatusCommand.js +26 -0
  22. package/dist-cjs/commands/GetTableMetadataLocationCommand.js +26 -0
  23. package/dist-cjs/commands/GetTablePolicyCommand.js +26 -0
  24. package/dist-cjs/commands/ListNamespacesCommand.js +26 -0
  25. package/dist-cjs/commands/ListTableBucketsCommand.js +26 -0
  26. package/dist-cjs/commands/ListTablesCommand.js +26 -0
  27. package/dist-cjs/commands/PutTableBucketMaintenanceConfigurationCommand.js +26 -0
  28. package/dist-cjs/commands/PutTableBucketPolicyCommand.js +26 -0
  29. package/dist-cjs/commands/PutTableMaintenanceConfigurationCommand.js +26 -0
  30. package/dist-cjs/commands/PutTablePolicyCommand.js +26 -0
  31. package/dist-cjs/commands/RenameTableCommand.js +26 -0
  32. package/dist-cjs/commands/UpdateTableMetadataLocationCommand.js +26 -0
  33. package/dist-cjs/commands/index.js +29 -0
  34. package/dist-cjs/endpoint/EndpointParameters.js +18 -0
  35. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  36. package/dist-cjs/endpoint/ruleset.js +7 -0
  37. package/dist-cjs/extensionConfiguration.js +2 -0
  38. package/dist-cjs/index.js +11 -0
  39. package/dist-cjs/models/S3TablesServiceException.js +12 -0
  40. package/dist-cjs/models/index.js +4 -0
  41. package/dist-cjs/models/models_0.js +142 -0
  42. package/dist-cjs/pagination/Interfaces.js +2 -0
  43. package/dist-cjs/pagination/ListNamespacesPaginator.js +7 -0
  44. package/dist-cjs/pagination/ListTableBucketsPaginator.js +7 -0
  45. package/dist-cjs/pagination/ListTablesPaginator.js +7 -0
  46. package/dist-cjs/pagination/index.js +7 -0
  47. package/dist-cjs/protocols/Aws_restJson1.js +954 -0
  48. package/dist-cjs/runtimeConfig.browser.js +39 -0
  49. package/dist-cjs/runtimeConfig.js +50 -0
  50. package/dist-cjs/runtimeConfig.native.js +15 -0
  51. package/dist-cjs/runtimeConfig.shared.js +34 -0
  52. package/dist-cjs/runtimeExtensions.js +25 -0
  53. package/dist-es/S3Tables.js +59 -0
  54. package/dist-es/S3TablesClient.js +46 -0
  55. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  56. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  57. package/dist-es/commands/CreateNamespaceCommand.js +22 -0
  58. package/dist-es/commands/CreateTableBucketCommand.js +22 -0
  59. package/dist-es/commands/CreateTableCommand.js +22 -0
  60. package/dist-es/commands/DeleteNamespaceCommand.js +22 -0
  61. package/dist-es/commands/DeleteTableBucketCommand.js +22 -0
  62. package/dist-es/commands/DeleteTableBucketPolicyCommand.js +22 -0
  63. package/dist-es/commands/DeleteTableCommand.js +22 -0
  64. package/dist-es/commands/DeleteTablePolicyCommand.js +22 -0
  65. package/dist-es/commands/GetNamespaceCommand.js +22 -0
  66. package/dist-es/commands/GetTableBucketCommand.js +22 -0
  67. package/dist-es/commands/GetTableBucketMaintenanceConfigurationCommand.js +22 -0
  68. package/dist-es/commands/GetTableBucketPolicyCommand.js +22 -0
  69. package/dist-es/commands/GetTableCommand.js +22 -0
  70. package/dist-es/commands/GetTableMaintenanceConfigurationCommand.js +22 -0
  71. package/dist-es/commands/GetTableMaintenanceJobStatusCommand.js +22 -0
  72. package/dist-es/commands/GetTableMetadataLocationCommand.js +22 -0
  73. package/dist-es/commands/GetTablePolicyCommand.js +22 -0
  74. package/dist-es/commands/ListNamespacesCommand.js +22 -0
  75. package/dist-es/commands/ListTableBucketsCommand.js +22 -0
  76. package/dist-es/commands/ListTablesCommand.js +22 -0
  77. package/dist-es/commands/PutTableBucketMaintenanceConfigurationCommand.js +22 -0
  78. package/dist-es/commands/PutTableBucketPolicyCommand.js +22 -0
  79. package/dist-es/commands/PutTableMaintenanceConfigurationCommand.js +22 -0
  80. package/dist-es/commands/PutTablePolicyCommand.js +22 -0
  81. package/dist-es/commands/RenameTableCommand.js +22 -0
  82. package/dist-es/commands/UpdateTableMetadataLocationCommand.js +22 -0
  83. package/dist-es/commands/index.js +26 -0
  84. package/dist-es/endpoint/EndpointParameters.js +14 -0
  85. package/dist-es/endpoint/endpointResolver.js +14 -0
  86. package/dist-es/endpoint/ruleset.js +4 -0
  87. package/dist-es/extensionConfiguration.js +1 -0
  88. package/dist-es/index.js +6 -0
  89. package/dist-es/models/S3TablesServiceException.js +8 -0
  90. package/dist-es/models/index.js +1 -0
  91. package/dist-es/models/models_0.js +132 -0
  92. package/dist-es/pagination/Interfaces.js +1 -0
  93. package/dist-es/pagination/ListNamespacesPaginator.js +4 -0
  94. package/dist-es/pagination/ListTableBucketsPaginator.js +4 -0
  95. package/dist-es/pagination/ListTablesPaginator.js +4 -0
  96. package/dist-es/pagination/index.js +4 -0
  97. package/dist-es/protocols/Aws_restJson1.js +898 -0
  98. package/dist-es/runtimeConfig.browser.js +34 -0
  99. package/dist-es/runtimeConfig.js +45 -0
  100. package/dist-es/runtimeConfig.native.js +11 -0
  101. package/dist-es/runtimeConfig.shared.js +30 -0
  102. package/dist-es/runtimeExtensions.js +21 -0
  103. package/dist-types/S3Tables.d.ts +193 -0
  104. package/dist-types/S3TablesClient.d.ts +195 -0
  105. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  106. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  107. package/dist-types/commands/CreateNamespaceCommand.d.ts +96 -0
  108. package/dist-types/commands/CreateTableBucketCommand.d.ts +90 -0
  109. package/dist-types/commands/CreateTableCommand.d.ts +94 -0
  110. package/dist-types/commands/DeleteNamespaceCommand.d.ts +89 -0
  111. package/dist-types/commands/DeleteTableBucketCommand.d.ts +88 -0
  112. package/dist-types/commands/DeleteTableBucketPolicyCommand.d.ts +88 -0
  113. package/dist-types/commands/DeleteTableCommand.d.ts +91 -0
  114. package/dist-types/commands/DeleteTablePolicyCommand.d.ts +90 -0
  115. package/dist-types/commands/GetNamespaceCommand.d.ts +99 -0
  116. package/dist-types/commands/GetTableBucketCommand.d.ts +96 -0
  117. package/dist-types/commands/GetTableBucketMaintenanceConfigurationCommand.d.ts +101 -0
  118. package/dist-types/commands/GetTableBucketPolicyCommand.d.ts +90 -0
  119. package/dist-types/commands/GetTableCommand.d.ts +110 -0
  120. package/dist-types/commands/GetTableMaintenanceConfigurationCommand.d.ts +106 -0
  121. package/dist-types/commands/GetTableMaintenanceJobStatusCommand.d.ts +99 -0
  122. package/dist-types/commands/GetTableMetadataLocationCommand.d.ts +94 -0
  123. package/dist-types/commands/GetTablePolicyCommand.d.ts +92 -0
  124. package/dist-types/commands/ListNamespacesCommand.d.ts +106 -0
  125. package/dist-types/commands/ListTableBucketsCommand.d.ts +103 -0
  126. package/dist-types/commands/ListTablesCommand.d.ts +106 -0
  127. package/dist-types/commands/PutTableBucketMaintenanceConfigurationCommand.d.ts +99 -0
  128. package/dist-types/commands/PutTableBucketPolicyCommand.d.ts +90 -0
  129. package/dist-types/commands/PutTableMaintenanceConfigurationCommand.d.ts +104 -0
  130. package/dist-types/commands/PutTablePolicyCommand.d.ts +92 -0
  131. package/dist-types/commands/RenameTableCommand.d.ts +93 -0
  132. package/dist-types/commands/UpdateTableMetadataLocationCommand.d.ts +100 -0
  133. package/dist-types/commands/index.d.ts +26 -0
  134. package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  135. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  136. package/dist-types/endpoint/ruleset.d.ts +2 -0
  137. package/dist-types/extensionConfiguration.d.ts +9 -0
  138. package/dist-types/index.d.ts +14 -0
  139. package/dist-types/models/S3TablesServiceException.d.ts +14 -0
  140. package/dist-types/models/index.d.ts +1 -0
  141. package/dist-types/models/models_0.d.ts +1280 -0
  142. package/dist-types/pagination/Interfaces.d.ts +8 -0
  143. package/dist-types/pagination/ListNamespacesPaginator.d.ts +7 -0
  144. package/dist-types/pagination/ListTableBucketsPaginator.d.ts +7 -0
  145. package/dist-types/pagination/ListTablesPaginator.d.ts +7 -0
  146. package/dist-types/pagination/index.d.ts +4 -0
  147. package/dist-types/protocols/Aws_restJson1.d.ts +236 -0
  148. package/dist-types/runtimeConfig.browser.d.ts +48 -0
  149. package/dist-types/runtimeConfig.d.ts +48 -0
  150. package/dist-types/runtimeConfig.native.d.ts +47 -0
  151. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  152. package/dist-types/runtimeExtensions.d.ts +17 -0
  153. package/dist-types/ts3.4/S3Tables.d.ts +460 -0
  154. package/dist-types/ts3.4/S3TablesClient.d.ts +274 -0
  155. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  156. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  157. package/dist-types/ts3.4/commands/CreateNamespaceCommand.d.ts +50 -0
  158. package/dist-types/ts3.4/commands/CreateTableBucketCommand.d.ts +51 -0
  159. package/dist-types/ts3.4/commands/CreateTableCommand.d.ts +47 -0
  160. package/dist-types/ts3.4/commands/DeleteNamespaceCommand.d.ts +45 -0
  161. package/dist-types/ts3.4/commands/DeleteTableBucketCommand.d.ts +46 -0
  162. package/dist-types/ts3.4/commands/DeleteTableBucketPolicyCommand.d.ts +47 -0
  163. package/dist-types/ts3.4/commands/DeleteTableCommand.d.ts +45 -0
  164. package/dist-types/ts3.4/commands/DeleteTablePolicyCommand.d.ts +46 -0
  165. package/dist-types/ts3.4/commands/GetNamespaceCommand.d.ts +47 -0
  166. package/dist-types/ts3.4/commands/GetTableBucketCommand.d.ts +50 -0
  167. package/dist-types/ts3.4/commands/GetTableBucketMaintenanceConfigurationCommand.d.ts +51 -0
  168. package/dist-types/ts3.4/commands/GetTableBucketPolicyCommand.d.ts +51 -0
  169. package/dist-types/ts3.4/commands/GetTableCommand.d.ts +47 -0
  170. package/dist-types/ts3.4/commands/GetTableMaintenanceConfigurationCommand.d.ts +51 -0
  171. package/dist-types/ts3.4/commands/GetTableMaintenanceJobStatusCommand.d.ts +51 -0
  172. package/dist-types/ts3.4/commands/GetTableMetadataLocationCommand.d.ts +51 -0
  173. package/dist-types/ts3.4/commands/GetTablePolicyCommand.d.ts +50 -0
  174. package/dist-types/ts3.4/commands/ListNamespacesCommand.d.ts +50 -0
  175. package/dist-types/ts3.4/commands/ListTableBucketsCommand.d.ts +50 -0
  176. package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +47 -0
  177. package/dist-types/ts3.4/commands/PutTableBucketMaintenanceConfigurationCommand.d.ts +47 -0
  178. package/dist-types/ts3.4/commands/PutTableBucketPolicyCommand.d.ts +46 -0
  179. package/dist-types/ts3.4/commands/PutTableMaintenanceConfigurationCommand.d.ts +47 -0
  180. package/dist-types/ts3.4/commands/PutTablePolicyCommand.d.ts +45 -0
  181. package/dist-types/ts3.4/commands/RenameTableCommand.d.ts +45 -0
  182. package/dist-types/ts3.4/commands/UpdateTableMetadataLocationCommand.d.ts +51 -0
  183. package/dist-types/ts3.4/commands/index.d.ts +26 -0
  184. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  185. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  186. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  187. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  188. package/dist-types/ts3.4/index.d.ts +9 -0
  189. package/dist-types/ts3.4/models/S3TablesServiceException.d.ts +9 -0
  190. package/dist-types/ts3.4/models/index.d.ts +1 -0
  191. package/dist-types/ts3.4/models/models_0.d.ts +399 -0
  192. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  193. package/dist-types/ts3.4/pagination/ListNamespacesPaginator.d.ts +11 -0
  194. package/dist-types/ts3.4/pagination/ListTableBucketsPaginator.d.ts +11 -0
  195. package/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +11 -0
  196. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  197. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +317 -0
  198. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +93 -0
  199. package/dist-types/ts3.4/runtimeConfig.d.ts +94 -0
  200. package/dist-types/ts3.4/runtimeConfig.native.d.ts +87 -0
  201. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
  202. package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
  203. package/package.json +101 -0
@@ -0,0 +1,100 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { UpdateTableMetadataLocationRequest, UpdateTableMetadataLocationResponse } from "../models/models_0";
4
+ import { S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../S3TablesClient";
5
+ /**
6
+ * @public
7
+ */
8
+ export type { __MetadataBearer };
9
+ export { $Command };
10
+ /**
11
+ * @public
12
+ *
13
+ * The input for {@link UpdateTableMetadataLocationCommand}.
14
+ */
15
+ export interface UpdateTableMetadataLocationCommandInput extends UpdateTableMetadataLocationRequest {
16
+ }
17
+ /**
18
+ * @public
19
+ *
20
+ * The output of {@link UpdateTableMetadataLocationCommand}.
21
+ */
22
+ export interface UpdateTableMetadataLocationCommandOutput extends UpdateTableMetadataLocationResponse, __MetadataBearer {
23
+ }
24
+ declare const UpdateTableMetadataLocationCommand_base: {
25
+ new (input: UpdateTableMetadataLocationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateTableMetadataLocationCommandInput, UpdateTableMetadataLocationCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
26
+ new (__0_0: UpdateTableMetadataLocationCommandInput): import("@smithy/smithy-client").CommandImpl<UpdateTableMetadataLocationCommandInput, UpdateTableMetadataLocationCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
27
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
28
+ };
29
+ /**
30
+ * <p>Updates the metadata location for a table.</p>
31
+ * @example
32
+ * Use a bare-bones client and the command you need to make an API call.
33
+ * ```javascript
34
+ * import { S3TablesClient, UpdateTableMetadataLocationCommand } from "@aws-sdk/client-s3tables"; // ES Modules import
35
+ * // const { S3TablesClient, UpdateTableMetadataLocationCommand } = require("@aws-sdk/client-s3tables"); // CommonJS import
36
+ * const client = new S3TablesClient(config);
37
+ * const input = { // UpdateTableMetadataLocationRequest
38
+ * tableBucketARN: "STRING_VALUE", // required
39
+ * namespace: "STRING_VALUE", // required
40
+ * name: "STRING_VALUE", // required
41
+ * versionToken: "STRING_VALUE", // required
42
+ * metadataLocation: "STRING_VALUE", // required
43
+ * };
44
+ * const command = new UpdateTableMetadataLocationCommand(input);
45
+ * const response = await client.send(command);
46
+ * // { // UpdateTableMetadataLocationResponse
47
+ * // name: "STRING_VALUE", // required
48
+ * // tableARN: "STRING_VALUE", // required
49
+ * // namespace: [ // NamespaceList // required
50
+ * // "STRING_VALUE",
51
+ * // ],
52
+ * // versionToken: "STRING_VALUE", // required
53
+ * // metadataLocation: "STRING_VALUE", // required
54
+ * // };
55
+ *
56
+ * ```
57
+ *
58
+ * @param UpdateTableMetadataLocationCommandInput - {@link UpdateTableMetadataLocationCommandInput}
59
+ * @returns {@link UpdateTableMetadataLocationCommandOutput}
60
+ * @see {@link UpdateTableMetadataLocationCommandInput} for command's `input` shape.
61
+ * @see {@link UpdateTableMetadataLocationCommandOutput} for command's `response` shape.
62
+ * @see {@link S3TablesClientResolvedConfig | config} for S3TablesClient's `config` shape.
63
+ *
64
+ * @throws {@link BadRequestException} (client fault)
65
+ * <p>The request is invalid or malformed.</p>
66
+ *
67
+ * @throws {@link ConflictException} (client fault)
68
+ * <p>The request failed because there is a conflict with a previous write. You can retry the
69
+ * request.</p>
70
+ *
71
+ * @throws {@link ForbiddenException} (client fault)
72
+ * <p>The caller isn't authorized to make the request.</p>
73
+ *
74
+ * @throws {@link InternalServerErrorException} (server fault)
75
+ * <p>The request failed due to an internal server error.</p>
76
+ *
77
+ * @throws {@link NotFoundException} (client fault)
78
+ * <p>The request was rejected because the specified resource could not be found.</p>
79
+ *
80
+ * @throws {@link TooManyRequestsException} (client fault)
81
+ * <p>The limit on the number of requests per second was exceeded.</p>
82
+ *
83
+ * @throws {@link S3TablesServiceException}
84
+ * <p>Base exception class for all service exceptions from S3Tables service.</p>
85
+ *
86
+ * @public
87
+ */
88
+ export declare class UpdateTableMetadataLocationCommand extends UpdateTableMetadataLocationCommand_base {
89
+ /** @internal type navigation helper, not in runtime. */
90
+ protected static __types: {
91
+ api: {
92
+ input: UpdateTableMetadataLocationRequest;
93
+ output: UpdateTableMetadataLocationResponse;
94
+ };
95
+ sdk: {
96
+ input: UpdateTableMetadataLocationCommandInput;
97
+ output: UpdateTableMetadataLocationCommandOutput;
98
+ };
99
+ };
100
+ }
@@ -0,0 +1,26 @@
1
+ export * from "./CreateNamespaceCommand";
2
+ export * from "./CreateTableBucketCommand";
3
+ export * from "./CreateTableCommand";
4
+ export * from "./DeleteNamespaceCommand";
5
+ export * from "./DeleteTableBucketCommand";
6
+ export * from "./DeleteTableBucketPolicyCommand";
7
+ export * from "./DeleteTableCommand";
8
+ export * from "./DeleteTablePolicyCommand";
9
+ export * from "./GetNamespaceCommand";
10
+ export * from "./GetTableBucketCommand";
11
+ export * from "./GetTableBucketMaintenanceConfigurationCommand";
12
+ export * from "./GetTableBucketPolicyCommand";
13
+ export * from "./GetTableCommand";
14
+ export * from "./GetTableMaintenanceConfigurationCommand";
15
+ export * from "./GetTableMaintenanceJobStatusCommand";
16
+ export * from "./GetTableMetadataLocationCommand";
17
+ export * from "./GetTablePolicyCommand";
18
+ export * from "./ListNamespacesCommand";
19
+ export * from "./ListTableBucketsCommand";
20
+ export * from "./ListTablesCommand";
21
+ export * from "./PutTableBucketMaintenanceConfigurationCommand";
22
+ export * from "./PutTableBucketPolicyCommand";
23
+ export * from "./PutTableMaintenanceConfigurationCommand";
24
+ export * from "./PutTablePolicyCommand";
25
+ export * from "./RenameTableCommand";
26
+ export * from "./UpdateTableMetadataLocationCommand";
@@ -0,0 +1,40 @@
1
+ import { Endpoint, EndpointParameters as __EndpointParameters, EndpointV2, Provider } from "@smithy/types";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface ClientInputEndpointParameters {
6
+ region?: string | Provider<string>;
7
+ useDualstackEndpoint?: boolean | Provider<boolean>;
8
+ useFipsEndpoint?: boolean | Provider<boolean>;
9
+ endpoint?: string | Provider<string> | Endpoint | Provider<Endpoint> | EndpointV2 | Provider<EndpointV2>;
10
+ }
11
+ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
12
+ defaultSigningName: string;
13
+ };
14
+ export declare const resolveClientEndpointParameters: <T>(options: T & ClientInputEndpointParameters) => T & ClientInputEndpointParameters & {
15
+ defaultSigningName: string;
16
+ };
17
+ export declare const commonParams: {
18
+ readonly UseFIPS: {
19
+ readonly type: "builtInParams";
20
+ readonly name: "useFipsEndpoint";
21
+ };
22
+ readonly Endpoint: {
23
+ readonly type: "builtInParams";
24
+ readonly name: "endpoint";
25
+ };
26
+ readonly Region: {
27
+ readonly type: "builtInParams";
28
+ readonly name: "region";
29
+ };
30
+ readonly UseDualStack: {
31
+ readonly type: "builtInParams";
32
+ readonly name: "useDualstackEndpoint";
33
+ };
34
+ };
35
+ export interface EndpointParameters extends __EndpointParameters {
36
+ Region?: string;
37
+ UseDualStack?: boolean;
38
+ UseFIPS?: boolean;
39
+ Endpoint?: string;
40
+ }
@@ -0,0 +1,5 @@
1
+ import { EndpointV2, Logger } from "@smithy/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (endpointParams: EndpointParameters, context?: {
4
+ logger?: Logger;
5
+ }) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@smithy/types";
2
+ export declare const ruleSet: RuleSetObject;
@@ -0,0 +1,9 @@
1
+ import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
2
+ import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
3
+ import { DefaultExtensionConfiguration } from "@smithy/types";
4
+ import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
5
+ /**
6
+ * @internal
7
+ */
8
+ export interface S3TablesExtensionConfiguration extends HttpHandlerExtensionConfiguration, DefaultExtensionConfiguration, AwsRegionExtensionConfiguration, HttpAuthExtensionConfiguration {
9
+ }
@@ -0,0 +1,14 @@
1
+ /**
2
+ * <p>An Amazon S3 table represents a structured dataset consisting of tabular data in <a href="https://parquet.apache.org/docs/">Apache Parquet</a> format and related metadata. This data is stored inside an S3 table as a subresource. All tables in a table bucket are stored in the <a href="https://iceberg.apache.org/docs/latest/">Apache Iceberg</a> table format. Through integration with the <a href="https://docs.aws.amazon.com/https:/docs.aws.amazon.com/glue/latest/dg/catalog-and-crawler.html">AWS Glue Data Catalog</a> you can interact with your tables using AWS analytics services, such as <a href="https://docs.aws.amazon.com/https:/docs.aws.amazon.com/athena/">Amazon Athena</a> and <a href="https://docs.aws.amazon.com/https:/docs.aws.amazon.com/redshift/">Amazon Redshift</a>. Amazon S3 manages maintenance of your tables through automatic file compaction and snapshot management. For more information, see <a href="https://docs.aws.amazon.com/AmazonS3/latest/userguide/s3-tables-buckets.html">Amazon S3 table buckets</a>.</p>
3
+ *
4
+ * @packageDocumentation
5
+ */
6
+ export * from "./S3TablesClient";
7
+ export * from "./S3Tables";
8
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
9
+ export type { RuntimeExtension } from "./runtimeExtensions";
10
+ export type { S3TablesExtensionConfiguration } from "./extensionConfiguration";
11
+ export * from "./commands";
12
+ export * from "./pagination";
13
+ export * from "./models";
14
+ export { S3TablesServiceException } from "./models/S3TablesServiceException";
@@ -0,0 +1,14 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@smithy/smithy-client";
2
+ export type { __ServiceExceptionOptions };
3
+ export { __ServiceException };
4
+ /**
5
+ * @public
6
+ *
7
+ * Base exception class for all service exceptions from S3Tables service.
8
+ */
9
+ export declare class S3TablesServiceException extends __ServiceException {
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(options: __ServiceExceptionOptions);
14
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";