@aws-sdk/client-keyspaces 3.169.0 → 3.170.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 (33) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist-types/ts3.4/Keyspaces.d.ts +238 -70
  3. package/dist-types/ts3.4/KeyspacesClient.d.ts +207 -86
  4. package/dist-types/ts3.4/commands/CreateKeyspaceCommand.d.ts +37 -17
  5. package/dist-types/ts3.4/commands/CreateTableCommand.d.ts +34 -17
  6. package/dist-types/ts3.4/commands/DeleteKeyspaceCommand.d.ts +37 -17
  7. package/dist-types/ts3.4/commands/DeleteTableCommand.d.ts +34 -17
  8. package/dist-types/ts3.4/commands/GetKeyspaceCommand.d.ts +34 -17
  9. package/dist-types/ts3.4/commands/GetTableCommand.d.ts +34 -17
  10. package/dist-types/ts3.4/commands/ListKeyspacesCommand.d.ts +37 -17
  11. package/dist-types/ts3.4/commands/ListTablesCommand.d.ts +34 -17
  12. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  13. package/dist-types/ts3.4/commands/RestoreTableCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  15. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +37 -17
  16. package/dist-types/ts3.4/commands/UpdateTableCommand.d.ts +34 -17
  17. package/dist-types/ts3.4/commands/index.d.ts +13 -13
  18. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  19. package/dist-types/ts3.4/index.d.ts +6 -6
  20. package/dist-types/ts3.4/models/KeyspacesServiceException.d.ts +8 -6
  21. package/dist-types/ts3.4/models/index.d.ts +1 -1
  22. package/dist-types/ts3.4/models/models_0.d.ts +496 -457
  23. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  24. package/dist-types/ts3.4/pagination/ListKeyspacesPaginator.d.ts +11 -4
  25. package/dist-types/ts3.4/pagination/ListTablesPaginator.d.ts +11 -4
  26. package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +11 -4
  27. package/dist-types/ts3.4/pagination/index.d.ts +4 -4
  28. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +161 -41
  29. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +66 -38
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +66 -38
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +67 -37
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -11
  33. package/package.json +34 -34
@@ -1,457 +1,496 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { KeyspacesServiceException as __BaseException } from "./KeyspacesServiceException";
3
-
4
- export declare class AccessDeniedException extends __BaseException {
5
- readonly name: "AccessDeniedException";
6
- readonly $fault: "client";
7
-
8
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
9
- }
10
- export declare enum ThroughputMode {
11
- PAY_PER_REQUEST = "PAY_PER_REQUEST",
12
- PROVISIONED = "PROVISIONED"
13
- }
14
-
15
- export interface CapacitySpecification {
16
-
17
- throughputMode: ThroughputMode | string | undefined;
18
-
19
- readCapacityUnits?: number;
20
-
21
- writeCapacityUnits?: number;
22
- }
23
-
24
- export interface CapacitySpecificationSummary {
25
-
26
- throughputMode: ThroughputMode | string | undefined;
27
-
28
- readCapacityUnits?: number;
29
-
30
- writeCapacityUnits?: number;
31
-
32
- lastUpdateToPayPerRequestTimestamp?: Date;
33
- }
34
- export declare enum SortOrder {
35
- ASC = "ASC",
36
- DESC = "DESC"
37
- }
38
-
39
- export interface ClusteringKey {
40
-
41
- name: string | undefined;
42
-
43
- orderBy: SortOrder | string | undefined;
44
- }
45
-
46
- export interface ColumnDefinition {
47
-
48
- name: string | undefined;
49
-
50
- type: string | undefined;
51
- }
52
-
53
- export interface Comment {
54
-
55
- message: string | undefined;
56
- }
57
-
58
- export declare class ConflictException extends __BaseException {
59
- readonly name: "ConflictException";
60
- readonly $fault: "client";
61
-
62
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
63
- }
64
-
65
- export interface Tag {
66
-
67
- key: string | undefined;
68
-
69
- value: string | undefined;
70
- }
71
- export interface CreateKeyspaceRequest {
72
-
73
- keyspaceName: string | undefined;
74
-
75
- tags?: Tag[];
76
- }
77
- export interface CreateKeyspaceResponse {
78
-
79
- resourceArn: string | undefined;
80
- }
81
-
82
- export declare class InternalServerException extends __BaseException {
83
- readonly name: "InternalServerException";
84
- readonly $fault: "server";
85
-
86
- constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
87
- }
88
-
89
- export declare class ServiceQuotaExceededException extends __BaseException {
90
- readonly name: "ServiceQuotaExceededException";
91
- readonly $fault: "client";
92
-
93
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
94
- }
95
-
96
- export declare class ValidationException extends __BaseException {
97
- readonly name: "ValidationException";
98
- readonly $fault: "client";
99
-
100
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
101
- }
102
- export declare enum EncryptionType {
103
- AWS_OWNED_KMS_KEY = "AWS_OWNED_KMS_KEY",
104
- CUSTOMER_MANAGED_KMS_KEY = "CUSTOMER_MANAGED_KMS_KEY"
105
- }
106
-
107
- export interface EncryptionSpecification {
108
-
109
- type: EncryptionType | string | undefined;
110
-
111
- kmsKeyIdentifier?: string;
112
- }
113
- export declare enum PointInTimeRecoveryStatus {
114
- DISABLED = "DISABLED",
115
- ENABLED = "ENABLED"
116
- }
117
-
118
- export interface PointInTimeRecovery {
119
-
120
- status: PointInTimeRecoveryStatus | string | undefined;
121
- }
122
-
123
- export interface PartitionKey {
124
-
125
- name: string | undefined;
126
- }
127
-
128
- export interface StaticColumn {
129
-
130
- name: string | undefined;
131
- }
132
-
133
- export interface SchemaDefinition {
134
-
135
- allColumns: ColumnDefinition[] | undefined;
136
-
137
- partitionKeys: PartitionKey[] | undefined;
138
-
139
- clusteringKeys?: ClusteringKey[];
140
-
141
- staticColumns?: StaticColumn[];
142
- }
143
- export declare enum TimeToLiveStatus {
144
- ENABLED = "ENABLED"
145
- }
146
-
147
- export interface TimeToLive {
148
-
149
- status: TimeToLiveStatus | string | undefined;
150
- }
151
- export interface CreateTableRequest {
152
-
153
- keyspaceName: string | undefined;
154
-
155
- tableName: string | undefined;
156
-
157
- schemaDefinition: SchemaDefinition | undefined;
158
-
159
- comment?: Comment;
160
-
161
- capacitySpecification?: CapacitySpecification;
162
-
163
- encryptionSpecification?: EncryptionSpecification;
164
-
165
- pointInTimeRecovery?: PointInTimeRecovery;
166
-
167
- ttl?: TimeToLive;
168
-
169
- defaultTimeToLive?: number;
170
-
171
- tags?: Tag[];
172
- }
173
- export interface CreateTableResponse {
174
-
175
- resourceArn: string | undefined;
176
- }
177
-
178
- export declare class ResourceNotFoundException extends __BaseException {
179
- readonly name: "ResourceNotFoundException";
180
- readonly $fault: "client";
181
-
182
- resourceArn?: string;
183
-
184
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
185
- }
186
- export interface DeleteKeyspaceRequest {
187
-
188
- keyspaceName: string | undefined;
189
- }
190
- export interface DeleteKeyspaceResponse {
191
- }
192
- export interface DeleteTableRequest {
193
-
194
- keyspaceName: string | undefined;
195
-
196
- tableName: string | undefined;
197
- }
198
- export interface DeleteTableResponse {
199
- }
200
- export interface GetKeyspaceRequest {
201
-
202
- keyspaceName: string | undefined;
203
- }
204
- export interface GetKeyspaceResponse {
205
-
206
- keyspaceName: string | undefined;
207
-
208
- resourceArn: string | undefined;
209
- }
210
- export interface GetTableRequest {
211
-
212
- keyspaceName: string | undefined;
213
-
214
- tableName: string | undefined;
215
- }
216
-
217
- export interface PointInTimeRecoverySummary {
218
-
219
- status: PointInTimeRecoveryStatus | string | undefined;
220
-
221
- earliestRestorableTimestamp?: Date;
222
- }
223
- export declare enum TableStatus {
224
- ACTIVE = "ACTIVE",
225
- CREATING = "CREATING",
226
- DELETED = "DELETED",
227
- DELETING = "DELETING",
228
- INACCESSIBLE_ENCRYPTION_CREDENTIALS = "INACCESSIBLE_ENCRYPTION_CREDENTIALS",
229
- RESTORING = "RESTORING",
230
- UPDATING = "UPDATING"
231
- }
232
- export interface GetTableResponse {
233
-
234
- keyspaceName: string | undefined;
235
-
236
- tableName: string | undefined;
237
-
238
- resourceArn: string | undefined;
239
-
240
- creationTimestamp?: Date;
241
-
242
- status?: TableStatus | string;
243
-
244
- schemaDefinition?: SchemaDefinition;
245
-
246
- capacitySpecification?: CapacitySpecificationSummary;
247
-
248
- encryptionSpecification?: EncryptionSpecification;
249
-
250
- pointInTimeRecovery?: PointInTimeRecoverySummary;
251
-
252
- ttl?: TimeToLive;
253
-
254
- defaultTimeToLive?: number;
255
-
256
- comment?: Comment;
257
- }
258
- export interface ListKeyspacesRequest {
259
-
260
- nextToken?: string;
261
-
262
- maxResults?: number;
263
- }
264
-
265
- export interface KeyspaceSummary {
266
-
267
- keyspaceName: string | undefined;
268
-
269
- resourceArn: string | undefined;
270
- }
271
- export interface ListKeyspacesResponse {
272
-
273
- nextToken?: string;
274
-
275
- keyspaces: KeyspaceSummary[] | undefined;
276
- }
277
- export interface ListTablesRequest {
278
-
279
- nextToken?: string;
280
-
281
- maxResults?: number;
282
-
283
- keyspaceName: string | undefined;
284
- }
285
-
286
- export interface TableSummary {
287
-
288
- keyspaceName: string | undefined;
289
-
290
- tableName: string | undefined;
291
-
292
- resourceArn: string | undefined;
293
- }
294
- export interface ListTablesResponse {
295
-
296
- nextToken?: string;
297
-
298
- tables?: TableSummary[];
299
- }
300
- export interface ListTagsForResourceRequest {
301
-
302
- resourceArn: string | undefined;
303
-
304
- nextToken?: string;
305
-
306
- maxResults?: number;
307
- }
308
- export interface ListTagsForResourceResponse {
309
-
310
- nextToken?: string;
311
-
312
- tags?: Tag[];
313
- }
314
- export interface RestoreTableRequest {
315
-
316
- sourceKeyspaceName: string | undefined;
317
-
318
- sourceTableName: string | undefined;
319
-
320
- targetKeyspaceName: string | undefined;
321
-
322
- targetTableName: string | undefined;
323
-
324
- restoreTimestamp?: Date;
325
-
326
- capacitySpecificationOverride?: CapacitySpecification;
327
-
328
- encryptionSpecificationOverride?: EncryptionSpecification;
329
-
330
- pointInTimeRecoveryOverride?: PointInTimeRecovery;
331
-
332
- tagsOverride?: Tag[];
333
- }
334
- export interface RestoreTableResponse {
335
-
336
- restoredTableARN: string | undefined;
337
- }
338
- export interface TagResourceRequest {
339
-
340
- resourceArn: string | undefined;
341
-
342
- tags: Tag[] | undefined;
343
- }
344
- export interface TagResourceResponse {
345
- }
346
- export interface UntagResourceRequest {
347
-
348
- resourceArn: string | undefined;
349
-
350
- tags: Tag[] | undefined;
351
- }
352
- export interface UntagResourceResponse {
353
- }
354
- export interface UpdateTableRequest {
355
-
356
- keyspaceName: string | undefined;
357
-
358
- tableName: string | undefined;
359
-
360
- addColumns?: ColumnDefinition[];
361
-
362
- capacitySpecification?: CapacitySpecification;
363
-
364
- encryptionSpecification?: EncryptionSpecification;
365
-
366
- pointInTimeRecovery?: PointInTimeRecovery;
367
-
368
- ttl?: TimeToLive;
369
-
370
- defaultTimeToLive?: number;
371
- }
372
- export interface UpdateTableResponse {
373
-
374
- resourceArn: string | undefined;
375
- }
376
-
377
- export declare const CapacitySpecificationFilterSensitiveLog: (obj: CapacitySpecification) => any;
378
-
379
- export declare const CapacitySpecificationSummaryFilterSensitiveLog: (obj: CapacitySpecificationSummary) => any;
380
-
381
- export declare const ClusteringKeyFilterSensitiveLog: (obj: ClusteringKey) => any;
382
-
383
- export declare const ColumnDefinitionFilterSensitiveLog: (obj: ColumnDefinition) => any;
384
-
385
- export declare const CommentFilterSensitiveLog: (obj: Comment) => any;
386
-
387
- export declare const TagFilterSensitiveLog: (obj: Tag) => any;
388
-
389
- export declare const CreateKeyspaceRequestFilterSensitiveLog: (obj: CreateKeyspaceRequest) => any;
390
-
391
- export declare const CreateKeyspaceResponseFilterSensitiveLog: (obj: CreateKeyspaceResponse) => any;
392
-
393
- export declare const EncryptionSpecificationFilterSensitiveLog: (obj: EncryptionSpecification) => any;
394
-
395
- export declare const PointInTimeRecoveryFilterSensitiveLog: (obj: PointInTimeRecovery) => any;
396
-
397
- export declare const PartitionKeyFilterSensitiveLog: (obj: PartitionKey) => any;
398
-
399
- export declare const StaticColumnFilterSensitiveLog: (obj: StaticColumn) => any;
400
-
401
- export declare const SchemaDefinitionFilterSensitiveLog: (obj: SchemaDefinition) => any;
402
-
403
- export declare const TimeToLiveFilterSensitiveLog: (obj: TimeToLive) => any;
404
-
405
- export declare const CreateTableRequestFilterSensitiveLog: (obj: CreateTableRequest) => any;
406
-
407
- export declare const CreateTableResponseFilterSensitiveLog: (obj: CreateTableResponse) => any;
408
-
409
- export declare const DeleteKeyspaceRequestFilterSensitiveLog: (obj: DeleteKeyspaceRequest) => any;
410
-
411
- export declare const DeleteKeyspaceResponseFilterSensitiveLog: (obj: DeleteKeyspaceResponse) => any;
412
-
413
- export declare const DeleteTableRequestFilterSensitiveLog: (obj: DeleteTableRequest) => any;
414
-
415
- export declare const DeleteTableResponseFilterSensitiveLog: (obj: DeleteTableResponse) => any;
416
-
417
- export declare const GetKeyspaceRequestFilterSensitiveLog: (obj: GetKeyspaceRequest) => any;
418
-
419
- export declare const GetKeyspaceResponseFilterSensitiveLog: (obj: GetKeyspaceResponse) => any;
420
-
421
- export declare const GetTableRequestFilterSensitiveLog: (obj: GetTableRequest) => any;
422
-
423
- export declare const PointInTimeRecoverySummaryFilterSensitiveLog: (obj: PointInTimeRecoverySummary) => any;
424
-
425
- export declare const GetTableResponseFilterSensitiveLog: (obj: GetTableResponse) => any;
426
-
427
- export declare const ListKeyspacesRequestFilterSensitiveLog: (obj: ListKeyspacesRequest) => any;
428
-
429
- export declare const KeyspaceSummaryFilterSensitiveLog: (obj: KeyspaceSummary) => any;
430
-
431
- export declare const ListKeyspacesResponseFilterSensitiveLog: (obj: ListKeyspacesResponse) => any;
432
-
433
- export declare const ListTablesRequestFilterSensitiveLog: (obj: ListTablesRequest) => any;
434
-
435
- export declare const TableSummaryFilterSensitiveLog: (obj: TableSummary) => any;
436
-
437
- export declare const ListTablesResponseFilterSensitiveLog: (obj: ListTablesResponse) => any;
438
-
439
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
440
-
441
- export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
442
-
443
- export declare const RestoreTableRequestFilterSensitiveLog: (obj: RestoreTableRequest) => any;
444
-
445
- export declare const RestoreTableResponseFilterSensitiveLog: (obj: RestoreTableResponse) => any;
446
-
447
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
448
-
449
- export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
450
-
451
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
452
-
453
- export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
454
-
455
- export declare const UpdateTableRequestFilterSensitiveLog: (obj: UpdateTableRequest) => any;
456
-
457
- export declare const UpdateTableResponseFilterSensitiveLog: (obj: UpdateTableResponse) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { KeyspacesServiceException as __BaseException } from "./KeyspacesServiceException";
3
+
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
7
+
8
+ constructor(
9
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
10
+ );
11
+ }
12
+ export declare enum ThroughputMode {
13
+ PAY_PER_REQUEST = "PAY_PER_REQUEST",
14
+ PROVISIONED = "PROVISIONED",
15
+ }
16
+
17
+ export interface CapacitySpecification {
18
+ throughputMode: ThroughputMode | string | undefined;
19
+
20
+ readCapacityUnits?: number;
21
+
22
+ writeCapacityUnits?: number;
23
+ }
24
+
25
+ export interface CapacitySpecificationSummary {
26
+ throughputMode: ThroughputMode | string | undefined;
27
+
28
+ readCapacityUnits?: number;
29
+
30
+ writeCapacityUnits?: number;
31
+
32
+ lastUpdateToPayPerRequestTimestamp?: Date;
33
+ }
34
+ export declare enum SortOrder {
35
+ ASC = "ASC",
36
+ DESC = "DESC",
37
+ }
38
+
39
+ export interface ClusteringKey {
40
+ name: string | undefined;
41
+
42
+ orderBy: SortOrder | string | undefined;
43
+ }
44
+
45
+ export interface ColumnDefinition {
46
+ name: string | undefined;
47
+
48
+ type: string | undefined;
49
+ }
50
+
51
+ export interface Comment {
52
+ message: string | undefined;
53
+ }
54
+
55
+ export declare class ConflictException extends __BaseException {
56
+ readonly name: "ConflictException";
57
+ readonly $fault: "client";
58
+
59
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
60
+ }
61
+
62
+ export interface Tag {
63
+ key: string | undefined;
64
+
65
+ value: string | undefined;
66
+ }
67
+ export interface CreateKeyspaceRequest {
68
+ keyspaceName: string | undefined;
69
+
70
+ tags?: Tag[];
71
+ }
72
+ export interface CreateKeyspaceResponse {
73
+ resourceArn: string | undefined;
74
+ }
75
+
76
+ export declare class InternalServerException extends __BaseException {
77
+ readonly name: "InternalServerException";
78
+ readonly $fault: "server";
79
+
80
+ constructor(
81
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
82
+ );
83
+ }
84
+
85
+ export declare class ServiceQuotaExceededException extends __BaseException {
86
+ readonly name: "ServiceQuotaExceededException";
87
+ readonly $fault: "client";
88
+
89
+ constructor(
90
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
91
+ );
92
+ }
93
+
94
+ export declare class ValidationException extends __BaseException {
95
+ readonly name: "ValidationException";
96
+ readonly $fault: "client";
97
+
98
+ constructor(
99
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
100
+ );
101
+ }
102
+ export declare enum EncryptionType {
103
+ AWS_OWNED_KMS_KEY = "AWS_OWNED_KMS_KEY",
104
+ CUSTOMER_MANAGED_KMS_KEY = "CUSTOMER_MANAGED_KMS_KEY",
105
+ }
106
+
107
+ export interface EncryptionSpecification {
108
+ type: EncryptionType | string | undefined;
109
+
110
+ kmsKeyIdentifier?: string;
111
+ }
112
+ export declare enum PointInTimeRecoveryStatus {
113
+ DISABLED = "DISABLED",
114
+ ENABLED = "ENABLED",
115
+ }
116
+
117
+ export interface PointInTimeRecovery {
118
+ status: PointInTimeRecoveryStatus | string | undefined;
119
+ }
120
+
121
+ export interface PartitionKey {
122
+ name: string | undefined;
123
+ }
124
+
125
+ export interface StaticColumn {
126
+ name: string | undefined;
127
+ }
128
+
129
+ export interface SchemaDefinition {
130
+ allColumns: ColumnDefinition[] | undefined;
131
+
132
+ partitionKeys: PartitionKey[] | undefined;
133
+
134
+ clusteringKeys?: ClusteringKey[];
135
+
136
+ staticColumns?: StaticColumn[];
137
+ }
138
+ export declare enum TimeToLiveStatus {
139
+ ENABLED = "ENABLED",
140
+ }
141
+
142
+ export interface TimeToLive {
143
+ status: TimeToLiveStatus | string | undefined;
144
+ }
145
+ export interface CreateTableRequest {
146
+ keyspaceName: string | undefined;
147
+
148
+ tableName: string | undefined;
149
+
150
+ schemaDefinition: SchemaDefinition | undefined;
151
+
152
+ comment?: Comment;
153
+
154
+ capacitySpecification?: CapacitySpecification;
155
+
156
+ encryptionSpecification?: EncryptionSpecification;
157
+
158
+ pointInTimeRecovery?: PointInTimeRecovery;
159
+
160
+ ttl?: TimeToLive;
161
+
162
+ defaultTimeToLive?: number;
163
+
164
+ tags?: Tag[];
165
+ }
166
+ export interface CreateTableResponse {
167
+ resourceArn: string | undefined;
168
+ }
169
+
170
+ export declare class ResourceNotFoundException extends __BaseException {
171
+ readonly name: "ResourceNotFoundException";
172
+ readonly $fault: "client";
173
+
174
+ resourceArn?: string;
175
+
176
+ constructor(
177
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
178
+ );
179
+ }
180
+ export interface DeleteKeyspaceRequest {
181
+ keyspaceName: string | undefined;
182
+ }
183
+ export interface DeleteKeyspaceResponse {}
184
+ export interface DeleteTableRequest {
185
+ keyspaceName: string | undefined;
186
+
187
+ tableName: string | undefined;
188
+ }
189
+ export interface DeleteTableResponse {}
190
+ export interface GetKeyspaceRequest {
191
+ keyspaceName: string | undefined;
192
+ }
193
+ export interface GetKeyspaceResponse {
194
+ keyspaceName: string | undefined;
195
+
196
+ resourceArn: string | undefined;
197
+ }
198
+ export interface GetTableRequest {
199
+ keyspaceName: string | undefined;
200
+
201
+ tableName: string | undefined;
202
+ }
203
+
204
+ export interface PointInTimeRecoverySummary {
205
+ status: PointInTimeRecoveryStatus | string | undefined;
206
+
207
+ earliestRestorableTimestamp?: Date;
208
+ }
209
+ export declare enum TableStatus {
210
+ ACTIVE = "ACTIVE",
211
+ CREATING = "CREATING",
212
+ DELETED = "DELETED",
213
+ DELETING = "DELETING",
214
+ INACCESSIBLE_ENCRYPTION_CREDENTIALS = "INACCESSIBLE_ENCRYPTION_CREDENTIALS",
215
+ RESTORING = "RESTORING",
216
+ UPDATING = "UPDATING",
217
+ }
218
+ export interface GetTableResponse {
219
+ keyspaceName: string | undefined;
220
+
221
+ tableName: string | undefined;
222
+
223
+ resourceArn: string | undefined;
224
+
225
+ creationTimestamp?: Date;
226
+
227
+ status?: TableStatus | string;
228
+
229
+ schemaDefinition?: SchemaDefinition;
230
+
231
+ capacitySpecification?: CapacitySpecificationSummary;
232
+
233
+ encryptionSpecification?: EncryptionSpecification;
234
+
235
+ pointInTimeRecovery?: PointInTimeRecoverySummary;
236
+
237
+ ttl?: TimeToLive;
238
+
239
+ defaultTimeToLive?: number;
240
+
241
+ comment?: Comment;
242
+ }
243
+ export interface ListKeyspacesRequest {
244
+ nextToken?: string;
245
+
246
+ maxResults?: number;
247
+ }
248
+
249
+ export interface KeyspaceSummary {
250
+ keyspaceName: string | undefined;
251
+
252
+ resourceArn: string | undefined;
253
+ }
254
+ export interface ListKeyspacesResponse {
255
+ nextToken?: string;
256
+
257
+ keyspaces: KeyspaceSummary[] | undefined;
258
+ }
259
+ export interface ListTablesRequest {
260
+ nextToken?: string;
261
+
262
+ maxResults?: number;
263
+
264
+ keyspaceName: string | undefined;
265
+ }
266
+
267
+ export interface TableSummary {
268
+ keyspaceName: string | undefined;
269
+
270
+ tableName: string | undefined;
271
+
272
+ resourceArn: string | undefined;
273
+ }
274
+ export interface ListTablesResponse {
275
+ nextToken?: string;
276
+
277
+ tables?: TableSummary[];
278
+ }
279
+ export interface ListTagsForResourceRequest {
280
+ resourceArn: string | undefined;
281
+
282
+ nextToken?: string;
283
+
284
+ maxResults?: number;
285
+ }
286
+ export interface ListTagsForResourceResponse {
287
+ nextToken?: string;
288
+
289
+ tags?: Tag[];
290
+ }
291
+ export interface RestoreTableRequest {
292
+ sourceKeyspaceName: string | undefined;
293
+
294
+ sourceTableName: string | undefined;
295
+
296
+ targetKeyspaceName: string | undefined;
297
+
298
+ targetTableName: string | undefined;
299
+
300
+ restoreTimestamp?: Date;
301
+
302
+ capacitySpecificationOverride?: CapacitySpecification;
303
+
304
+ encryptionSpecificationOverride?: EncryptionSpecification;
305
+
306
+ pointInTimeRecoveryOverride?: PointInTimeRecovery;
307
+
308
+ tagsOverride?: Tag[];
309
+ }
310
+ export interface RestoreTableResponse {
311
+ restoredTableARN: string | undefined;
312
+ }
313
+ export interface TagResourceRequest {
314
+ resourceArn: string | undefined;
315
+
316
+ tags: Tag[] | undefined;
317
+ }
318
+ export interface TagResourceResponse {}
319
+ export interface UntagResourceRequest {
320
+ resourceArn: string | undefined;
321
+
322
+ tags: Tag[] | undefined;
323
+ }
324
+ export interface UntagResourceResponse {}
325
+ export interface UpdateTableRequest {
326
+ keyspaceName: string | undefined;
327
+
328
+ tableName: string | undefined;
329
+
330
+ addColumns?: ColumnDefinition[];
331
+
332
+ capacitySpecification?: CapacitySpecification;
333
+
334
+ encryptionSpecification?: EncryptionSpecification;
335
+
336
+ pointInTimeRecovery?: PointInTimeRecovery;
337
+
338
+ ttl?: TimeToLive;
339
+
340
+ defaultTimeToLive?: number;
341
+ }
342
+ export interface UpdateTableResponse {
343
+ resourceArn: string | undefined;
344
+ }
345
+
346
+ export declare const CapacitySpecificationFilterSensitiveLog: (
347
+ obj: CapacitySpecification
348
+ ) => any;
349
+
350
+ export declare const CapacitySpecificationSummaryFilterSensitiveLog: (
351
+ obj: CapacitySpecificationSummary
352
+ ) => any;
353
+
354
+ export declare const ClusteringKeyFilterSensitiveLog: (
355
+ obj: ClusteringKey
356
+ ) => any;
357
+
358
+ export declare const ColumnDefinitionFilterSensitiveLog: (
359
+ obj: ColumnDefinition
360
+ ) => any;
361
+
362
+ export declare const CommentFilterSensitiveLog: (obj: Comment) => any;
363
+
364
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
365
+
366
+ export declare const CreateKeyspaceRequestFilterSensitiveLog: (
367
+ obj: CreateKeyspaceRequest
368
+ ) => any;
369
+
370
+ export declare const CreateKeyspaceResponseFilterSensitiveLog: (
371
+ obj: CreateKeyspaceResponse
372
+ ) => any;
373
+
374
+ export declare const EncryptionSpecificationFilterSensitiveLog: (
375
+ obj: EncryptionSpecification
376
+ ) => any;
377
+
378
+ export declare const PointInTimeRecoveryFilterSensitiveLog: (
379
+ obj: PointInTimeRecovery
380
+ ) => any;
381
+
382
+ export declare const PartitionKeyFilterSensitiveLog: (obj: PartitionKey) => any;
383
+
384
+ export declare const StaticColumnFilterSensitiveLog: (obj: StaticColumn) => any;
385
+
386
+ export declare const SchemaDefinitionFilterSensitiveLog: (
387
+ obj: SchemaDefinition
388
+ ) => any;
389
+
390
+ export declare const TimeToLiveFilterSensitiveLog: (obj: TimeToLive) => any;
391
+
392
+ export declare const CreateTableRequestFilterSensitiveLog: (
393
+ obj: CreateTableRequest
394
+ ) => any;
395
+
396
+ export declare const CreateTableResponseFilterSensitiveLog: (
397
+ obj: CreateTableResponse
398
+ ) => any;
399
+
400
+ export declare const DeleteKeyspaceRequestFilterSensitiveLog: (
401
+ obj: DeleteKeyspaceRequest
402
+ ) => any;
403
+
404
+ export declare const DeleteKeyspaceResponseFilterSensitiveLog: (
405
+ obj: DeleteKeyspaceResponse
406
+ ) => any;
407
+
408
+ export declare const DeleteTableRequestFilterSensitiveLog: (
409
+ obj: DeleteTableRequest
410
+ ) => any;
411
+
412
+ export declare const DeleteTableResponseFilterSensitiveLog: (
413
+ obj: DeleteTableResponse
414
+ ) => any;
415
+
416
+ export declare const GetKeyspaceRequestFilterSensitiveLog: (
417
+ obj: GetKeyspaceRequest
418
+ ) => any;
419
+
420
+ export declare const GetKeyspaceResponseFilterSensitiveLog: (
421
+ obj: GetKeyspaceResponse
422
+ ) => any;
423
+
424
+ export declare const GetTableRequestFilterSensitiveLog: (
425
+ obj: GetTableRequest
426
+ ) => any;
427
+
428
+ export declare const PointInTimeRecoverySummaryFilterSensitiveLog: (
429
+ obj: PointInTimeRecoverySummary
430
+ ) => any;
431
+
432
+ export declare const GetTableResponseFilterSensitiveLog: (
433
+ obj: GetTableResponse
434
+ ) => any;
435
+
436
+ export declare const ListKeyspacesRequestFilterSensitiveLog: (
437
+ obj: ListKeyspacesRequest
438
+ ) => any;
439
+
440
+ export declare const KeyspaceSummaryFilterSensitiveLog: (
441
+ obj: KeyspaceSummary
442
+ ) => any;
443
+
444
+ export declare const ListKeyspacesResponseFilterSensitiveLog: (
445
+ obj: ListKeyspacesResponse
446
+ ) => any;
447
+
448
+ export declare const ListTablesRequestFilterSensitiveLog: (
449
+ obj: ListTablesRequest
450
+ ) => any;
451
+
452
+ export declare const TableSummaryFilterSensitiveLog: (obj: TableSummary) => any;
453
+
454
+ export declare const ListTablesResponseFilterSensitiveLog: (
455
+ obj: ListTablesResponse
456
+ ) => any;
457
+
458
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
459
+ obj: ListTagsForResourceRequest
460
+ ) => any;
461
+
462
+ export declare const ListTagsForResourceResponseFilterSensitiveLog: (
463
+ obj: ListTagsForResourceResponse
464
+ ) => any;
465
+
466
+ export declare const RestoreTableRequestFilterSensitiveLog: (
467
+ obj: RestoreTableRequest
468
+ ) => any;
469
+
470
+ export declare const RestoreTableResponseFilterSensitiveLog: (
471
+ obj: RestoreTableResponse
472
+ ) => any;
473
+
474
+ export declare const TagResourceRequestFilterSensitiveLog: (
475
+ obj: TagResourceRequest
476
+ ) => any;
477
+
478
+ export declare const TagResourceResponseFilterSensitiveLog: (
479
+ obj: TagResourceResponse
480
+ ) => any;
481
+
482
+ export declare const UntagResourceRequestFilterSensitiveLog: (
483
+ obj: UntagResourceRequest
484
+ ) => any;
485
+
486
+ export declare const UntagResourceResponseFilterSensitiveLog: (
487
+ obj: UntagResourceResponse
488
+ ) => any;
489
+
490
+ export declare const UpdateTableRequestFilterSensitiveLog: (
491
+ obj: UpdateTableRequest
492
+ ) => any;
493
+
494
+ export declare const UpdateTableResponseFilterSensitiveLog: (
495
+ obj: UpdateTableResponse
496
+ ) => any;