@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,1280 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { S3TablesServiceException as __BaseException } from "./S3TablesServiceException";
3
+ /**
4
+ * <p>The action cannot be performed because you do not have the required permission.</p>
5
+ * @public
6
+ */
7
+ export declare class AccessDeniedException extends __BaseException {
8
+ readonly name: "AccessDeniedException";
9
+ readonly $fault: "client";
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
14
+ }
15
+ /**
16
+ * <p>The request is invalid or malformed.</p>
17
+ * @public
18
+ */
19
+ export declare class BadRequestException extends __BaseException {
20
+ readonly name: "BadRequestException";
21
+ readonly $fault: "client";
22
+ /**
23
+ * @internal
24
+ */
25
+ constructor(opts: __ExceptionOptionType<BadRequestException, __BaseException>);
26
+ }
27
+ /**
28
+ * <p>The request failed because there is a conflict with a previous write. You can retry the
29
+ * request.</p>
30
+ * @public
31
+ */
32
+ export declare class ConflictException extends __BaseException {
33
+ readonly name: "ConflictException";
34
+ readonly $fault: "client";
35
+ /**
36
+ * @internal
37
+ */
38
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
39
+ }
40
+ /**
41
+ * @public
42
+ */
43
+ export interface CreateNamespaceRequest {
44
+ /**
45
+ * <p>The Amazon Resource Name (ARN) of the table bucket to create the namespace in.</p>
46
+ * @public
47
+ */
48
+ tableBucketARN: string | undefined;
49
+ /**
50
+ * <p>A name for the namespace.</p>
51
+ * @public
52
+ */
53
+ namespace: string[] | undefined;
54
+ }
55
+ /**
56
+ * @public
57
+ */
58
+ export interface CreateNamespaceResponse {
59
+ /**
60
+ * <p>The Amazon Resource Name (ARN) of the table bucket the namespace was created in.</p>
61
+ * @public
62
+ */
63
+ tableBucketARN: string | undefined;
64
+ /**
65
+ * <p>The name of the namespace.</p>
66
+ * @public
67
+ */
68
+ namespace: string[] | undefined;
69
+ }
70
+ /**
71
+ * <p>The caller isn't authorized to make the request.</p>
72
+ * @public
73
+ */
74
+ export declare class ForbiddenException extends __BaseException {
75
+ readonly name: "ForbiddenException";
76
+ readonly $fault: "client";
77
+ /**
78
+ * @internal
79
+ */
80
+ constructor(opts: __ExceptionOptionType<ForbiddenException, __BaseException>);
81
+ }
82
+ /**
83
+ * <p>The request failed due to an internal server error.</p>
84
+ * @public
85
+ */
86
+ export declare class InternalServerErrorException extends __BaseException {
87
+ readonly name: "InternalServerErrorException";
88
+ readonly $fault: "server";
89
+ /**
90
+ * @internal
91
+ */
92
+ constructor(opts: __ExceptionOptionType<InternalServerErrorException, __BaseException>);
93
+ }
94
+ /**
95
+ * <p>The request was rejected because the specified resource could not be found.</p>
96
+ * @public
97
+ */
98
+ export declare class NotFoundException extends __BaseException {
99
+ readonly name: "NotFoundException";
100
+ readonly $fault: "client";
101
+ /**
102
+ * @internal
103
+ */
104
+ constructor(opts: __ExceptionOptionType<NotFoundException, __BaseException>);
105
+ }
106
+ /**
107
+ * <p>The limit on the number of requests per second was exceeded.</p>
108
+ * @public
109
+ */
110
+ export declare class TooManyRequestsException extends __BaseException {
111
+ readonly name: "TooManyRequestsException";
112
+ readonly $fault: "client";
113
+ /**
114
+ * @internal
115
+ */
116
+ constructor(opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>);
117
+ }
118
+ /**
119
+ * @public
120
+ * @enum
121
+ */
122
+ export declare const OpenTableFormat: {
123
+ readonly ICEBERG: "ICEBERG";
124
+ };
125
+ /**
126
+ * @public
127
+ */
128
+ export type OpenTableFormat = (typeof OpenTableFormat)[keyof typeof OpenTableFormat];
129
+ /**
130
+ * @public
131
+ */
132
+ export interface CreateTableRequest {
133
+ /**
134
+ * <p>The Amazon Resource Name (ARN) of the table bucket to create the table in.</p>
135
+ * @public
136
+ */
137
+ tableBucketARN: string | undefined;
138
+ /**
139
+ * <p>The namespace to associated with the table.</p>
140
+ * @public
141
+ */
142
+ namespace: string | undefined;
143
+ /**
144
+ * <p>The name for the table.</p>
145
+ * @public
146
+ */
147
+ name: string | undefined;
148
+ /**
149
+ * <p>The format for the table.</p>
150
+ * @public
151
+ */
152
+ format: OpenTableFormat | undefined;
153
+ }
154
+ /**
155
+ * @public
156
+ */
157
+ export interface CreateTableResponse {
158
+ /**
159
+ * <p>The Amazon Resource Name (ARN) of the table.</p>
160
+ * @public
161
+ */
162
+ tableARN: string | undefined;
163
+ /**
164
+ * <p>The version token of the table.</p>
165
+ * @public
166
+ */
167
+ versionToken: string | undefined;
168
+ }
169
+ /**
170
+ * @public
171
+ */
172
+ export interface CreateTableBucketRequest {
173
+ /**
174
+ * <p>The name for the table bucket.</p>
175
+ * @public
176
+ */
177
+ name: string | undefined;
178
+ }
179
+ /**
180
+ * @public
181
+ */
182
+ export interface CreateTableBucketResponse {
183
+ /**
184
+ * <p>The Amazon Resource Name (ARN) of the table bucket.</p>
185
+ * @public
186
+ */
187
+ arn: string | undefined;
188
+ }
189
+ /**
190
+ * @public
191
+ */
192
+ export interface DeleteNamespaceRequest {
193
+ /**
194
+ * <p>The Amazon Resource Name (ARN) of the table bucket associated with the namespace.</p>
195
+ * @public
196
+ */
197
+ tableBucketARN: string | undefined;
198
+ /**
199
+ * <p>The name of the namespace.</p>
200
+ * @public
201
+ */
202
+ namespace: string | undefined;
203
+ }
204
+ /**
205
+ * @public
206
+ */
207
+ export interface DeleteTableRequest {
208
+ /**
209
+ * <p>The Amazon Resource Name (ARN) of the table bucket that contains the table.</p>
210
+ * @public
211
+ */
212
+ tableBucketARN: string | undefined;
213
+ /**
214
+ * <p>The namespace associated with the table.</p>
215
+ * @public
216
+ */
217
+ namespace: string | undefined;
218
+ /**
219
+ * <p>The name of the table.</p>
220
+ * @public
221
+ */
222
+ name: string | undefined;
223
+ /**
224
+ * <p>The version token of the table.</p>
225
+ * @public
226
+ */
227
+ versionToken?: string | undefined;
228
+ }
229
+ /**
230
+ * @public
231
+ */
232
+ export interface DeleteTableBucketRequest {
233
+ /**
234
+ * <p>The Amazon Resource Name (ARN) of the table bucket.</p>
235
+ * @public
236
+ */
237
+ tableBucketARN: string | undefined;
238
+ }
239
+ /**
240
+ * @public
241
+ */
242
+ export interface DeleteTableBucketPolicyRequest {
243
+ /**
244
+ * <p>The Amazon Resource Number (ARN) of the table bucket.</p>
245
+ * @public
246
+ */
247
+ tableBucketARN: string | undefined;
248
+ }
249
+ /**
250
+ * @public
251
+ */
252
+ export interface DeleteTablePolicyRequest {
253
+ /**
254
+ * <p>The Amazon Resource Number (ARN) of the table bucket that contains the table.</p>
255
+ * @public
256
+ */
257
+ tableBucketARN: string | undefined;
258
+ /**
259
+ * <p>The namespace associated with the table. </p>
260
+ * @public
261
+ */
262
+ namespace: string | undefined;
263
+ /**
264
+ * <p>The table name.</p>
265
+ * @public
266
+ */
267
+ name: string | undefined;
268
+ }
269
+ /**
270
+ * @public
271
+ */
272
+ export interface GetNamespaceRequest {
273
+ /**
274
+ * <p>The Amazon Resource Name (ARN) of the table bucket.</p>
275
+ * @public
276
+ */
277
+ tableBucketARN: string | undefined;
278
+ /**
279
+ * <p>The name of the namespace.</p>
280
+ * @public
281
+ */
282
+ namespace: string | undefined;
283
+ }
284
+ /**
285
+ * @public
286
+ */
287
+ export interface GetNamespaceResponse {
288
+ /**
289
+ * <p>The name of the namespace.</p>
290
+ * @public
291
+ */
292
+ namespace: string[] | undefined;
293
+ /**
294
+ * <p>The date and time the namespace was created at.</p>
295
+ * @public
296
+ */
297
+ createdAt: Date | undefined;
298
+ /**
299
+ * <p>The ID of the account that created the namespace.</p>
300
+ * @public
301
+ */
302
+ createdBy: string | undefined;
303
+ /**
304
+ * <p>The ID of the account that owns the namespcace.</p>
305
+ * @public
306
+ */
307
+ ownerAccountId: string | undefined;
308
+ }
309
+ /**
310
+ * @public
311
+ */
312
+ export interface GetTableRequest {
313
+ /**
314
+ * <p>The Amazon Resource Name (ARN) of the table bucket associated with the table.</p>
315
+ * @public
316
+ */
317
+ tableBucketARN: string | undefined;
318
+ /**
319
+ * <p>The name of the namespace the table is associated with.</p>
320
+ * @public
321
+ */
322
+ namespace: string | undefined;
323
+ /**
324
+ * <p>The name of the table.</p>
325
+ * @public
326
+ */
327
+ name: string | undefined;
328
+ }
329
+ /**
330
+ * @public
331
+ * @enum
332
+ */
333
+ export declare const TableType: {
334
+ readonly AWS: "aws";
335
+ readonly CUSTOMER: "customer";
336
+ };
337
+ /**
338
+ * @public
339
+ */
340
+ export type TableType = (typeof TableType)[keyof typeof TableType];
341
+ /**
342
+ * @public
343
+ */
344
+ export interface GetTableResponse {
345
+ /**
346
+ * <p>The name of the table.</p>
347
+ * @public
348
+ */
349
+ name: string | undefined;
350
+ /**
351
+ * <p>The type of the table.</p>
352
+ * @public
353
+ */
354
+ type: TableType | undefined;
355
+ /**
356
+ * <p>The Amazon Resource Name (ARN) of the table.</p>
357
+ * @public
358
+ */
359
+ tableARN: string | undefined;
360
+ /**
361
+ * <p>The namespace associated with the table.</p>
362
+ * @public
363
+ */
364
+ namespace: string[] | undefined;
365
+ /**
366
+ * <p>The version token of the table.</p>
367
+ * @public
368
+ */
369
+ versionToken: string | undefined;
370
+ /**
371
+ * <p>The metadata location of the table.</p>
372
+ * @public
373
+ */
374
+ metadataLocation?: string | undefined;
375
+ /**
376
+ * <p>The warehouse location of the table.</p>
377
+ * @public
378
+ */
379
+ warehouseLocation: string | undefined;
380
+ /**
381
+ * <p>The date and time the table bucket was created at.</p>
382
+ * @public
383
+ */
384
+ createdAt: Date | undefined;
385
+ /**
386
+ * <p>The ID of the account that created the table.</p>
387
+ * @public
388
+ */
389
+ createdBy: string | undefined;
390
+ /**
391
+ * <p>The service that manages the table.</p>
392
+ * @public
393
+ */
394
+ managedByService?: string | undefined;
395
+ /**
396
+ * <p>The date and time the table was last modified on.</p>
397
+ * @public
398
+ */
399
+ modifiedAt: Date | undefined;
400
+ /**
401
+ * <p>The ID of the account that last modified the table.</p>
402
+ * @public
403
+ */
404
+ modifiedBy: string | undefined;
405
+ /**
406
+ * <p>The ID of the account that owns the table.</p>
407
+ * @public
408
+ */
409
+ ownerAccountId: string | undefined;
410
+ /**
411
+ * <p>The format of the table.</p>
412
+ * @public
413
+ */
414
+ format: OpenTableFormat | undefined;
415
+ }
416
+ /**
417
+ * @public
418
+ */
419
+ export interface GetTableBucketRequest {
420
+ /**
421
+ * <p>The Amazon Resource Name (ARN) of the table bucket.</p>
422
+ * @public
423
+ */
424
+ tableBucketARN: string | undefined;
425
+ }
426
+ /**
427
+ * @public
428
+ */
429
+ export interface GetTableBucketResponse {
430
+ /**
431
+ * <p>The Amazon Resource Name (ARN) of the table bucket.</p>
432
+ * @public
433
+ */
434
+ arn: string | undefined;
435
+ /**
436
+ * <p>The name of the table bucket</p>
437
+ * @public
438
+ */
439
+ name: string | undefined;
440
+ /**
441
+ * <p>The ID of the account that owns the table bucket.</p>
442
+ * @public
443
+ */
444
+ ownerAccountId: string | undefined;
445
+ /**
446
+ * <p>The date and time the table bucket was created.</p>
447
+ * @public
448
+ */
449
+ createdAt: Date | undefined;
450
+ }
451
+ /**
452
+ * @public
453
+ */
454
+ export interface GetTableBucketMaintenanceConfigurationRequest {
455
+ /**
456
+ * <p>The Amazon Resource Name (ARN) of the table bucket associated with the maintenance
457
+ * configuration.</p>
458
+ * @public
459
+ */
460
+ tableBucketARN: string | undefined;
461
+ }
462
+ /**
463
+ * @public
464
+ * @enum
465
+ */
466
+ export declare const TableBucketMaintenanceType: {
467
+ readonly ICEBERG_UNREFERENCED_FILE_REMOVAL: "icebergUnreferencedFileRemoval";
468
+ };
469
+ /**
470
+ * @public
471
+ */
472
+ export type TableBucketMaintenanceType = (typeof TableBucketMaintenanceType)[keyof typeof TableBucketMaintenanceType];
473
+ /**
474
+ * <p>Contains details about the unreferenced file removal settings for an Iceberg table bucket.
475
+ * </p>
476
+ * @public
477
+ */
478
+ export interface IcebergUnreferencedFileRemovalSettings {
479
+ /**
480
+ * <p>The number of days an object has to be unreferenced before it is marked as non-current.
481
+ *
482
+ * </p>
483
+ * @public
484
+ */
485
+ unreferencedDays?: number | undefined;
486
+ /**
487
+ * <p>The number of days an object has to be non-current before it is deleted.
488
+ *
489
+ * </p>
490
+ * @public
491
+ */
492
+ nonCurrentDays?: number | undefined;
493
+ }
494
+ /**
495
+ * <p>Contains details about the maintenance settings for the table bucket.</p>
496
+ * @public
497
+ */
498
+ export type TableBucketMaintenanceSettings = TableBucketMaintenanceSettings.IcebergUnreferencedFileRemovalMember | TableBucketMaintenanceSettings.$UnknownMember;
499
+ /**
500
+ * @public
501
+ */
502
+ export declare namespace TableBucketMaintenanceSettings {
503
+ /**
504
+ * <p>The unreferenced file removal settings for the table bucket.</p>
505
+ * @public
506
+ */
507
+ interface IcebergUnreferencedFileRemovalMember {
508
+ icebergUnreferencedFileRemoval: IcebergUnreferencedFileRemovalSettings;
509
+ $unknown?: never;
510
+ }
511
+ /**
512
+ * @public
513
+ */
514
+ interface $UnknownMember {
515
+ icebergUnreferencedFileRemoval?: never;
516
+ $unknown: [string, any];
517
+ }
518
+ interface Visitor<T> {
519
+ icebergUnreferencedFileRemoval: (value: IcebergUnreferencedFileRemovalSettings) => T;
520
+ _: (name: string, value: any) => T;
521
+ }
522
+ const visit: <T>(value: TableBucketMaintenanceSettings, visitor: Visitor<T>) => T;
523
+ }
524
+ /**
525
+ * @public
526
+ * @enum
527
+ */
528
+ export declare const MaintenanceStatus: {
529
+ readonly DISABLED: "disabled";
530
+ readonly ENABLED: "enabled";
531
+ };
532
+ /**
533
+ * @public
534
+ */
535
+ export type MaintenanceStatus = (typeof MaintenanceStatus)[keyof typeof MaintenanceStatus];
536
+ /**
537
+ * <p>Details about the values that define the maintenance configuration for a table bucket.</p>
538
+ * @public
539
+ */
540
+ export interface TableBucketMaintenanceConfigurationValue {
541
+ /**
542
+ * <p>The status of the maintenance configuration.</p>
543
+ * @public
544
+ */
545
+ status?: MaintenanceStatus | undefined;
546
+ /**
547
+ * <p>Contains details about the settings of the maintenance configuration.</p>
548
+ * @public
549
+ */
550
+ settings?: TableBucketMaintenanceSettings | undefined;
551
+ }
552
+ /**
553
+ * @public
554
+ */
555
+ export interface GetTableBucketMaintenanceConfigurationResponse {
556
+ /**
557
+ * <p>The Amazon Resource Name (ARN) of the table bucket associated with the maintenance
558
+ * configuration.</p>
559
+ * @public
560
+ */
561
+ tableBucketARN: string | undefined;
562
+ /**
563
+ * <p>Details about the maintenance configuration for the table bucket.</p>
564
+ * @public
565
+ */
566
+ configuration: Partial<Record<TableBucketMaintenanceType, TableBucketMaintenanceConfigurationValue>> | undefined;
567
+ }
568
+ /**
569
+ * @public
570
+ */
571
+ export interface GetTableBucketPolicyRequest {
572
+ /**
573
+ * <p>The Amazon Resource Number (ARN) of the table bucket.</p>
574
+ * @public
575
+ */
576
+ tableBucketARN: string | undefined;
577
+ }
578
+ /**
579
+ * @public
580
+ */
581
+ export interface GetTableBucketPolicyResponse {
582
+ /**
583
+ * <p>The name of the resource policy.</p>
584
+ * @public
585
+ */
586
+ resourcePolicy: string | undefined;
587
+ }
588
+ /**
589
+ * @public
590
+ */
591
+ export interface GetTableMaintenanceConfigurationRequest {
592
+ /**
593
+ * <p>The Amazon Resource Name (ARN) of the table bucket.</p>
594
+ * @public
595
+ */
596
+ tableBucketARN: string | undefined;
597
+ /**
598
+ * <p>The namespace associated with the table.</p>
599
+ * @public
600
+ */
601
+ namespace: string | undefined;
602
+ /**
603
+ * <p>The name of the table.</p>
604
+ * @public
605
+ */
606
+ name: string | undefined;
607
+ }
608
+ /**
609
+ * @public
610
+ * @enum
611
+ */
612
+ export declare const TableMaintenanceType: {
613
+ readonly ICEBERG_COMPACTION: "icebergCompaction";
614
+ readonly ICEBERG_SNAPSHOT_MANAGEMENT: "icebergSnapshotManagement";
615
+ };
616
+ /**
617
+ * @public
618
+ */
619
+ export type TableMaintenanceType = (typeof TableMaintenanceType)[keyof typeof TableMaintenanceType];
620
+ /**
621
+ * <p>Contains details about the compaction settings for an Iceberg table.
622
+ * </p>
623
+ * @public
624
+ */
625
+ export interface IcebergCompactionSettings {
626
+ /**
627
+ * <p>The target file size for the table in MB.</p>
628
+ * @public
629
+ */
630
+ targetFileSizeMB?: number | undefined;
631
+ }
632
+ /**
633
+ * <p>Contains details about the snapshot management settings for an Iceberg table. The oldest snapshot expires when its age exceeds the <code>maxSnapshotAgeHours</code> and the total number of snapshots exceeds the value for the minimum number of snapshots to keep <code>minSnapshotsToKeep</code>.
634
+ * </p>
635
+ * @public
636
+ */
637
+ export interface IcebergSnapshotManagementSettings {
638
+ /**
639
+ * <p>The minimum number of snapshots to keep.</p>
640
+ * @public
641
+ */
642
+ minSnapshotsToKeep?: number | undefined;
643
+ /**
644
+ * <p>The maximum age of a snapshot before it can be expired.</p>
645
+ * @public
646
+ */
647
+ maxSnapshotAgeHours?: number | undefined;
648
+ }
649
+ /**
650
+ * <p>Contains details about maintenance settings for the table.</p>
651
+ * @public
652
+ */
653
+ export type TableMaintenanceSettings = TableMaintenanceSettings.IcebergCompactionMember | TableMaintenanceSettings.IcebergSnapshotManagementMember | TableMaintenanceSettings.$UnknownMember;
654
+ /**
655
+ * @public
656
+ */
657
+ export declare namespace TableMaintenanceSettings {
658
+ /**
659
+ * <p>Contains details about the Iceberg compaction settings for the table.</p>
660
+ * @public
661
+ */
662
+ interface IcebergCompactionMember {
663
+ icebergCompaction: IcebergCompactionSettings;
664
+ icebergSnapshotManagement?: never;
665
+ $unknown?: never;
666
+ }
667
+ /**
668
+ * <p>Contains details about the Iceberg snapshot management settings for the table.</p>
669
+ * @public
670
+ */
671
+ interface IcebergSnapshotManagementMember {
672
+ icebergCompaction?: never;
673
+ icebergSnapshotManagement: IcebergSnapshotManagementSettings;
674
+ $unknown?: never;
675
+ }
676
+ /**
677
+ * @public
678
+ */
679
+ interface $UnknownMember {
680
+ icebergCompaction?: never;
681
+ icebergSnapshotManagement?: never;
682
+ $unknown: [string, any];
683
+ }
684
+ interface Visitor<T> {
685
+ icebergCompaction: (value: IcebergCompactionSettings) => T;
686
+ icebergSnapshotManagement: (value: IcebergSnapshotManagementSettings) => T;
687
+ _: (name: string, value: any) => T;
688
+ }
689
+ const visit: <T>(value: TableMaintenanceSettings, visitor: Visitor<T>) => T;
690
+ }
691
+ /**
692
+ * <p>Contains the values that define a maintenance configuration for a table.</p>
693
+ * @public
694
+ */
695
+ export interface TableMaintenanceConfigurationValue {
696
+ /**
697
+ * <p>The status of the maintenance configuration.</p>
698
+ * @public
699
+ */
700
+ status?: MaintenanceStatus | undefined;
701
+ /**
702
+ * <p>Contains details about the settings for the maintenance configuration.</p>
703
+ * @public
704
+ */
705
+ settings?: TableMaintenanceSettings | undefined;
706
+ }
707
+ /**
708
+ * @public
709
+ */
710
+ export interface GetTableMaintenanceConfigurationResponse {
711
+ /**
712
+ * <p>The Amazon Resource Name (ARN) of the table.</p>
713
+ * @public
714
+ */
715
+ tableARN: string | undefined;
716
+ /**
717
+ * <p>Details about the maintenance configuration for the table bucket.</p>
718
+ * @public
719
+ */
720
+ configuration: Partial<Record<TableMaintenanceType, TableMaintenanceConfigurationValue>> | undefined;
721
+ }
722
+ /**
723
+ * @public
724
+ */
725
+ export interface GetTableMaintenanceJobStatusRequest {
726
+ /**
727
+ * <p>The Amazon Resource Name (ARN) of the table bucket.</p>
728
+ * @public
729
+ */
730
+ tableBucketARN: string | undefined;
731
+ /**
732
+ * <p>The name of the namespace the table is associated with.
733
+ *
734
+ * </p>
735
+ * @public
736
+ */
737
+ namespace: string | undefined;
738
+ /**
739
+ * <p>The name of the maintenance job.</p>
740
+ * @public
741
+ */
742
+ name: string | undefined;
743
+ }
744
+ /**
745
+ * @public
746
+ * @enum
747
+ */
748
+ export declare const TableMaintenanceJobType: {
749
+ readonly ICEBERG_COMPACTION: "icebergCompaction";
750
+ readonly ICEBERG_SNAPSHOT_MANAGEMENT: "icebergSnapshotManagement";
751
+ readonly ICEBERG_UNREFERENCED_FILE_REMOVAL: "icebergUnreferencedFileRemoval";
752
+ };
753
+ /**
754
+ * @public
755
+ */
756
+ export type TableMaintenanceJobType = (typeof TableMaintenanceJobType)[keyof typeof TableMaintenanceJobType];
757
+ /**
758
+ * @public
759
+ * @enum
760
+ */
761
+ export declare const JobStatus: {
762
+ readonly DISABLED: "Disabled";
763
+ readonly FAILED: "Failed";
764
+ readonly NOT_YET_RUN: "Not_Yet_Run";
765
+ readonly SUCCESSFUL: "Successful";
766
+ };
767
+ /**
768
+ * @public
769
+ */
770
+ export type JobStatus = (typeof JobStatus)[keyof typeof JobStatus];
771
+ /**
772
+ * <p>Details about the status of a maintenance job.</p>
773
+ * @public
774
+ */
775
+ export interface TableMaintenanceJobStatusValue {
776
+ /**
777
+ * <p>The status of the job.</p>
778
+ * @public
779
+ */
780
+ status: JobStatus | undefined;
781
+ /**
782
+ * <p>The date and time that the maintenance job was last run.</p>
783
+ * @public
784
+ */
785
+ lastRunTimestamp?: Date | undefined;
786
+ /**
787
+ * <p>The failure message of a failed job.</p>
788
+ * @public
789
+ */
790
+ failureMessage?: string | undefined;
791
+ }
792
+ /**
793
+ * @public
794
+ */
795
+ export interface GetTableMaintenanceJobStatusResponse {
796
+ /**
797
+ * <p>The Amazon Resource Name (ARN) of the table.</p>
798
+ * @public
799
+ */
800
+ tableARN: string | undefined;
801
+ /**
802
+ * <p>The status of the maintenance job.</p>
803
+ * @public
804
+ */
805
+ status: Partial<Record<TableMaintenanceJobType, TableMaintenanceJobStatusValue>> | undefined;
806
+ }
807
+ /**
808
+ * @public
809
+ */
810
+ export interface GetTableMetadataLocationRequest {
811
+ /**
812
+ * <p>The Amazon Resource Name (ARN) of the table bucket.</p>
813
+ * @public
814
+ */
815
+ tableBucketARN: string | undefined;
816
+ /**
817
+ * <p>The namespace of the table.</p>
818
+ * @public
819
+ */
820
+ namespace: string | undefined;
821
+ /**
822
+ * <p>The name of the table.</p>
823
+ * @public
824
+ */
825
+ name: string | undefined;
826
+ }
827
+ /**
828
+ * @public
829
+ */
830
+ export interface GetTableMetadataLocationResponse {
831
+ /**
832
+ * <p>The version token.</p>
833
+ * @public
834
+ */
835
+ versionToken: string | undefined;
836
+ /**
837
+ * <p>The metadata location.</p>
838
+ * @public
839
+ */
840
+ metadataLocation?: string | undefined;
841
+ /**
842
+ * <p>The warehouse location.</p>
843
+ * @public
844
+ */
845
+ warehouseLocation: string | undefined;
846
+ }
847
+ /**
848
+ * @public
849
+ */
850
+ export interface GetTablePolicyRequest {
851
+ /**
852
+ * <p>The Amazon Resource Number (ARN) of the table bucket that contains the table.</p>
853
+ * @public
854
+ */
855
+ tableBucketARN: string | undefined;
856
+ /**
857
+ * <p>The namespace associated with the table.</p>
858
+ * @public
859
+ */
860
+ namespace: string | undefined;
861
+ /**
862
+ * <p>The name of the table.</p>
863
+ * @public
864
+ */
865
+ name: string | undefined;
866
+ }
867
+ /**
868
+ * @public
869
+ */
870
+ export interface GetTablePolicyResponse {
871
+ /**
872
+ * <p>The name of the resource policy.</p>
873
+ * @public
874
+ */
875
+ resourcePolicy: string | undefined;
876
+ }
877
+ /**
878
+ * @public
879
+ */
880
+ export interface ListNamespacesRequest {
881
+ /**
882
+ * <p>The Amazon Resource Name (ARN) of the table bucket.</p>
883
+ * @public
884
+ */
885
+ tableBucketARN: string | undefined;
886
+ /**
887
+ * <p>The prefix of the namespaces.</p>
888
+ * @public
889
+ */
890
+ prefix?: string | undefined;
891
+ /**
892
+ * <p>
893
+ * <code>ContinuationToken</code> indicates to Amazon S3 that the list is being continued on
894
+ * this bucket with a token. <code>ContinuationToken</code> is obfuscated and is not a real key.
895
+ * You can use this <code>ContinuationToken</code> for pagination of the list results.</p>
896
+ * @public
897
+ */
898
+ continuationToken?: string | undefined;
899
+ /**
900
+ * <p>The maximum number of namespaces to return in the list.</p>
901
+ * @public
902
+ */
903
+ maxNamespaces?: number | undefined;
904
+ }
905
+ /**
906
+ * <p>Contains details about a namespace.</p>
907
+ * @public
908
+ */
909
+ export interface NamespaceSummary {
910
+ /**
911
+ * <p>The name of the namespace.</p>
912
+ * @public
913
+ */
914
+ namespace: string[] | undefined;
915
+ /**
916
+ * <p>The date and time the namespace was created at.</p>
917
+ * @public
918
+ */
919
+ createdAt: Date | undefined;
920
+ /**
921
+ * <p>The ID of the account that created the namespace.</p>
922
+ * @public
923
+ */
924
+ createdBy: string | undefined;
925
+ /**
926
+ * <p>The ID of the account that owns the namespace.</p>
927
+ * @public
928
+ */
929
+ ownerAccountId: string | undefined;
930
+ }
931
+ /**
932
+ * @public
933
+ */
934
+ export interface ListNamespacesResponse {
935
+ /**
936
+ * <p>A list of namespaces.</p>
937
+ * @public
938
+ */
939
+ namespaces: NamespaceSummary[] | undefined;
940
+ /**
941
+ * <p>The <code>ContinuationToken</code> for pagination of the list results.</p>
942
+ * @public
943
+ */
944
+ continuationToken?: string | undefined;
945
+ }
946
+ /**
947
+ * @public
948
+ */
949
+ export interface ListTableBucketsRequest {
950
+ /**
951
+ * <p>The prefix of the table buckets.</p>
952
+ * @public
953
+ */
954
+ prefix?: string | undefined;
955
+ /**
956
+ * <p>
957
+ * <code>ContinuationToken</code> indicates to Amazon S3 that the list is being continued on
958
+ * this bucket with a token. <code>ContinuationToken</code> is obfuscated and is not a real key.
959
+ * You can use this <code>ContinuationToken</code> for pagination of the list results.</p>
960
+ * @public
961
+ */
962
+ continuationToken?: string | undefined;
963
+ /**
964
+ * <p>The maximum number of table buckets to return in the list.</p>
965
+ * @public
966
+ */
967
+ maxBuckets?: number | undefined;
968
+ }
969
+ /**
970
+ * <p>Contains details about a table bucket.</p>
971
+ * @public
972
+ */
973
+ export interface TableBucketSummary {
974
+ /**
975
+ * <p>The Amazon Resource Number (ARN) of the table bucket.</p>
976
+ * @public
977
+ */
978
+ arn: string | undefined;
979
+ /**
980
+ * <p>The name of the table bucket.</p>
981
+ * @public
982
+ */
983
+ name: string | undefined;
984
+ /**
985
+ * <p>The ID of the account that owns the table bucket.</p>
986
+ * @public
987
+ */
988
+ ownerAccountId: string | undefined;
989
+ /**
990
+ * <p>The date and time the table bucket was created at.</p>
991
+ * @public
992
+ */
993
+ createdAt: Date | undefined;
994
+ }
995
+ /**
996
+ * @public
997
+ */
998
+ export interface ListTableBucketsResponse {
999
+ /**
1000
+ * <p>A list of table buckets.</p>
1001
+ * @public
1002
+ */
1003
+ tableBuckets: TableBucketSummary[] | undefined;
1004
+ /**
1005
+ * <p>You can use this <code>ContinuationToken</code> for pagination of the list results.</p>
1006
+ * @public
1007
+ */
1008
+ continuationToken?: string | undefined;
1009
+ }
1010
+ /**
1011
+ * @public
1012
+ */
1013
+ export interface ListTablesRequest {
1014
+ /**
1015
+ * <p>The Amazon resource Number (ARN) of the table bucket.</p>
1016
+ * @public
1017
+ */
1018
+ tableBucketARN: string | undefined;
1019
+ /**
1020
+ * <p>The namespace of the tables.</p>
1021
+ * @public
1022
+ */
1023
+ namespace?: string | undefined;
1024
+ /**
1025
+ * <p>The prefix of the tables.</p>
1026
+ * @public
1027
+ */
1028
+ prefix?: string | undefined;
1029
+ /**
1030
+ * <p>
1031
+ * <code>ContinuationToken</code> indicates to Amazon S3 that the list is being continued on
1032
+ * this bucket with a token. <code>ContinuationToken</code> is obfuscated and is not a real key.
1033
+ * You can use this <code>ContinuationToken</code> for pagination of the list results.</p>
1034
+ * @public
1035
+ */
1036
+ continuationToken?: string | undefined;
1037
+ /**
1038
+ * <p>The maximum number of tables to return.</p>
1039
+ * @public
1040
+ */
1041
+ maxTables?: number | undefined;
1042
+ }
1043
+ /**
1044
+ * <p>Contains details about a table.</p>
1045
+ * @public
1046
+ */
1047
+ export interface TableSummary {
1048
+ /**
1049
+ * <p>The name of the namespace.</p>
1050
+ * @public
1051
+ */
1052
+ namespace: string[] | undefined;
1053
+ /**
1054
+ * <p>The name of the table.</p>
1055
+ * @public
1056
+ */
1057
+ name: string | undefined;
1058
+ /**
1059
+ * <p>The type of the table.</p>
1060
+ * @public
1061
+ */
1062
+ type: TableType | undefined;
1063
+ /**
1064
+ * <p>The Amazon Resource Number (ARN) of the table.</p>
1065
+ * @public
1066
+ */
1067
+ tableARN: string | undefined;
1068
+ /**
1069
+ * <p>The date and time the table was created at.</p>
1070
+ * @public
1071
+ */
1072
+ createdAt: Date | undefined;
1073
+ /**
1074
+ * <p>The date and time the table was last modified at.</p>
1075
+ * @public
1076
+ */
1077
+ modifiedAt: Date | undefined;
1078
+ }
1079
+ /**
1080
+ * @public
1081
+ */
1082
+ export interface ListTablesResponse {
1083
+ /**
1084
+ * <p>A list of tables.</p>
1085
+ * @public
1086
+ */
1087
+ tables: TableSummary[] | undefined;
1088
+ /**
1089
+ * <p>You can use this <code>ContinuationToken</code> for pagination of the list results.</p>
1090
+ * @public
1091
+ */
1092
+ continuationToken?: string | undefined;
1093
+ }
1094
+ /**
1095
+ * @public
1096
+ */
1097
+ export interface PutTableBucketMaintenanceConfigurationRequest {
1098
+ /**
1099
+ * <p>The Amazon Resource Name (ARN) of the table bucket associated with the maintenance
1100
+ * configuration.</p>
1101
+ * @public
1102
+ */
1103
+ tableBucketARN: string | undefined;
1104
+ /**
1105
+ * <p>The type of the maintenance configuration.</p>
1106
+ * @public
1107
+ */
1108
+ type: TableBucketMaintenanceType | undefined;
1109
+ /**
1110
+ * <p>Defines the values of the maintenance configuration for the table bucket.</p>
1111
+ * @public
1112
+ */
1113
+ value: TableBucketMaintenanceConfigurationValue | undefined;
1114
+ }
1115
+ /**
1116
+ * @public
1117
+ */
1118
+ export interface PutTableBucketPolicyRequest {
1119
+ /**
1120
+ * <p>The Amazon Resource Number (ARN) of the table bucket.</p>
1121
+ * @public
1122
+ */
1123
+ tableBucketARN: string | undefined;
1124
+ /**
1125
+ * <p>The name of the resource policy.</p>
1126
+ * @public
1127
+ */
1128
+ resourcePolicy: string | undefined;
1129
+ }
1130
+ /**
1131
+ * @public
1132
+ */
1133
+ export interface PutTableMaintenanceConfigurationRequest {
1134
+ /**
1135
+ * <p>The Amazon Resource Name (ARN) of the table associated with the maintenance
1136
+ * configuration.</p>
1137
+ * @public
1138
+ */
1139
+ tableBucketARN: string | undefined;
1140
+ /**
1141
+ * <p>The namespace of the table.</p>
1142
+ * @public
1143
+ */
1144
+ namespace: string | undefined;
1145
+ /**
1146
+ * <p>The name of the maintenance configuration.</p>
1147
+ * @public
1148
+ */
1149
+ name: string | undefined;
1150
+ /**
1151
+ * <p>The type of the maintenance configuration.</p>
1152
+ * @public
1153
+ */
1154
+ type: TableMaintenanceType | undefined;
1155
+ /**
1156
+ * <p>Defines the values of the maintenance configuration for the table.</p>
1157
+ * @public
1158
+ */
1159
+ value: TableMaintenanceConfigurationValue | undefined;
1160
+ }
1161
+ /**
1162
+ * @public
1163
+ */
1164
+ export interface PutTablePolicyRequest {
1165
+ /**
1166
+ * <p>The Amazon Resource Number (ARN) of the table bucket that contains the table.</p>
1167
+ * @public
1168
+ */
1169
+ tableBucketARN: string | undefined;
1170
+ /**
1171
+ * <p>The namespace associated with the table.</p>
1172
+ * @public
1173
+ */
1174
+ namespace: string | undefined;
1175
+ /**
1176
+ * <p>The name of the table.</p>
1177
+ * @public
1178
+ */
1179
+ name: string | undefined;
1180
+ /**
1181
+ * <p>The name of the resource policy.</p>
1182
+ * @public
1183
+ */
1184
+ resourcePolicy: string | undefined;
1185
+ }
1186
+ /**
1187
+ * @public
1188
+ */
1189
+ export interface RenameTableRequest {
1190
+ /**
1191
+ * <p>The Amazon Resource Name (ARN) of the table bucket. </p>
1192
+ * @public
1193
+ */
1194
+ tableBucketARN: string | undefined;
1195
+ /**
1196
+ * <p>The namespace associated with the table. </p>
1197
+ * @public
1198
+ */
1199
+ namespace: string | undefined;
1200
+ /**
1201
+ * <p>The current name of the table.</p>
1202
+ * @public
1203
+ */
1204
+ name: string | undefined;
1205
+ /**
1206
+ * <p>The new name for the namespace.</p>
1207
+ * @public
1208
+ */
1209
+ newNamespaceName?: string | undefined;
1210
+ /**
1211
+ * <p>The new name for the table.</p>
1212
+ * @public
1213
+ */
1214
+ newName?: string | undefined;
1215
+ /**
1216
+ * <p>The version token of the table.</p>
1217
+ * @public
1218
+ */
1219
+ versionToken?: string | undefined;
1220
+ }
1221
+ /**
1222
+ * @public
1223
+ */
1224
+ export interface UpdateTableMetadataLocationRequest {
1225
+ /**
1226
+ * <p>The Amazon Resource Name (ARN) of the table bucket. </p>
1227
+ * @public
1228
+ */
1229
+ tableBucketARN: string | undefined;
1230
+ /**
1231
+ * <p>The namespace of the table.</p>
1232
+ * @public
1233
+ */
1234
+ namespace: string | undefined;
1235
+ /**
1236
+ * <p>The name of the table.</p>
1237
+ * @public
1238
+ */
1239
+ name: string | undefined;
1240
+ /**
1241
+ * <p>The version token of the table. </p>
1242
+ * @public
1243
+ */
1244
+ versionToken: string | undefined;
1245
+ /**
1246
+ * <p>The new metadata location for the table. </p>
1247
+ * @public
1248
+ */
1249
+ metadataLocation: string | undefined;
1250
+ }
1251
+ /**
1252
+ * @public
1253
+ */
1254
+ export interface UpdateTableMetadataLocationResponse {
1255
+ /**
1256
+ * <p>The name of the table.</p>
1257
+ * @public
1258
+ */
1259
+ name: string | undefined;
1260
+ /**
1261
+ * <p>The Amazon Resource Number (ARN) of the table.</p>
1262
+ * @public
1263
+ */
1264
+ tableARN: string | undefined;
1265
+ /**
1266
+ * <p>The namespace the table is associated with.</p>
1267
+ * @public
1268
+ */
1269
+ namespace: string[] | undefined;
1270
+ /**
1271
+ * <p>The version token of the table.</p>
1272
+ * @public
1273
+ */
1274
+ versionToken: string | undefined;
1275
+ /**
1276
+ * <p>The metadata location of the table.</p>
1277
+ * @public
1278
+ */
1279
+ metadataLocation: string | undefined;
1280
+ }