@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.
- package/LICENSE +201 -0
- package/README.md +413 -0
- package/dist-cjs/S3Tables.js +63 -0
- package/dist-cjs/S3TablesClient.js +50 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/commands/CreateNamespaceCommand.js +26 -0
- package/dist-cjs/commands/CreateTableBucketCommand.js +26 -0
- package/dist-cjs/commands/CreateTableCommand.js +26 -0
- package/dist-cjs/commands/DeleteNamespaceCommand.js +26 -0
- package/dist-cjs/commands/DeleteTableBucketCommand.js +26 -0
- package/dist-cjs/commands/DeleteTableBucketPolicyCommand.js +26 -0
- package/dist-cjs/commands/DeleteTableCommand.js +26 -0
- package/dist-cjs/commands/DeleteTablePolicyCommand.js +26 -0
- package/dist-cjs/commands/GetNamespaceCommand.js +26 -0
- package/dist-cjs/commands/GetTableBucketCommand.js +26 -0
- package/dist-cjs/commands/GetTableBucketMaintenanceConfigurationCommand.js +26 -0
- package/dist-cjs/commands/GetTableBucketPolicyCommand.js +26 -0
- package/dist-cjs/commands/GetTableCommand.js +26 -0
- package/dist-cjs/commands/GetTableMaintenanceConfigurationCommand.js +26 -0
- package/dist-cjs/commands/GetTableMaintenanceJobStatusCommand.js +26 -0
- package/dist-cjs/commands/GetTableMetadataLocationCommand.js +26 -0
- package/dist-cjs/commands/GetTablePolicyCommand.js +26 -0
- package/dist-cjs/commands/ListNamespacesCommand.js +26 -0
- package/dist-cjs/commands/ListTableBucketsCommand.js +26 -0
- package/dist-cjs/commands/ListTablesCommand.js +26 -0
- package/dist-cjs/commands/PutTableBucketMaintenanceConfigurationCommand.js +26 -0
- package/dist-cjs/commands/PutTableBucketPolicyCommand.js +26 -0
- package/dist-cjs/commands/PutTableMaintenanceConfigurationCommand.js +26 -0
- package/dist-cjs/commands/PutTablePolicyCommand.js +26 -0
- package/dist-cjs/commands/RenameTableCommand.js +26 -0
- package/dist-cjs/commands/UpdateTableMetadataLocationCommand.js +26 -0
- package/dist-cjs/commands/index.js +29 -0
- package/dist-cjs/endpoint/EndpointParameters.js +18 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/S3TablesServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +142 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListNamespacesPaginator.js +7 -0
- package/dist-cjs/pagination/ListTableBucketsPaginator.js +7 -0
- package/dist-cjs/pagination/ListTablesPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +7 -0
- package/dist-cjs/protocols/Aws_restJson1.js +954 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +50 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist-cjs/runtimeExtensions.js +25 -0
- package/dist-es/S3Tables.js +59 -0
- package/dist-es/S3TablesClient.js +46 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/CreateNamespaceCommand.js +22 -0
- package/dist-es/commands/CreateTableBucketCommand.js +22 -0
- package/dist-es/commands/CreateTableCommand.js +22 -0
- package/dist-es/commands/DeleteNamespaceCommand.js +22 -0
- package/dist-es/commands/DeleteTableBucketCommand.js +22 -0
- package/dist-es/commands/DeleteTableBucketPolicyCommand.js +22 -0
- package/dist-es/commands/DeleteTableCommand.js +22 -0
- package/dist-es/commands/DeleteTablePolicyCommand.js +22 -0
- package/dist-es/commands/GetNamespaceCommand.js +22 -0
- package/dist-es/commands/GetTableBucketCommand.js +22 -0
- package/dist-es/commands/GetTableBucketMaintenanceConfigurationCommand.js +22 -0
- package/dist-es/commands/GetTableBucketPolicyCommand.js +22 -0
- package/dist-es/commands/GetTableCommand.js +22 -0
- package/dist-es/commands/GetTableMaintenanceConfigurationCommand.js +22 -0
- package/dist-es/commands/GetTableMaintenanceJobStatusCommand.js +22 -0
- package/dist-es/commands/GetTableMetadataLocationCommand.js +22 -0
- package/dist-es/commands/GetTablePolicyCommand.js +22 -0
- package/dist-es/commands/ListNamespacesCommand.js +22 -0
- package/dist-es/commands/ListTableBucketsCommand.js +22 -0
- package/dist-es/commands/ListTablesCommand.js +22 -0
- package/dist-es/commands/PutTableBucketMaintenanceConfigurationCommand.js +22 -0
- package/dist-es/commands/PutTableBucketPolicyCommand.js +22 -0
- package/dist-es/commands/PutTableMaintenanceConfigurationCommand.js +22 -0
- package/dist-es/commands/PutTablePolicyCommand.js +22 -0
- package/dist-es/commands/RenameTableCommand.js +22 -0
- package/dist-es/commands/UpdateTableMetadataLocationCommand.js +22 -0
- package/dist-es/commands/index.js +26 -0
- package/dist-es/endpoint/EndpointParameters.js +14 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/S3TablesServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +132 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListNamespacesPaginator.js +4 -0
- package/dist-es/pagination/ListTableBucketsPaginator.js +4 -0
- package/dist-es/pagination/ListTablesPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/protocols/Aws_restJson1.js +898 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +45 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +30 -0
- package/dist-es/runtimeExtensions.js +21 -0
- package/dist-types/S3Tables.d.ts +193 -0
- package/dist-types/S3TablesClient.d.ts +195 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/commands/CreateNamespaceCommand.d.ts +96 -0
- package/dist-types/commands/CreateTableBucketCommand.d.ts +90 -0
- package/dist-types/commands/CreateTableCommand.d.ts +94 -0
- package/dist-types/commands/DeleteNamespaceCommand.d.ts +89 -0
- package/dist-types/commands/DeleteTableBucketCommand.d.ts +88 -0
- package/dist-types/commands/DeleteTableBucketPolicyCommand.d.ts +88 -0
- package/dist-types/commands/DeleteTableCommand.d.ts +91 -0
- package/dist-types/commands/DeleteTablePolicyCommand.d.ts +90 -0
- package/dist-types/commands/GetNamespaceCommand.d.ts +99 -0
- package/dist-types/commands/GetTableBucketCommand.d.ts +96 -0
- package/dist-types/commands/GetTableBucketMaintenanceConfigurationCommand.d.ts +101 -0
- package/dist-types/commands/GetTableBucketPolicyCommand.d.ts +90 -0
- package/dist-types/commands/GetTableCommand.d.ts +110 -0
- package/dist-types/commands/GetTableMaintenanceConfigurationCommand.d.ts +106 -0
- package/dist-types/commands/GetTableMaintenanceJobStatusCommand.d.ts +99 -0
- package/dist-types/commands/GetTableMetadataLocationCommand.d.ts +94 -0
- package/dist-types/commands/GetTablePolicyCommand.d.ts +92 -0
- package/dist-types/commands/ListNamespacesCommand.d.ts +106 -0
- package/dist-types/commands/ListTableBucketsCommand.d.ts +103 -0
- package/dist-types/commands/ListTablesCommand.d.ts +106 -0
- package/dist-types/commands/PutTableBucketMaintenanceConfigurationCommand.d.ts +99 -0
- package/dist-types/commands/PutTableBucketPolicyCommand.d.ts +90 -0
- package/dist-types/commands/PutTableMaintenanceConfigurationCommand.d.ts +104 -0
- package/dist-types/commands/PutTablePolicyCommand.d.ts +92 -0
- package/dist-types/commands/RenameTableCommand.d.ts +93 -0
- package/dist-types/commands/UpdateTableMetadataLocationCommand.d.ts +100 -0
- package/dist-types/commands/index.d.ts +26 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +14 -0
- package/dist-types/models/S3TablesServiceException.d.ts +14 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +1280 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListNamespacesPaginator.d.ts +7 -0
- package/dist-types/pagination/ListTableBucketsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListTablesPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +236 -0
- package/dist-types/runtimeConfig.browser.d.ts +48 -0
- package/dist-types/runtimeConfig.d.ts +48 -0
- package/dist-types/runtimeConfig.native.d.ts +47 -0
- package/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/S3Tables.d.ts +460 -0
- package/dist-types/ts3.4/S3TablesClient.d.ts +274 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/commands/CreateNamespaceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CreateTableBucketCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateTableCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteNamespaceCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/DeleteTableBucketCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/DeleteTableBucketPolicyCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteTableCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/DeleteTablePolicyCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/GetNamespaceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetTableBucketCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetTableBucketMaintenanceConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTableBucketPolicyCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTableCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetTableMaintenanceConfigurationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTableMaintenanceJobStatusCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTableMetadataLocationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetTablePolicyCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListNamespacesCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListTableBucketsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/PutTableBucketMaintenanceConfigurationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/PutTableBucketPolicyCommand.d.ts +46 -0
- package/dist-types/ts3.4/commands/PutTableMaintenanceConfigurationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/PutTablePolicyCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/RenameTableCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/UpdateTableMetadataLocationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +26 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +9 -0
- package/dist-types/ts3.4/models/S3TablesServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +399 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListNamespacesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTableBucketsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +317 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +93 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +94 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +87 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +11 -0
- package/package.json +101 -0
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { DeleteTablePolicyRequest } 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 DeleteTablePolicyCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface DeleteTablePolicyCommandInput extends DeleteTablePolicyRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link DeleteTablePolicyCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface DeleteTablePolicyCommandOutput extends __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const DeleteTablePolicyCommand_base: {
|
|
25
|
+
new (input: DeleteTablePolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteTablePolicyCommandInput, DeleteTablePolicyCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: DeleteTablePolicyCommandInput): import("@smithy/smithy-client").CommandImpl<DeleteTablePolicyCommandInput, DeleteTablePolicyCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Deletes a table policy.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { S3TablesClient, DeleteTablePolicyCommand } from "@aws-sdk/client-s3tables"; // ES Modules import
|
|
35
|
+
* // const { S3TablesClient, DeleteTablePolicyCommand } = require("@aws-sdk/client-s3tables"); // CommonJS import
|
|
36
|
+
* const client = new S3TablesClient(config);
|
|
37
|
+
* const input = { // DeleteTablePolicyRequest
|
|
38
|
+
* tableBucketARN: "STRING_VALUE", // required
|
|
39
|
+
* namespace: "STRING_VALUE", // required
|
|
40
|
+
* name: "STRING_VALUE", // required
|
|
41
|
+
* };
|
|
42
|
+
* const command = new DeleteTablePolicyCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // {};
|
|
45
|
+
*
|
|
46
|
+
* ```
|
|
47
|
+
*
|
|
48
|
+
* @param DeleteTablePolicyCommandInput - {@link DeleteTablePolicyCommandInput}
|
|
49
|
+
* @returns {@link DeleteTablePolicyCommandOutput}
|
|
50
|
+
* @see {@link DeleteTablePolicyCommandInput} for command's `input` shape.
|
|
51
|
+
* @see {@link DeleteTablePolicyCommandOutput} for command's `response` shape.
|
|
52
|
+
* @see {@link S3TablesClientResolvedConfig | config} for S3TablesClient's `config` shape.
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link BadRequestException} (client fault)
|
|
55
|
+
* <p>The request is invalid or malformed.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ConflictException} (client fault)
|
|
58
|
+
* <p>The request failed because there is a conflict with a previous write. You can retry the
|
|
59
|
+
* request.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
62
|
+
* <p>The caller isn't authorized to make the request.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
65
|
+
* <p>The request failed due to an internal server error.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link NotFoundException} (client fault)
|
|
68
|
+
* <p>The request was rejected because the specified resource could not be found.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
71
|
+
* <p>The limit on the number of requests per second was exceeded.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link S3TablesServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from S3Tables service.</p>
|
|
75
|
+
*
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
export declare class DeleteTablePolicyCommand extends DeleteTablePolicyCommand_base {
|
|
79
|
+
/** @internal type navigation helper, not in runtime. */
|
|
80
|
+
protected static __types: {
|
|
81
|
+
api: {
|
|
82
|
+
input: DeleteTablePolicyRequest;
|
|
83
|
+
output: {};
|
|
84
|
+
};
|
|
85
|
+
sdk: {
|
|
86
|
+
input: DeleteTablePolicyCommandInput;
|
|
87
|
+
output: DeleteTablePolicyCommandOutput;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
}
|
|
@@ -0,0 +1,99 @@
|
|
|
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";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetNamespaceCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetNamespaceCommandInput extends GetNamespaceRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetNamespaceCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetNamespaceCommandOutput extends GetNamespaceResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetNamespaceCommand_base: {
|
|
25
|
+
new (input: GetNamespaceCommandInput): import("@smithy/smithy-client").CommandImpl<GetNamespaceCommandInput, GetNamespaceCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: GetNamespaceCommandInput): import("@smithy/smithy-client").CommandImpl<GetNamespaceCommandInput, GetNamespaceCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Gets details about a namespace.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { S3TablesClient, GetNamespaceCommand } from "@aws-sdk/client-s3tables"; // ES Modules import
|
|
35
|
+
* // const { S3TablesClient, GetNamespaceCommand } = require("@aws-sdk/client-s3tables"); // CommonJS import
|
|
36
|
+
* const client = new S3TablesClient(config);
|
|
37
|
+
* const input = { // GetNamespaceRequest
|
|
38
|
+
* tableBucketARN: "STRING_VALUE", // required
|
|
39
|
+
* namespace: "STRING_VALUE", // required
|
|
40
|
+
* };
|
|
41
|
+
* const command = new GetNamespaceCommand(input);
|
|
42
|
+
* const response = await client.send(command);
|
|
43
|
+
* // { // GetNamespaceResponse
|
|
44
|
+
* // namespace: [ // NamespaceList // required
|
|
45
|
+
* // "STRING_VALUE",
|
|
46
|
+
* // ],
|
|
47
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
48
|
+
* // createdBy: "STRING_VALUE", // required
|
|
49
|
+
* // ownerAccountId: "STRING_VALUE", // required
|
|
50
|
+
* // };
|
|
51
|
+
*
|
|
52
|
+
* ```
|
|
53
|
+
*
|
|
54
|
+
* @param GetNamespaceCommandInput - {@link GetNamespaceCommandInput}
|
|
55
|
+
* @returns {@link GetNamespaceCommandOutput}
|
|
56
|
+
* @see {@link GetNamespaceCommandInput} for command's `input` shape.
|
|
57
|
+
* @see {@link GetNamespaceCommandOutput} for command's `response` shape.
|
|
58
|
+
* @see {@link S3TablesClientResolvedConfig | config} for S3TablesClient's `config` shape.
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
61
|
+
* <p>The action cannot be performed because you do not have the required permission.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link BadRequestException} (client fault)
|
|
64
|
+
* <p>The request is invalid or malformed.</p>
|
|
65
|
+
*
|
|
66
|
+
* @throws {@link ConflictException} (client fault)
|
|
67
|
+
* <p>The request failed because there is a conflict with a previous write. You can retry the
|
|
68
|
+
* request.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
71
|
+
* <p>The caller isn't authorized to make the request.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
74
|
+
* <p>The request failed due to an internal server error.</p>
|
|
75
|
+
*
|
|
76
|
+
* @throws {@link NotFoundException} (client fault)
|
|
77
|
+
* <p>The request was rejected because the specified resource could not be found.</p>
|
|
78
|
+
*
|
|
79
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
80
|
+
* <p>The limit on the number of requests per second was exceeded.</p>
|
|
81
|
+
*
|
|
82
|
+
* @throws {@link S3TablesServiceException}
|
|
83
|
+
* <p>Base exception class for all service exceptions from S3Tables service.</p>
|
|
84
|
+
*
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
export declare class GetNamespaceCommand extends GetNamespaceCommand_base {
|
|
88
|
+
/** @internal type navigation helper, not in runtime. */
|
|
89
|
+
protected static __types: {
|
|
90
|
+
api: {
|
|
91
|
+
input: GetNamespaceRequest;
|
|
92
|
+
output: GetNamespaceResponse;
|
|
93
|
+
};
|
|
94
|
+
sdk: {
|
|
95
|
+
input: GetNamespaceCommandInput;
|
|
96
|
+
output: GetNamespaceCommandOutput;
|
|
97
|
+
};
|
|
98
|
+
};
|
|
99
|
+
}
|
|
@@ -0,0 +1,96 @@
|
|
|
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";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetTableBucketCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetTableBucketCommandInput extends GetTableBucketRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetTableBucketCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetTableBucketCommandOutput extends GetTableBucketResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetTableBucketCommand_base: {
|
|
25
|
+
new (input: GetTableBucketCommandInput): import("@smithy/smithy-client").CommandImpl<GetTableBucketCommandInput, GetTableBucketCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: GetTableBucketCommandInput): import("@smithy/smithy-client").CommandImpl<GetTableBucketCommandInput, GetTableBucketCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Gets details on a table bucket.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { S3TablesClient, GetTableBucketCommand } from "@aws-sdk/client-s3tables"; // ES Modules import
|
|
35
|
+
* // const { S3TablesClient, GetTableBucketCommand } = require("@aws-sdk/client-s3tables"); // CommonJS import
|
|
36
|
+
* const client = new S3TablesClient(config);
|
|
37
|
+
* const input = { // GetTableBucketRequest
|
|
38
|
+
* tableBucketARN: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
40
|
+
* const command = new GetTableBucketCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // { // GetTableBucketResponse
|
|
43
|
+
* // arn: "STRING_VALUE", // required
|
|
44
|
+
* // name: "STRING_VALUE", // required
|
|
45
|
+
* // ownerAccountId: "STRING_VALUE", // required
|
|
46
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
47
|
+
* // };
|
|
48
|
+
*
|
|
49
|
+
* ```
|
|
50
|
+
*
|
|
51
|
+
* @param GetTableBucketCommandInput - {@link GetTableBucketCommandInput}
|
|
52
|
+
* @returns {@link GetTableBucketCommandOutput}
|
|
53
|
+
* @see {@link GetTableBucketCommandInput} for command's `input` shape.
|
|
54
|
+
* @see {@link GetTableBucketCommandOutput} for command's `response` shape.
|
|
55
|
+
* @see {@link S3TablesClientResolvedConfig | config} for S3TablesClient's `config` shape.
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
58
|
+
* <p>The action cannot be performed because you do not have the required permission.</p>
|
|
59
|
+
*
|
|
60
|
+
* @throws {@link BadRequestException} (client fault)
|
|
61
|
+
* <p>The request is invalid or malformed.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link ConflictException} (client fault)
|
|
64
|
+
* <p>The request failed because there is a conflict with a previous write. You can retry the
|
|
65
|
+
* request.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
68
|
+
* <p>The caller isn't authorized to make the request.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
71
|
+
* <p>The request failed due to an internal server error.</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
|
+
* @public
|
|
83
|
+
*/
|
|
84
|
+
export declare class GetTableBucketCommand extends GetTableBucketCommand_base {
|
|
85
|
+
/** @internal type navigation helper, not in runtime. */
|
|
86
|
+
protected static __types: {
|
|
87
|
+
api: {
|
|
88
|
+
input: GetTableBucketRequest;
|
|
89
|
+
output: GetTableBucketResponse;
|
|
90
|
+
};
|
|
91
|
+
sdk: {
|
|
92
|
+
input: GetTableBucketCommandInput;
|
|
93
|
+
output: GetTableBucketCommandOutput;
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
}
|
|
@@ -0,0 +1,101 @@
|
|
|
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";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetTableBucketMaintenanceConfigurationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetTableBucketMaintenanceConfigurationCommandInput extends GetTableBucketMaintenanceConfigurationRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetTableBucketMaintenanceConfigurationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetTableBucketMaintenanceConfigurationCommandOutput extends GetTableBucketMaintenanceConfigurationResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetTableBucketMaintenanceConfigurationCommand_base: {
|
|
25
|
+
new (input: GetTableBucketMaintenanceConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<GetTableBucketMaintenanceConfigurationCommandInput, GetTableBucketMaintenanceConfigurationCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: GetTableBucketMaintenanceConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<GetTableBucketMaintenanceConfigurationCommandInput, GetTableBucketMaintenanceConfigurationCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Gets details about a maintenance configuration for a given table bucket.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { S3TablesClient, GetTableBucketMaintenanceConfigurationCommand } from "@aws-sdk/client-s3tables"; // ES Modules import
|
|
35
|
+
* // const { S3TablesClient, GetTableBucketMaintenanceConfigurationCommand } = require("@aws-sdk/client-s3tables"); // CommonJS import
|
|
36
|
+
* const client = new S3TablesClient(config);
|
|
37
|
+
* const input = { // GetTableBucketMaintenanceConfigurationRequest
|
|
38
|
+
* tableBucketARN: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
40
|
+
* const command = new GetTableBucketMaintenanceConfigurationCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // { // GetTableBucketMaintenanceConfigurationResponse
|
|
43
|
+
* // tableBucketARN: "STRING_VALUE", // required
|
|
44
|
+
* // configuration: { // TableBucketMaintenanceConfiguration // required
|
|
45
|
+
* // "<keys>": { // TableBucketMaintenanceConfigurationValue
|
|
46
|
+
* // status: "enabled" || "disabled",
|
|
47
|
+
* // settings: { // TableBucketMaintenanceSettings Union: only one key present
|
|
48
|
+
* // icebergUnreferencedFileRemoval: { // IcebergUnreferencedFileRemovalSettings
|
|
49
|
+
* // unreferencedDays: Number("int"),
|
|
50
|
+
* // nonCurrentDays: Number("int"),
|
|
51
|
+
* // },
|
|
52
|
+
* // },
|
|
53
|
+
* // },
|
|
54
|
+
* // },
|
|
55
|
+
* // };
|
|
56
|
+
*
|
|
57
|
+
* ```
|
|
58
|
+
*
|
|
59
|
+
* @param GetTableBucketMaintenanceConfigurationCommandInput - {@link GetTableBucketMaintenanceConfigurationCommandInput}
|
|
60
|
+
* @returns {@link GetTableBucketMaintenanceConfigurationCommandOutput}
|
|
61
|
+
* @see {@link GetTableBucketMaintenanceConfigurationCommandInput} for command's `input` shape.
|
|
62
|
+
* @see {@link GetTableBucketMaintenanceConfigurationCommandOutput} for command's `response` shape.
|
|
63
|
+
* @see {@link S3TablesClientResolvedConfig | config} for S3TablesClient's `config` shape.
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link BadRequestException} (client fault)
|
|
66
|
+
* <p>The request is invalid or malformed.</p>
|
|
67
|
+
*
|
|
68
|
+
* @throws {@link ConflictException} (client fault)
|
|
69
|
+
* <p>The request failed because there is a conflict with a previous write. You can retry the
|
|
70
|
+
* request.</p>
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
73
|
+
* <p>The caller isn't authorized to make the request.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
76
|
+
* <p>The request failed due to an internal server error.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link NotFoundException} (client fault)
|
|
79
|
+
* <p>The request was rejected because the specified resource could not be found.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
82
|
+
* <p>The limit on the number of requests per second was exceeded.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link S3TablesServiceException}
|
|
85
|
+
* <p>Base exception class for all service exceptions from S3Tables service.</p>
|
|
86
|
+
*
|
|
87
|
+
* @public
|
|
88
|
+
*/
|
|
89
|
+
export declare class GetTableBucketMaintenanceConfigurationCommand extends GetTableBucketMaintenanceConfigurationCommand_base {
|
|
90
|
+
/** @internal type navigation helper, not in runtime. */
|
|
91
|
+
protected static __types: {
|
|
92
|
+
api: {
|
|
93
|
+
input: GetTableBucketMaintenanceConfigurationRequest;
|
|
94
|
+
output: GetTableBucketMaintenanceConfigurationResponse;
|
|
95
|
+
};
|
|
96
|
+
sdk: {
|
|
97
|
+
input: GetTableBucketMaintenanceConfigurationCommandInput;
|
|
98
|
+
output: GetTableBucketMaintenanceConfigurationCommandOutput;
|
|
99
|
+
};
|
|
100
|
+
};
|
|
101
|
+
}
|
|
@@ -0,0 +1,90 @@
|
|
|
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";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetTableBucketPolicyCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetTableBucketPolicyCommandInput extends GetTableBucketPolicyRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetTableBucketPolicyCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetTableBucketPolicyCommandOutput extends GetTableBucketPolicyResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetTableBucketPolicyCommand_base: {
|
|
25
|
+
new (input: GetTableBucketPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<GetTableBucketPolicyCommandInput, GetTableBucketPolicyCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: GetTableBucketPolicyCommandInput): import("@smithy/smithy-client").CommandImpl<GetTableBucketPolicyCommandInput, GetTableBucketPolicyCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Gets details about a table bucket policy.</p>
|
|
31
|
+
* @example
|
|
32
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
33
|
+
* ```javascript
|
|
34
|
+
* import { S3TablesClient, GetTableBucketPolicyCommand } from "@aws-sdk/client-s3tables"; // ES Modules import
|
|
35
|
+
* // const { S3TablesClient, GetTableBucketPolicyCommand } = require("@aws-sdk/client-s3tables"); // CommonJS import
|
|
36
|
+
* const client = new S3TablesClient(config);
|
|
37
|
+
* const input = { // GetTableBucketPolicyRequest
|
|
38
|
+
* tableBucketARN: "STRING_VALUE", // required
|
|
39
|
+
* };
|
|
40
|
+
* const command = new GetTableBucketPolicyCommand(input);
|
|
41
|
+
* const response = await client.send(command);
|
|
42
|
+
* // { // GetTableBucketPolicyResponse
|
|
43
|
+
* // resourcePolicy: "STRING_VALUE", // required
|
|
44
|
+
* // };
|
|
45
|
+
*
|
|
46
|
+
* ```
|
|
47
|
+
*
|
|
48
|
+
* @param GetTableBucketPolicyCommandInput - {@link GetTableBucketPolicyCommandInput}
|
|
49
|
+
* @returns {@link GetTableBucketPolicyCommandOutput}
|
|
50
|
+
* @see {@link GetTableBucketPolicyCommandInput} for command's `input` shape.
|
|
51
|
+
* @see {@link GetTableBucketPolicyCommandOutput} for command's `response` shape.
|
|
52
|
+
* @see {@link S3TablesClientResolvedConfig | config} for S3TablesClient's `config` shape.
|
|
53
|
+
*
|
|
54
|
+
* @throws {@link BadRequestException} (client fault)
|
|
55
|
+
* <p>The request is invalid or malformed.</p>
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link ConflictException} (client fault)
|
|
58
|
+
* <p>The request failed because there is a conflict with a previous write. You can retry the
|
|
59
|
+
* request.</p>
|
|
60
|
+
*
|
|
61
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
62
|
+
* <p>The caller isn't authorized to make the request.</p>
|
|
63
|
+
*
|
|
64
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
65
|
+
* <p>The request failed due to an internal server error.</p>
|
|
66
|
+
*
|
|
67
|
+
* @throws {@link NotFoundException} (client fault)
|
|
68
|
+
* <p>The request was rejected because the specified resource could not be found.</p>
|
|
69
|
+
*
|
|
70
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
71
|
+
* <p>The limit on the number of requests per second was exceeded.</p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link S3TablesServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from S3Tables service.</p>
|
|
75
|
+
*
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
export declare class GetTableBucketPolicyCommand extends GetTableBucketPolicyCommand_base {
|
|
79
|
+
/** @internal type navigation helper, not in runtime. */
|
|
80
|
+
protected static __types: {
|
|
81
|
+
api: {
|
|
82
|
+
input: GetTableBucketPolicyRequest;
|
|
83
|
+
output: GetTableBucketPolicyResponse;
|
|
84
|
+
};
|
|
85
|
+
sdk: {
|
|
86
|
+
input: GetTableBucketPolicyCommandInput;
|
|
87
|
+
output: GetTableBucketPolicyCommandOutput;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
}
|
|
@@ -0,0 +1,110 @@
|
|
|
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";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export type { __MetadataBearer };
|
|
9
|
+
export { $Command };
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*
|
|
13
|
+
* The input for {@link GetTableCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetTableCommandInput extends GetTableRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetTableCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetTableCommandOutput extends GetTableResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetTableCommand_base: {
|
|
25
|
+
new (input: GetTableCommandInput): import("@smithy/smithy-client").CommandImpl<GetTableCommandInput, GetTableCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: GetTableCommandInput): import("@smithy/smithy-client").CommandImpl<GetTableCommandInput, GetTableCommandOutput, S3TablesClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>Gets details about 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, GetTableCommand } from "@aws-sdk/client-s3tables"; // ES Modules import
|
|
35
|
+
* // const { S3TablesClient, GetTableCommand } = require("@aws-sdk/client-s3tables"); // CommonJS import
|
|
36
|
+
* const client = new S3TablesClient(config);
|
|
37
|
+
* const input = { // GetTableRequest
|
|
38
|
+
* tableBucketARN: "STRING_VALUE", // required
|
|
39
|
+
* namespace: "STRING_VALUE", // required
|
|
40
|
+
* name: "STRING_VALUE", // required
|
|
41
|
+
* };
|
|
42
|
+
* const command = new GetTableCommand(input);
|
|
43
|
+
* const response = await client.send(command);
|
|
44
|
+
* // { // GetTableResponse
|
|
45
|
+
* // name: "STRING_VALUE", // required
|
|
46
|
+
* // type: "customer" || "aws", // required
|
|
47
|
+
* // tableARN: "STRING_VALUE", // required
|
|
48
|
+
* // namespace: [ // NamespaceList // required
|
|
49
|
+
* // "STRING_VALUE",
|
|
50
|
+
* // ],
|
|
51
|
+
* // versionToken: "STRING_VALUE", // required
|
|
52
|
+
* // metadataLocation: "STRING_VALUE",
|
|
53
|
+
* // warehouseLocation: "STRING_VALUE", // required
|
|
54
|
+
* // createdAt: new Date("TIMESTAMP"), // required
|
|
55
|
+
* // createdBy: "STRING_VALUE", // required
|
|
56
|
+
* // managedByService: "STRING_VALUE",
|
|
57
|
+
* // modifiedAt: new Date("TIMESTAMP"), // required
|
|
58
|
+
* // modifiedBy: "STRING_VALUE", // required
|
|
59
|
+
* // ownerAccountId: "STRING_VALUE", // required
|
|
60
|
+
* // format: "ICEBERG", // required
|
|
61
|
+
* // };
|
|
62
|
+
*
|
|
63
|
+
* ```
|
|
64
|
+
*
|
|
65
|
+
* @param GetTableCommandInput - {@link GetTableCommandInput}
|
|
66
|
+
* @returns {@link GetTableCommandOutput}
|
|
67
|
+
* @see {@link GetTableCommandInput} for command's `input` shape.
|
|
68
|
+
* @see {@link GetTableCommandOutput} for command's `response` shape.
|
|
69
|
+
* @see {@link S3TablesClientResolvedConfig | config} for S3TablesClient's `config` shape.
|
|
70
|
+
*
|
|
71
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
72
|
+
* <p>The action cannot be performed because you do not have the required permission.</p>
|
|
73
|
+
*
|
|
74
|
+
* @throws {@link BadRequestException} (client fault)
|
|
75
|
+
* <p>The request is invalid or malformed.</p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link ConflictException} (client fault)
|
|
78
|
+
* <p>The request failed because there is a conflict with a previous write. You can retry the
|
|
79
|
+
* request.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link ForbiddenException} (client fault)
|
|
82
|
+
* <p>The caller isn't authorized to make the request.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link InternalServerErrorException} (server fault)
|
|
85
|
+
* <p>The request failed due to an internal server error.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link NotFoundException} (client fault)
|
|
88
|
+
* <p>The request was rejected because the specified resource could not be found.</p>
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link TooManyRequestsException} (client fault)
|
|
91
|
+
* <p>The limit on the number of requests per second was exceeded.</p>
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link S3TablesServiceException}
|
|
94
|
+
* <p>Base exception class for all service exceptions from S3Tables service.</p>
|
|
95
|
+
*
|
|
96
|
+
* @public
|
|
97
|
+
*/
|
|
98
|
+
export declare class GetTableCommand extends GetTableCommand_base {
|
|
99
|
+
/** @internal type navigation helper, not in runtime. */
|
|
100
|
+
protected static __types: {
|
|
101
|
+
api: {
|
|
102
|
+
input: GetTableRequest;
|
|
103
|
+
output: GetTableResponse;
|
|
104
|
+
};
|
|
105
|
+
sdk: {
|
|
106
|
+
input: GetTableCommandInput;
|
|
107
|
+
output: GetTableCommandOutput;
|
|
108
|
+
};
|
|
109
|
+
};
|
|
110
|
+
}
|