@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,317 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@smithy/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
CreateNamespaceCommandInput,
|
|
8
|
+
CreateNamespaceCommandOutput,
|
|
9
|
+
} from "../commands/CreateNamespaceCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateTableBucketCommandInput,
|
|
12
|
+
CreateTableBucketCommandOutput,
|
|
13
|
+
} from "../commands/CreateTableBucketCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateTableCommandInput,
|
|
16
|
+
CreateTableCommandOutput,
|
|
17
|
+
} from "../commands/CreateTableCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteNamespaceCommandInput,
|
|
20
|
+
DeleteNamespaceCommandOutput,
|
|
21
|
+
} from "../commands/DeleteNamespaceCommand";
|
|
22
|
+
import {
|
|
23
|
+
DeleteTableBucketCommandInput,
|
|
24
|
+
DeleteTableBucketCommandOutput,
|
|
25
|
+
} from "../commands/DeleteTableBucketCommand";
|
|
26
|
+
import {
|
|
27
|
+
DeleteTableBucketPolicyCommandInput,
|
|
28
|
+
DeleteTableBucketPolicyCommandOutput,
|
|
29
|
+
} from "../commands/DeleteTableBucketPolicyCommand";
|
|
30
|
+
import {
|
|
31
|
+
DeleteTableCommandInput,
|
|
32
|
+
DeleteTableCommandOutput,
|
|
33
|
+
} from "../commands/DeleteTableCommand";
|
|
34
|
+
import {
|
|
35
|
+
DeleteTablePolicyCommandInput,
|
|
36
|
+
DeleteTablePolicyCommandOutput,
|
|
37
|
+
} from "../commands/DeleteTablePolicyCommand";
|
|
38
|
+
import {
|
|
39
|
+
GetNamespaceCommandInput,
|
|
40
|
+
GetNamespaceCommandOutput,
|
|
41
|
+
} from "../commands/GetNamespaceCommand";
|
|
42
|
+
import {
|
|
43
|
+
GetTableBucketCommandInput,
|
|
44
|
+
GetTableBucketCommandOutput,
|
|
45
|
+
} from "../commands/GetTableBucketCommand";
|
|
46
|
+
import {
|
|
47
|
+
GetTableBucketMaintenanceConfigurationCommandInput,
|
|
48
|
+
GetTableBucketMaintenanceConfigurationCommandOutput,
|
|
49
|
+
} from "../commands/GetTableBucketMaintenanceConfigurationCommand";
|
|
50
|
+
import {
|
|
51
|
+
GetTableBucketPolicyCommandInput,
|
|
52
|
+
GetTableBucketPolicyCommandOutput,
|
|
53
|
+
} from "../commands/GetTableBucketPolicyCommand";
|
|
54
|
+
import {
|
|
55
|
+
GetTableCommandInput,
|
|
56
|
+
GetTableCommandOutput,
|
|
57
|
+
} from "../commands/GetTableCommand";
|
|
58
|
+
import {
|
|
59
|
+
GetTableMaintenanceConfigurationCommandInput,
|
|
60
|
+
GetTableMaintenanceConfigurationCommandOutput,
|
|
61
|
+
} from "../commands/GetTableMaintenanceConfigurationCommand";
|
|
62
|
+
import {
|
|
63
|
+
GetTableMaintenanceJobStatusCommandInput,
|
|
64
|
+
GetTableMaintenanceJobStatusCommandOutput,
|
|
65
|
+
} from "../commands/GetTableMaintenanceJobStatusCommand";
|
|
66
|
+
import {
|
|
67
|
+
GetTableMetadataLocationCommandInput,
|
|
68
|
+
GetTableMetadataLocationCommandOutput,
|
|
69
|
+
} from "../commands/GetTableMetadataLocationCommand";
|
|
70
|
+
import {
|
|
71
|
+
GetTablePolicyCommandInput,
|
|
72
|
+
GetTablePolicyCommandOutput,
|
|
73
|
+
} from "../commands/GetTablePolicyCommand";
|
|
74
|
+
import {
|
|
75
|
+
ListNamespacesCommandInput,
|
|
76
|
+
ListNamespacesCommandOutput,
|
|
77
|
+
} from "../commands/ListNamespacesCommand";
|
|
78
|
+
import {
|
|
79
|
+
ListTableBucketsCommandInput,
|
|
80
|
+
ListTableBucketsCommandOutput,
|
|
81
|
+
} from "../commands/ListTableBucketsCommand";
|
|
82
|
+
import {
|
|
83
|
+
ListTablesCommandInput,
|
|
84
|
+
ListTablesCommandOutput,
|
|
85
|
+
} from "../commands/ListTablesCommand";
|
|
86
|
+
import {
|
|
87
|
+
PutTableBucketMaintenanceConfigurationCommandInput,
|
|
88
|
+
PutTableBucketMaintenanceConfigurationCommandOutput,
|
|
89
|
+
} from "../commands/PutTableBucketMaintenanceConfigurationCommand";
|
|
90
|
+
import {
|
|
91
|
+
PutTableBucketPolicyCommandInput,
|
|
92
|
+
PutTableBucketPolicyCommandOutput,
|
|
93
|
+
} from "../commands/PutTableBucketPolicyCommand";
|
|
94
|
+
import {
|
|
95
|
+
PutTableMaintenanceConfigurationCommandInput,
|
|
96
|
+
PutTableMaintenanceConfigurationCommandOutput,
|
|
97
|
+
} from "../commands/PutTableMaintenanceConfigurationCommand";
|
|
98
|
+
import {
|
|
99
|
+
PutTablePolicyCommandInput,
|
|
100
|
+
PutTablePolicyCommandOutput,
|
|
101
|
+
} from "../commands/PutTablePolicyCommand";
|
|
102
|
+
import {
|
|
103
|
+
RenameTableCommandInput,
|
|
104
|
+
RenameTableCommandOutput,
|
|
105
|
+
} from "../commands/RenameTableCommand";
|
|
106
|
+
import {
|
|
107
|
+
UpdateTableMetadataLocationCommandInput,
|
|
108
|
+
UpdateTableMetadataLocationCommandOutput,
|
|
109
|
+
} from "../commands/UpdateTableMetadataLocationCommand";
|
|
110
|
+
export declare const se_CreateNamespaceCommand: (
|
|
111
|
+
input: CreateNamespaceCommandInput,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<__HttpRequest>;
|
|
114
|
+
export declare const se_CreateTableCommand: (
|
|
115
|
+
input: CreateTableCommandInput,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<__HttpRequest>;
|
|
118
|
+
export declare const se_CreateTableBucketCommand: (
|
|
119
|
+
input: CreateTableBucketCommandInput,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<__HttpRequest>;
|
|
122
|
+
export declare const se_DeleteNamespaceCommand: (
|
|
123
|
+
input: DeleteNamespaceCommandInput,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<__HttpRequest>;
|
|
126
|
+
export declare const se_DeleteTableCommand: (
|
|
127
|
+
input: DeleteTableCommandInput,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<__HttpRequest>;
|
|
130
|
+
export declare const se_DeleteTableBucketCommand: (
|
|
131
|
+
input: DeleteTableBucketCommandInput,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<__HttpRequest>;
|
|
134
|
+
export declare const se_DeleteTableBucketPolicyCommand: (
|
|
135
|
+
input: DeleteTableBucketPolicyCommandInput,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<__HttpRequest>;
|
|
138
|
+
export declare const se_DeleteTablePolicyCommand: (
|
|
139
|
+
input: DeleteTablePolicyCommandInput,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<__HttpRequest>;
|
|
142
|
+
export declare const se_GetNamespaceCommand: (
|
|
143
|
+
input: GetNamespaceCommandInput,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<__HttpRequest>;
|
|
146
|
+
export declare const se_GetTableCommand: (
|
|
147
|
+
input: GetTableCommandInput,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<__HttpRequest>;
|
|
150
|
+
export declare const se_GetTableBucketCommand: (
|
|
151
|
+
input: GetTableBucketCommandInput,
|
|
152
|
+
context: __SerdeContext
|
|
153
|
+
) => Promise<__HttpRequest>;
|
|
154
|
+
export declare const se_GetTableBucketMaintenanceConfigurationCommand: (
|
|
155
|
+
input: GetTableBucketMaintenanceConfigurationCommandInput,
|
|
156
|
+
context: __SerdeContext
|
|
157
|
+
) => Promise<__HttpRequest>;
|
|
158
|
+
export declare const se_GetTableBucketPolicyCommand: (
|
|
159
|
+
input: GetTableBucketPolicyCommandInput,
|
|
160
|
+
context: __SerdeContext
|
|
161
|
+
) => Promise<__HttpRequest>;
|
|
162
|
+
export declare const se_GetTableMaintenanceConfigurationCommand: (
|
|
163
|
+
input: GetTableMaintenanceConfigurationCommandInput,
|
|
164
|
+
context: __SerdeContext
|
|
165
|
+
) => Promise<__HttpRequest>;
|
|
166
|
+
export declare const se_GetTableMaintenanceJobStatusCommand: (
|
|
167
|
+
input: GetTableMaintenanceJobStatusCommandInput,
|
|
168
|
+
context: __SerdeContext
|
|
169
|
+
) => Promise<__HttpRequest>;
|
|
170
|
+
export declare const se_GetTableMetadataLocationCommand: (
|
|
171
|
+
input: GetTableMetadataLocationCommandInput,
|
|
172
|
+
context: __SerdeContext
|
|
173
|
+
) => Promise<__HttpRequest>;
|
|
174
|
+
export declare const se_GetTablePolicyCommand: (
|
|
175
|
+
input: GetTablePolicyCommandInput,
|
|
176
|
+
context: __SerdeContext
|
|
177
|
+
) => Promise<__HttpRequest>;
|
|
178
|
+
export declare const se_ListNamespacesCommand: (
|
|
179
|
+
input: ListNamespacesCommandInput,
|
|
180
|
+
context: __SerdeContext
|
|
181
|
+
) => Promise<__HttpRequest>;
|
|
182
|
+
export declare const se_ListTableBucketsCommand: (
|
|
183
|
+
input: ListTableBucketsCommandInput,
|
|
184
|
+
context: __SerdeContext
|
|
185
|
+
) => Promise<__HttpRequest>;
|
|
186
|
+
export declare const se_ListTablesCommand: (
|
|
187
|
+
input: ListTablesCommandInput,
|
|
188
|
+
context: __SerdeContext
|
|
189
|
+
) => Promise<__HttpRequest>;
|
|
190
|
+
export declare const se_PutTableBucketMaintenanceConfigurationCommand: (
|
|
191
|
+
input: PutTableBucketMaintenanceConfigurationCommandInput,
|
|
192
|
+
context: __SerdeContext
|
|
193
|
+
) => Promise<__HttpRequest>;
|
|
194
|
+
export declare const se_PutTableBucketPolicyCommand: (
|
|
195
|
+
input: PutTableBucketPolicyCommandInput,
|
|
196
|
+
context: __SerdeContext
|
|
197
|
+
) => Promise<__HttpRequest>;
|
|
198
|
+
export declare const se_PutTableMaintenanceConfigurationCommand: (
|
|
199
|
+
input: PutTableMaintenanceConfigurationCommandInput,
|
|
200
|
+
context: __SerdeContext
|
|
201
|
+
) => Promise<__HttpRequest>;
|
|
202
|
+
export declare const se_PutTablePolicyCommand: (
|
|
203
|
+
input: PutTablePolicyCommandInput,
|
|
204
|
+
context: __SerdeContext
|
|
205
|
+
) => Promise<__HttpRequest>;
|
|
206
|
+
export declare const se_RenameTableCommand: (
|
|
207
|
+
input: RenameTableCommandInput,
|
|
208
|
+
context: __SerdeContext
|
|
209
|
+
) => Promise<__HttpRequest>;
|
|
210
|
+
export declare const se_UpdateTableMetadataLocationCommand: (
|
|
211
|
+
input: UpdateTableMetadataLocationCommandInput,
|
|
212
|
+
context: __SerdeContext
|
|
213
|
+
) => Promise<__HttpRequest>;
|
|
214
|
+
export declare const de_CreateNamespaceCommand: (
|
|
215
|
+
output: __HttpResponse,
|
|
216
|
+
context: __SerdeContext
|
|
217
|
+
) => Promise<CreateNamespaceCommandOutput>;
|
|
218
|
+
export declare const de_CreateTableCommand: (
|
|
219
|
+
output: __HttpResponse,
|
|
220
|
+
context: __SerdeContext
|
|
221
|
+
) => Promise<CreateTableCommandOutput>;
|
|
222
|
+
export declare const de_CreateTableBucketCommand: (
|
|
223
|
+
output: __HttpResponse,
|
|
224
|
+
context: __SerdeContext
|
|
225
|
+
) => Promise<CreateTableBucketCommandOutput>;
|
|
226
|
+
export declare const de_DeleteNamespaceCommand: (
|
|
227
|
+
output: __HttpResponse,
|
|
228
|
+
context: __SerdeContext
|
|
229
|
+
) => Promise<DeleteNamespaceCommandOutput>;
|
|
230
|
+
export declare const de_DeleteTableCommand: (
|
|
231
|
+
output: __HttpResponse,
|
|
232
|
+
context: __SerdeContext
|
|
233
|
+
) => Promise<DeleteTableCommandOutput>;
|
|
234
|
+
export declare const de_DeleteTableBucketCommand: (
|
|
235
|
+
output: __HttpResponse,
|
|
236
|
+
context: __SerdeContext
|
|
237
|
+
) => Promise<DeleteTableBucketCommandOutput>;
|
|
238
|
+
export declare const de_DeleteTableBucketPolicyCommand: (
|
|
239
|
+
output: __HttpResponse,
|
|
240
|
+
context: __SerdeContext
|
|
241
|
+
) => Promise<DeleteTableBucketPolicyCommandOutput>;
|
|
242
|
+
export declare const de_DeleteTablePolicyCommand: (
|
|
243
|
+
output: __HttpResponse,
|
|
244
|
+
context: __SerdeContext
|
|
245
|
+
) => Promise<DeleteTablePolicyCommandOutput>;
|
|
246
|
+
export declare const de_GetNamespaceCommand: (
|
|
247
|
+
output: __HttpResponse,
|
|
248
|
+
context: __SerdeContext
|
|
249
|
+
) => Promise<GetNamespaceCommandOutput>;
|
|
250
|
+
export declare const de_GetTableCommand: (
|
|
251
|
+
output: __HttpResponse,
|
|
252
|
+
context: __SerdeContext
|
|
253
|
+
) => Promise<GetTableCommandOutput>;
|
|
254
|
+
export declare const de_GetTableBucketCommand: (
|
|
255
|
+
output: __HttpResponse,
|
|
256
|
+
context: __SerdeContext
|
|
257
|
+
) => Promise<GetTableBucketCommandOutput>;
|
|
258
|
+
export declare const de_GetTableBucketMaintenanceConfigurationCommand: (
|
|
259
|
+
output: __HttpResponse,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<GetTableBucketMaintenanceConfigurationCommandOutput>;
|
|
262
|
+
export declare const de_GetTableBucketPolicyCommand: (
|
|
263
|
+
output: __HttpResponse,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<GetTableBucketPolicyCommandOutput>;
|
|
266
|
+
export declare const de_GetTableMaintenanceConfigurationCommand: (
|
|
267
|
+
output: __HttpResponse,
|
|
268
|
+
context: __SerdeContext
|
|
269
|
+
) => Promise<GetTableMaintenanceConfigurationCommandOutput>;
|
|
270
|
+
export declare const de_GetTableMaintenanceJobStatusCommand: (
|
|
271
|
+
output: __HttpResponse,
|
|
272
|
+
context: __SerdeContext
|
|
273
|
+
) => Promise<GetTableMaintenanceJobStatusCommandOutput>;
|
|
274
|
+
export declare const de_GetTableMetadataLocationCommand: (
|
|
275
|
+
output: __HttpResponse,
|
|
276
|
+
context: __SerdeContext
|
|
277
|
+
) => Promise<GetTableMetadataLocationCommandOutput>;
|
|
278
|
+
export declare const de_GetTablePolicyCommand: (
|
|
279
|
+
output: __HttpResponse,
|
|
280
|
+
context: __SerdeContext
|
|
281
|
+
) => Promise<GetTablePolicyCommandOutput>;
|
|
282
|
+
export declare const de_ListNamespacesCommand: (
|
|
283
|
+
output: __HttpResponse,
|
|
284
|
+
context: __SerdeContext
|
|
285
|
+
) => Promise<ListNamespacesCommandOutput>;
|
|
286
|
+
export declare const de_ListTableBucketsCommand: (
|
|
287
|
+
output: __HttpResponse,
|
|
288
|
+
context: __SerdeContext
|
|
289
|
+
) => Promise<ListTableBucketsCommandOutput>;
|
|
290
|
+
export declare const de_ListTablesCommand: (
|
|
291
|
+
output: __HttpResponse,
|
|
292
|
+
context: __SerdeContext
|
|
293
|
+
) => Promise<ListTablesCommandOutput>;
|
|
294
|
+
export declare const de_PutTableBucketMaintenanceConfigurationCommand: (
|
|
295
|
+
output: __HttpResponse,
|
|
296
|
+
context: __SerdeContext
|
|
297
|
+
) => Promise<PutTableBucketMaintenanceConfigurationCommandOutput>;
|
|
298
|
+
export declare const de_PutTableBucketPolicyCommand: (
|
|
299
|
+
output: __HttpResponse,
|
|
300
|
+
context: __SerdeContext
|
|
301
|
+
) => Promise<PutTableBucketPolicyCommandOutput>;
|
|
302
|
+
export declare const de_PutTableMaintenanceConfigurationCommand: (
|
|
303
|
+
output: __HttpResponse,
|
|
304
|
+
context: __SerdeContext
|
|
305
|
+
) => Promise<PutTableMaintenanceConfigurationCommandOutput>;
|
|
306
|
+
export declare const de_PutTablePolicyCommand: (
|
|
307
|
+
output: __HttpResponse,
|
|
308
|
+
context: __SerdeContext
|
|
309
|
+
) => Promise<PutTablePolicyCommandOutput>;
|
|
310
|
+
export declare const de_RenameTableCommand: (
|
|
311
|
+
output: __HttpResponse,
|
|
312
|
+
context: __SerdeContext
|
|
313
|
+
) => Promise<RenameTableCommandOutput>;
|
|
314
|
+
export declare const de_UpdateTableMetadataLocationCommand: (
|
|
315
|
+
output: __HttpResponse,
|
|
316
|
+
context: __SerdeContext
|
|
317
|
+
) => Promise<UpdateTableMetadataLocationCommandOutput>;
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import { S3TablesClientConfig } from "./S3TablesClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: S3TablesClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
6
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
+
credentialDefaultProvider: (
|
|
10
|
+
input: any
|
|
11
|
+
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
12
|
+
defaultUserAgentProvider: (
|
|
13
|
+
config?:
|
|
14
|
+
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
15
|
+
| undefined
|
|
16
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
17
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
18
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
19
|
+
requestHandler:
|
|
20
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
21
|
+
| RequestHandler;
|
|
22
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
23
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
24
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
25
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
26
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
27
|
+
apiVersion: string;
|
|
28
|
+
cacheMiddleware?: boolean | undefined;
|
|
29
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
30
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
31
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
32
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
33
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
34
|
+
disableHostPrefix: boolean;
|
|
35
|
+
serviceId: string;
|
|
36
|
+
logger: import("@smithy/types").Logger;
|
|
37
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
38
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
39
|
+
userAgentAppId?:
|
|
40
|
+
| string
|
|
41
|
+
| import("@smithy/types").Provider<string | undefined>
|
|
42
|
+
| undefined;
|
|
43
|
+
retryStrategy?:
|
|
44
|
+
| import("@smithy/types").RetryStrategy
|
|
45
|
+
| import("@smithy/types").RetryStrategyV2
|
|
46
|
+
| undefined;
|
|
47
|
+
endpoint?:
|
|
48
|
+
| ((
|
|
49
|
+
| string
|
|
50
|
+
| import("@smithy/types").Endpoint
|
|
51
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
52
|
+
| import("@smithy/types").EndpointV2
|
|
53
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
54
|
+
) &
|
|
55
|
+
(
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Provider<string>
|
|
58
|
+
| import("@smithy/types").Endpoint
|
|
59
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
60
|
+
| import("@smithy/types").EndpointV2
|
|
61
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
62
|
+
))
|
|
63
|
+
| undefined;
|
|
64
|
+
endpointProvider: (
|
|
65
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
66
|
+
context?: {
|
|
67
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
68
|
+
}
|
|
69
|
+
) => import("@smithy/types").EndpointV2;
|
|
70
|
+
tls?: boolean | undefined;
|
|
71
|
+
serviceConfiguredEndpoint?: undefined;
|
|
72
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
73
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3TablesHttpAuthSchemeProvider;
|
|
74
|
+
credentials?:
|
|
75
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
76
|
+
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
77
|
+
| undefined;
|
|
78
|
+
signer?:
|
|
79
|
+
| import("@smithy/types").RequestSigner
|
|
80
|
+
| ((
|
|
81
|
+
authScheme?: import("@smithy/types").AuthScheme | undefined
|
|
82
|
+
) => Promise<import("@smithy/types").RequestSigner>)
|
|
83
|
+
| undefined;
|
|
84
|
+
signingEscapePath?: boolean | undefined;
|
|
85
|
+
systemClockOffset?: number | undefined;
|
|
86
|
+
signingRegion?: string | undefined;
|
|
87
|
+
signerConstructor?:
|
|
88
|
+
| (new (
|
|
89
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
90
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
91
|
+
) => import("@smithy/types").RequestSigner)
|
|
92
|
+
| undefined;
|
|
93
|
+
};
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
+
import { S3TablesClientConfig } from "./S3TablesClient";
|
|
3
|
+
export declare const getRuntimeConfig: (config: S3TablesClientConfig) => {
|
|
4
|
+
runtime: string;
|
|
5
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
6
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
|
+
>;
|
|
8
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
+
credentialDefaultProvider: (
|
|
10
|
+
init?:
|
|
11
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
12
|
+
| undefined
|
|
13
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
14
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
15
|
+
>;
|
|
16
|
+
defaultUserAgentProvider: (
|
|
17
|
+
config?:
|
|
18
|
+
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
19
|
+
| undefined
|
|
20
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
21
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
22
|
+
region: string | import("@smithy/types").Provider<string>;
|
|
23
|
+
requestHandler:
|
|
24
|
+
| RequestHandler
|
|
25
|
+
| import("@smithy/protocol-http").HttpHandler<any>;
|
|
26
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
27
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
28
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
29
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
30
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
31
|
+
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
32
|
+
apiVersion: string;
|
|
33
|
+
cacheMiddleware?: boolean | undefined;
|
|
34
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
35
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
36
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
37
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
38
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
39
|
+
disableHostPrefix: boolean;
|
|
40
|
+
serviceId: string;
|
|
41
|
+
logger: import("@smithy/types").Logger;
|
|
42
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
43
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
44
|
+
retryStrategy?:
|
|
45
|
+
| import("@smithy/types").RetryStrategy
|
|
46
|
+
| import("@smithy/types").RetryStrategyV2
|
|
47
|
+
| undefined;
|
|
48
|
+
endpoint?:
|
|
49
|
+
| ((
|
|
50
|
+
| string
|
|
51
|
+
| import("@smithy/types").Endpoint
|
|
52
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
53
|
+
| import("@smithy/types").EndpointV2
|
|
54
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
55
|
+
) &
|
|
56
|
+
(
|
|
57
|
+
| string
|
|
58
|
+
| import("@smithy/types").Provider<string>
|
|
59
|
+
| import("@smithy/types").Endpoint
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
61
|
+
| import("@smithy/types").EndpointV2
|
|
62
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
63
|
+
))
|
|
64
|
+
| undefined;
|
|
65
|
+
endpointProvider: (
|
|
66
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
67
|
+
context?: {
|
|
68
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
69
|
+
}
|
|
70
|
+
) => import("@smithy/types").EndpointV2;
|
|
71
|
+
tls?: boolean | undefined;
|
|
72
|
+
serviceConfiguredEndpoint?: undefined;
|
|
73
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
74
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3TablesHttpAuthSchemeProvider;
|
|
75
|
+
credentials?:
|
|
76
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
77
|
+
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
78
|
+
| undefined;
|
|
79
|
+
signer?:
|
|
80
|
+
| import("@smithy/types").RequestSigner
|
|
81
|
+
| ((
|
|
82
|
+
authScheme?: import("@smithy/types").AuthScheme | undefined
|
|
83
|
+
) => Promise<import("@smithy/types").RequestSigner>)
|
|
84
|
+
| undefined;
|
|
85
|
+
signingEscapePath?: boolean | undefined;
|
|
86
|
+
systemClockOffset?: number | undefined;
|
|
87
|
+
signingRegion?: string | undefined;
|
|
88
|
+
signerConstructor?:
|
|
89
|
+
| (new (
|
|
90
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
91
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
92
|
+
) => import("@smithy/types").RequestSigner)
|
|
93
|
+
| undefined;
|
|
94
|
+
};
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import { S3TablesClientConfig } from "./S3TablesClient";
|
|
2
|
+
export declare const getRuntimeConfig: (config: S3TablesClientConfig) => {
|
|
3
|
+
runtime: string;
|
|
4
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
5
|
+
requestHandler:
|
|
6
|
+
| import("@smithy/types").NodeHttpHandlerOptions
|
|
7
|
+
| import("@smithy/types").FetchHttpHandlerOptions
|
|
8
|
+
| Record<string, unknown>
|
|
9
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
10
|
+
| import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
11
|
+
apiVersion: string;
|
|
12
|
+
cacheMiddleware?: boolean | undefined;
|
|
13
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
14
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
15
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
16
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
17
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
18
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
19
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
20
|
+
disableHostPrefix: boolean;
|
|
21
|
+
serviceId: string;
|
|
22
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
|
+
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
24
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
25
|
+
defaultUserAgentProvider: (
|
|
26
|
+
config?:
|
|
27
|
+
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
28
|
+
| undefined
|
|
29
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
30
|
+
credentialDefaultProvider: (
|
|
31
|
+
input: any
|
|
32
|
+
) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
33
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
34
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
35
|
+
logger: import("@smithy/types").Logger;
|
|
36
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
37
|
+
defaultsMode:
|
|
38
|
+
| import("@smithy/smithy-client").DefaultsMode
|
|
39
|
+
| import("@smithy/types").Provider<
|
|
40
|
+
import("@smithy/smithy-client").DefaultsMode
|
|
41
|
+
>;
|
|
42
|
+
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
43
|
+
userAgentAppId?:
|
|
44
|
+
| string
|
|
45
|
+
| import("@smithy/types").Provider<string | undefined>
|
|
46
|
+
| undefined;
|
|
47
|
+
retryStrategy?:
|
|
48
|
+
| import("@smithy/types").RetryStrategy
|
|
49
|
+
| import("@smithy/types").RetryStrategyV2
|
|
50
|
+
| undefined;
|
|
51
|
+
endpoint?:
|
|
52
|
+
| string
|
|
53
|
+
| import("@smithy/types").Endpoint
|
|
54
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
55
|
+
| import("@smithy/types").EndpointV2
|
|
56
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
57
|
+
| undefined;
|
|
58
|
+
endpointProvider: (
|
|
59
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
60
|
+
context?: {
|
|
61
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
62
|
+
}
|
|
63
|
+
) => import("@smithy/types").EndpointV2;
|
|
64
|
+
tls?: boolean | undefined;
|
|
65
|
+
serviceConfiguredEndpoint?: undefined;
|
|
66
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
67
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3TablesHttpAuthSchemeProvider;
|
|
68
|
+
credentials?:
|
|
69
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
70
|
+
| import("@smithy/types").AwsCredentialIdentityProvider
|
|
71
|
+
| undefined;
|
|
72
|
+
signer?:
|
|
73
|
+
| import("@smithy/types").RequestSigner
|
|
74
|
+
| ((
|
|
75
|
+
authScheme?: import("@smithy/types").AuthScheme | undefined
|
|
76
|
+
) => Promise<import("@smithy/types").RequestSigner>)
|
|
77
|
+
| undefined;
|
|
78
|
+
signingEscapePath?: boolean | undefined;
|
|
79
|
+
systemClockOffset?: number | undefined;
|
|
80
|
+
signingRegion?: string | undefined;
|
|
81
|
+
signerConstructor?:
|
|
82
|
+
| (new (
|
|
83
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
84
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
85
|
+
) => import("@smithy/types").RequestSigner)
|
|
86
|
+
| undefined;
|
|
87
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { S3TablesClientConfig } from "./S3TablesClient";
|
|
2
|
+
export declare const getRuntimeConfig: (config: S3TablesClientConfig) => {
|
|
3
|
+
apiVersion: string;
|
|
4
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
5
|
+
base64Encoder: (_input: string | Uint8Array) => string;
|
|
6
|
+
disableHostPrefix: boolean;
|
|
7
|
+
endpointProvider: (
|
|
8
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
9
|
+
context?: {
|
|
10
|
+
logger?: import("@smithy/types").Logger | undefined;
|
|
11
|
+
}
|
|
12
|
+
) => import("@smithy/types").EndpointV2;
|
|
13
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
14
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3TablesHttpAuthSchemeProvider;
|
|
15
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
|
+
logger: import("@smithy/types").Logger;
|
|
17
|
+
serviceId: string;
|
|
18
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
19
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
20
|
+
utf8Encoder: (input: string | Uint8Array) => string;
|
|
21
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { S3TablesExtensionConfiguration } from "./extensionConfiguration";
|
|
2
|
+
export interface RuntimeExtension {
|
|
3
|
+
configure(extensionConfiguration: S3TablesExtensionConfiguration): void;
|
|
4
|
+
}
|
|
5
|
+
export interface RuntimeExtensionsConfig {
|
|
6
|
+
extensions: RuntimeExtension[];
|
|
7
|
+
}
|
|
8
|
+
export declare const resolveRuntimeExtensions: (
|
|
9
|
+
runtimeConfig: any,
|
|
10
|
+
extensions: RuntimeExtension[]
|
|
11
|
+
) => any;
|