@aws-sdk/client-keyspaces 3.296.0 → 3.298.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/dist-cjs/commands/CreateKeyspaceCommand.js +2 -3
- package/dist-cjs/commands/CreateTableCommand.js +2 -3
- package/dist-cjs/commands/DeleteKeyspaceCommand.js +2 -3
- package/dist-cjs/commands/DeleteTableCommand.js +2 -3
- package/dist-cjs/commands/GetKeyspaceCommand.js +2 -3
- package/dist-cjs/commands/GetTableCommand.js +2 -3
- package/dist-cjs/commands/ListKeyspacesCommand.js +2 -3
- package/dist-cjs/commands/ListTablesCommand.js +2 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-cjs/commands/RestoreTableCommand.js +2 -3
- package/dist-cjs/commands/TagResourceCommand.js +2 -3
- package/dist-cjs/commands/UntagResourceCommand.js +2 -3
- package/dist-cjs/commands/UpdateTableCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -170
- package/dist-es/commands/CreateKeyspaceCommand.js +2 -3
- package/dist-es/commands/CreateTableCommand.js +2 -3
- package/dist-es/commands/DeleteKeyspaceCommand.js +2 -3
- package/dist-es/commands/DeleteTableCommand.js +2 -3
- package/dist-es/commands/GetKeyspaceCommand.js +2 -3
- package/dist-es/commands/GetTableCommand.js +2 -3
- package/dist-es/commands/ListKeyspacesCommand.js +2 -3
- package/dist-es/commands/ListTablesCommand.js +2 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-es/commands/RestoreTableCommand.js +2 -3
- package/dist-es/commands/TagResourceCommand.js +2 -3
- package/dist-es/commands/UntagResourceCommand.js +2 -3
- package/dist-es/commands/UpdateTableCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -126
- package/dist-types/Keyspaces.d.ts +14 -0
- package/dist-types/KeyspacesClient.d.ts +24 -4
- package/dist-types/commands/CreateKeyspaceCommand.d.ts +16 -0
- package/dist-types/commands/CreateTableCommand.d.ts +16 -0
- package/dist-types/commands/DeleteKeyspaceCommand.d.ts +16 -0
- package/dist-types/commands/DeleteTableCommand.d.ts +16 -0
- package/dist-types/commands/GetKeyspaceCommand.d.ts +16 -0
- package/dist-types/commands/GetTableCommand.d.ts +16 -0
- package/dist-types/commands/ListKeyspacesCommand.d.ts +16 -0
- package/dist-types/commands/ListTablesCommand.d.ts +16 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
- package/dist-types/commands/RestoreTableCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateTableCommand.d.ts +16 -0
- package/dist-types/models/KeyspacesServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +121 -168
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListKeyspacesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTablesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -114
- package/package.json +4 -3
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { KeyspacesServiceException as __BaseException } from "./KeyspacesServiceException";
|
|
3
3
|
/**
|
|
4
|
+
* @public
|
|
4
5
|
* <p>You do not have sufficient access to perform this action. </p>
|
|
5
6
|
*/
|
|
6
7
|
export declare class AccessDeniedException extends __BaseException {
|
|
@@ -11,11 +12,15 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
11
12
|
*/
|
|
12
13
|
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
13
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
14
18
|
export declare enum ThroughputMode {
|
|
15
19
|
PAY_PER_REQUEST = "PAY_PER_REQUEST",
|
|
16
20
|
PROVISIONED = "PROVISIONED"
|
|
17
21
|
}
|
|
18
22
|
/**
|
|
23
|
+
* @public
|
|
19
24
|
* <p>Amazon Keyspaces has two read/write capacity modes for processing reads and writes on your tables: </p>
|
|
20
25
|
* <ul>
|
|
21
26
|
* <li>
|
|
@@ -61,6 +66,7 @@ export interface CapacitySpecification {
|
|
|
61
66
|
writeCapacityUnits?: number;
|
|
62
67
|
}
|
|
63
68
|
/**
|
|
69
|
+
* @public
|
|
64
70
|
* <p>The read/write throughput capacity mode for a table. The options are:</p>
|
|
65
71
|
* <ul>
|
|
66
72
|
* <li>
|
|
@@ -109,10 +115,14 @@ export interface CapacitySpecificationSummary {
|
|
|
109
115
|
*/
|
|
110
116
|
lastUpdateToPayPerRequestTimestamp?: Date;
|
|
111
117
|
}
|
|
118
|
+
/**
|
|
119
|
+
* @public
|
|
120
|
+
*/
|
|
112
121
|
export declare enum ClientSideTimestampsStatus {
|
|
113
122
|
ENABLED = "ENABLED"
|
|
114
123
|
}
|
|
115
124
|
/**
|
|
125
|
+
* @public
|
|
116
126
|
* <p>The client-side timestamp setting of the table.</p>
|
|
117
127
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/keyspaces/latest/devguide/client-side-timestamps-how-it-works.html">How it works: Amazon Keyspaces client-side timestamps</a> in the <i>Amazon Keyspaces Developer
|
|
118
128
|
* Guide</i>.</p>
|
|
@@ -123,11 +133,15 @@ export interface ClientSideTimestamps {
|
|
|
123
133
|
*/
|
|
124
134
|
status: ClientSideTimestampsStatus | string | undefined;
|
|
125
135
|
}
|
|
136
|
+
/**
|
|
137
|
+
* @public
|
|
138
|
+
*/
|
|
126
139
|
export declare enum SortOrder {
|
|
127
140
|
ASC = "ASC",
|
|
128
141
|
DESC = "DESC"
|
|
129
142
|
}
|
|
130
143
|
/**
|
|
144
|
+
* @public
|
|
131
145
|
* <p>The optional clustering column portion of your primary key determines how the data is clustered and sorted within each partition.</p>
|
|
132
146
|
*/
|
|
133
147
|
export interface ClusteringKey {
|
|
@@ -141,6 +155,7 @@ export interface ClusteringKey {
|
|
|
141
155
|
orderBy: SortOrder | string | undefined;
|
|
142
156
|
}
|
|
143
157
|
/**
|
|
158
|
+
* @public
|
|
144
159
|
* <p>The names and data types of regular columns.</p>
|
|
145
160
|
*/
|
|
146
161
|
export interface ColumnDefinition {
|
|
@@ -155,6 +170,7 @@ export interface ColumnDefinition {
|
|
|
155
170
|
type: string | undefined;
|
|
156
171
|
}
|
|
157
172
|
/**
|
|
173
|
+
* @public
|
|
158
174
|
* <p>An optional comment that describes the table.</p>
|
|
159
175
|
*/
|
|
160
176
|
export interface Comment {
|
|
@@ -164,6 +180,7 @@ export interface Comment {
|
|
|
164
180
|
message: string | undefined;
|
|
165
181
|
}
|
|
166
182
|
/**
|
|
183
|
+
* @public
|
|
167
184
|
* <p>Amazon Keyspaces could not complete the requested action. This error may occur if you try to
|
|
168
185
|
* perform an action and the same or a different action is already
|
|
169
186
|
* in progress, or if you try to create a resource that already exists. </p>
|
|
@@ -177,6 +194,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
177
194
|
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
178
195
|
}
|
|
179
196
|
/**
|
|
197
|
+
* @public
|
|
180
198
|
* <p>Describes a tag. A tag is a key-value pair. You can add up to 50 tags to a single Amazon Keyspaces resource.</p>
|
|
181
199
|
* <p>Amazon Web Services-assigned tag names and values are automatically assigned the <code>aws:</code> prefix, which the user cannot assign.
|
|
182
200
|
* Amazon Web Services-assigned tag names do not count towards the tag limit of 50. User-assigned tag names have the
|
|
@@ -195,6 +213,9 @@ export interface Tag {
|
|
|
195
213
|
*/
|
|
196
214
|
value: string | undefined;
|
|
197
215
|
}
|
|
216
|
+
/**
|
|
217
|
+
* @public
|
|
218
|
+
*/
|
|
198
219
|
export interface CreateKeyspaceRequest {
|
|
199
220
|
/**
|
|
200
221
|
* <p>The name of the keyspace to be created.</p>
|
|
@@ -207,6 +228,9 @@ export interface CreateKeyspaceRequest {
|
|
|
207
228
|
*/
|
|
208
229
|
tags?: Tag[];
|
|
209
230
|
}
|
|
231
|
+
/**
|
|
232
|
+
* @public
|
|
233
|
+
*/
|
|
210
234
|
export interface CreateKeyspaceResponse {
|
|
211
235
|
/**
|
|
212
236
|
* <p>The unique identifier of the keyspace in the format of an Amazon Resource Name (ARN).</p>
|
|
@@ -214,6 +238,7 @@ export interface CreateKeyspaceResponse {
|
|
|
214
238
|
resourceArn: string | undefined;
|
|
215
239
|
}
|
|
216
240
|
/**
|
|
241
|
+
* @public
|
|
217
242
|
* <p>Amazon Keyspaces was unable to fully process this request because of an internal server error.</p>
|
|
218
243
|
*/
|
|
219
244
|
export declare class InternalServerException extends __BaseException {
|
|
@@ -225,6 +250,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
225
250
|
constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
|
|
226
251
|
}
|
|
227
252
|
/**
|
|
253
|
+
* @public
|
|
228
254
|
* <p>The operation exceeded the service quota for this resource. For more information on service quotas, see <a href="https://docs.aws.amazon.com/keyspaces/latest/devguide/quotas.html">Quotas</a> in the <i>Amazon Keyspaces Developer
|
|
229
255
|
* Guide</i>.</p>
|
|
230
256
|
*/
|
|
@@ -237,6 +263,7 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
237
263
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
238
264
|
}
|
|
239
265
|
/**
|
|
266
|
+
* @public
|
|
240
267
|
* <p>The operation failed due to an invalid or malformed request.</p>
|
|
241
268
|
*/
|
|
242
269
|
export declare class ValidationException extends __BaseException {
|
|
@@ -247,11 +274,15 @@ export declare class ValidationException extends __BaseException {
|
|
|
247
274
|
*/
|
|
248
275
|
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
249
276
|
}
|
|
277
|
+
/**
|
|
278
|
+
* @public
|
|
279
|
+
*/
|
|
250
280
|
export declare enum EncryptionType {
|
|
251
281
|
AWS_OWNED_KMS_KEY = "AWS_OWNED_KMS_KEY",
|
|
252
282
|
CUSTOMER_MANAGED_KMS_KEY = "CUSTOMER_MANAGED_KMS_KEY"
|
|
253
283
|
}
|
|
254
284
|
/**
|
|
285
|
+
* @public
|
|
255
286
|
* <p>Amazon Keyspaces encrypts and decrypts the table data at rest transparently and integrates with Key Management Service for storing and managing the encryption key.
|
|
256
287
|
* You can choose one of the following KMS keys (KMS keys):</p>
|
|
257
288
|
* <ul>
|
|
@@ -292,11 +323,15 @@ export interface EncryptionSpecification {
|
|
|
292
323
|
*/
|
|
293
324
|
kmsKeyIdentifier?: string;
|
|
294
325
|
}
|
|
326
|
+
/**
|
|
327
|
+
* @public
|
|
328
|
+
*/
|
|
295
329
|
export declare enum PointInTimeRecoveryStatus {
|
|
296
330
|
DISABLED = "DISABLED",
|
|
297
331
|
ENABLED = "ENABLED"
|
|
298
332
|
}
|
|
299
333
|
/**
|
|
334
|
+
* @public
|
|
300
335
|
* <p>Point-in-time recovery (PITR) helps protect your Amazon Keyspaces tables from accidental write or delete operations by providing you continuous backups of your table data.</p>
|
|
301
336
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/keyspaces/latest/devguide/PointInTimeRecovery.html">Point-in-time recovery</a> in the <i>Amazon Keyspaces Developer
|
|
302
337
|
* Guide</i>.</p>
|
|
@@ -320,6 +355,7 @@ export interface PointInTimeRecovery {
|
|
|
320
355
|
status: PointInTimeRecoveryStatus | string | undefined;
|
|
321
356
|
}
|
|
322
357
|
/**
|
|
358
|
+
* @public
|
|
323
359
|
* <p>The partition key portion of the primary key is required
|
|
324
360
|
* and determines how Amazon Keyspaces stores the data.
|
|
325
361
|
* The partition key can be a single column, or it can be a compound value composed of two or more columns.</p>
|
|
@@ -331,6 +367,7 @@ export interface PartitionKey {
|
|
|
331
367
|
name: string | undefined;
|
|
332
368
|
}
|
|
333
369
|
/**
|
|
370
|
+
* @public
|
|
334
371
|
* <p>The static columns of the table. Static columns store values that are shared by all rows in the same partition.</p>
|
|
335
372
|
*/
|
|
336
373
|
export interface StaticColumn {
|
|
@@ -340,6 +377,7 @@ export interface StaticColumn {
|
|
|
340
377
|
name: string | undefined;
|
|
341
378
|
}
|
|
342
379
|
/**
|
|
380
|
+
* @public
|
|
343
381
|
* <p>Describes the schema of the table.</p>
|
|
344
382
|
*/
|
|
345
383
|
export interface SchemaDefinition {
|
|
@@ -360,10 +398,14 @@ export interface SchemaDefinition {
|
|
|
360
398
|
*/
|
|
361
399
|
staticColumns?: StaticColumn[];
|
|
362
400
|
}
|
|
401
|
+
/**
|
|
402
|
+
* @public
|
|
403
|
+
*/
|
|
363
404
|
export declare enum TimeToLiveStatus {
|
|
364
405
|
ENABLED = "ENABLED"
|
|
365
406
|
}
|
|
366
407
|
/**
|
|
408
|
+
* @public
|
|
367
409
|
* <p>Enable custom Time to Live (TTL) settings for rows and columns without setting a TTL default for the specified table.</p>
|
|
368
410
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/keyspaces/latest/devguide/TTL-how-it-works.html#ttl-howitworks_enabling">Enabling TTL on tables</a> in the <i>Amazon Keyspaces Developer
|
|
369
411
|
* Guide</i>.</p>
|
|
@@ -374,6 +416,9 @@ export interface TimeToLive {
|
|
|
374
416
|
*/
|
|
375
417
|
status: TimeToLiveStatus | string | undefined;
|
|
376
418
|
}
|
|
419
|
+
/**
|
|
420
|
+
* @public
|
|
421
|
+
*/
|
|
377
422
|
export interface CreateTableRequest {
|
|
378
423
|
/**
|
|
379
424
|
* <p>The name of the keyspace that the table is going to be created in.</p>
|
|
@@ -559,6 +604,9 @@ export interface CreateTableRequest {
|
|
|
559
604
|
*/
|
|
560
605
|
clientSideTimestamps?: ClientSideTimestamps;
|
|
561
606
|
}
|
|
607
|
+
/**
|
|
608
|
+
* @public
|
|
609
|
+
*/
|
|
562
610
|
export interface CreateTableResponse {
|
|
563
611
|
/**
|
|
564
612
|
* <p>The unique identifier of the table in the format of an Amazon Resource Name (ARN).</p>
|
|
@@ -566,6 +614,7 @@ export interface CreateTableResponse {
|
|
|
566
614
|
resourceArn: string | undefined;
|
|
567
615
|
}
|
|
568
616
|
/**
|
|
617
|
+
* @public
|
|
569
618
|
* <p>The operation tried to access a keyspace or table that doesn't exist. The resource might not be specified correctly, or its status might not be <code>ACTIVE</code>.</p>
|
|
570
619
|
*/
|
|
571
620
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
@@ -580,14 +629,23 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
580
629
|
*/
|
|
581
630
|
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
582
631
|
}
|
|
632
|
+
/**
|
|
633
|
+
* @public
|
|
634
|
+
*/
|
|
583
635
|
export interface DeleteKeyspaceRequest {
|
|
584
636
|
/**
|
|
585
637
|
* <p>The name of the keyspace to be deleted.</p>
|
|
586
638
|
*/
|
|
587
639
|
keyspaceName: string | undefined;
|
|
588
640
|
}
|
|
641
|
+
/**
|
|
642
|
+
* @public
|
|
643
|
+
*/
|
|
589
644
|
export interface DeleteKeyspaceResponse {
|
|
590
645
|
}
|
|
646
|
+
/**
|
|
647
|
+
* @public
|
|
648
|
+
*/
|
|
591
649
|
export interface DeleteTableRequest {
|
|
592
650
|
/**
|
|
593
651
|
* <p>The name of the keyspace of the to be deleted table.</p>
|
|
@@ -598,14 +656,23 @@ export interface DeleteTableRequest {
|
|
|
598
656
|
*/
|
|
599
657
|
tableName: string | undefined;
|
|
600
658
|
}
|
|
659
|
+
/**
|
|
660
|
+
* @public
|
|
661
|
+
*/
|
|
601
662
|
export interface DeleteTableResponse {
|
|
602
663
|
}
|
|
664
|
+
/**
|
|
665
|
+
* @public
|
|
666
|
+
*/
|
|
603
667
|
export interface GetKeyspaceRequest {
|
|
604
668
|
/**
|
|
605
669
|
* <p>The name of the keyspace.</p>
|
|
606
670
|
*/
|
|
607
671
|
keyspaceName: string | undefined;
|
|
608
672
|
}
|
|
673
|
+
/**
|
|
674
|
+
* @public
|
|
675
|
+
*/
|
|
609
676
|
export interface GetKeyspaceResponse {
|
|
610
677
|
/**
|
|
611
678
|
* <p>The name of the keyspace.</p>
|
|
@@ -616,6 +683,9 @@ export interface GetKeyspaceResponse {
|
|
|
616
683
|
*/
|
|
617
684
|
resourceArn: string | undefined;
|
|
618
685
|
}
|
|
686
|
+
/**
|
|
687
|
+
* @public
|
|
688
|
+
*/
|
|
619
689
|
export interface GetTableRequest {
|
|
620
690
|
/**
|
|
621
691
|
* <p>The name of the keyspace that the table is stored in.</p>
|
|
@@ -627,6 +697,7 @@ export interface GetTableRequest {
|
|
|
627
697
|
tableName: string | undefined;
|
|
628
698
|
}
|
|
629
699
|
/**
|
|
700
|
+
* @public
|
|
630
701
|
* <p>The point-in-time recovery status of the specified table.</p>
|
|
631
702
|
*/
|
|
632
703
|
export interface PointInTimeRecoverySummary {
|
|
@@ -639,6 +710,9 @@ export interface PointInTimeRecoverySummary {
|
|
|
639
710
|
*/
|
|
640
711
|
earliestRestorableTimestamp?: Date;
|
|
641
712
|
}
|
|
713
|
+
/**
|
|
714
|
+
* @public
|
|
715
|
+
*/
|
|
642
716
|
export declare enum TableStatus {
|
|
643
717
|
ACTIVE = "ACTIVE",
|
|
644
718
|
CREATING = "CREATING",
|
|
@@ -648,6 +722,9 @@ export declare enum TableStatus {
|
|
|
648
722
|
RESTORING = "RESTORING",
|
|
649
723
|
UPDATING = "UPDATING"
|
|
650
724
|
}
|
|
725
|
+
/**
|
|
726
|
+
* @public
|
|
727
|
+
*/
|
|
651
728
|
export interface GetTableResponse {
|
|
652
729
|
/**
|
|
653
730
|
* <p>The name of the keyspace that the specified table is stored in.</p>
|
|
@@ -715,6 +792,9 @@ export interface GetTableResponse {
|
|
|
715
792
|
*/
|
|
716
793
|
clientSideTimestamps?: ClientSideTimestamps;
|
|
717
794
|
}
|
|
795
|
+
/**
|
|
796
|
+
* @public
|
|
797
|
+
*/
|
|
718
798
|
export interface ListKeyspacesRequest {
|
|
719
799
|
/**
|
|
720
800
|
* <p>The pagination token. To resume pagination, provide the <code>NextToken</code> value as argument of a subsequent API invocation.</p>
|
|
@@ -728,6 +808,7 @@ export interface ListKeyspacesRequest {
|
|
|
728
808
|
maxResults?: number;
|
|
729
809
|
}
|
|
730
810
|
/**
|
|
811
|
+
* @public
|
|
731
812
|
* <p>Represents the properties of a keyspace.</p>
|
|
732
813
|
*/
|
|
733
814
|
export interface KeyspaceSummary {
|
|
@@ -740,6 +821,9 @@ export interface KeyspaceSummary {
|
|
|
740
821
|
*/
|
|
741
822
|
resourceArn: string | undefined;
|
|
742
823
|
}
|
|
824
|
+
/**
|
|
825
|
+
* @public
|
|
826
|
+
*/
|
|
743
827
|
export interface ListKeyspacesResponse {
|
|
744
828
|
/**
|
|
745
829
|
* <p>A token to specify where to start paginating. This is the <code>NextToken</code> from a previously truncated response.</p>
|
|
@@ -750,6 +834,9 @@ export interface ListKeyspacesResponse {
|
|
|
750
834
|
*/
|
|
751
835
|
keyspaces: KeyspaceSummary[] | undefined;
|
|
752
836
|
}
|
|
837
|
+
/**
|
|
838
|
+
* @public
|
|
839
|
+
*/
|
|
753
840
|
export interface ListTablesRequest {
|
|
754
841
|
/**
|
|
755
842
|
* <p>The pagination token. To resume pagination, provide the <code>NextToken</code> value as an argument of a subsequent API invocation.</p>
|
|
@@ -767,6 +854,7 @@ export interface ListTablesRequest {
|
|
|
767
854
|
keyspaceName: string | undefined;
|
|
768
855
|
}
|
|
769
856
|
/**
|
|
857
|
+
* @public
|
|
770
858
|
* <p>Returns the name of the specified table, the keyspace it is stored in, and the unique identifier in the format of an Amazon Resource Name (ARN).</p>
|
|
771
859
|
*/
|
|
772
860
|
export interface TableSummary {
|
|
@@ -783,6 +871,9 @@ export interface TableSummary {
|
|
|
783
871
|
*/
|
|
784
872
|
resourceArn: string | undefined;
|
|
785
873
|
}
|
|
874
|
+
/**
|
|
875
|
+
* @public
|
|
876
|
+
*/
|
|
786
877
|
export interface ListTablesResponse {
|
|
787
878
|
/**
|
|
788
879
|
* <p>A token to specify where to start paginating. This is the <code>NextToken</code> from a previously truncated response.</p>
|
|
@@ -793,6 +884,9 @@ export interface ListTablesResponse {
|
|
|
793
884
|
*/
|
|
794
885
|
tables?: TableSummary[];
|
|
795
886
|
}
|
|
887
|
+
/**
|
|
888
|
+
* @public
|
|
889
|
+
*/
|
|
796
890
|
export interface ListTagsForResourceRequest {
|
|
797
891
|
/**
|
|
798
892
|
* <p>The Amazon Resource Name (ARN) of the Amazon Keyspaces resource.</p>
|
|
@@ -809,6 +903,9 @@ export interface ListTagsForResourceRequest {
|
|
|
809
903
|
*/
|
|
810
904
|
maxResults?: number;
|
|
811
905
|
}
|
|
906
|
+
/**
|
|
907
|
+
* @public
|
|
908
|
+
*/
|
|
812
909
|
export interface ListTagsForResourceResponse {
|
|
813
910
|
/**
|
|
814
911
|
* <p>A token to specify where to start paginating. This is the <code>NextToken</code> from a previously truncated response.</p>
|
|
@@ -819,6 +916,9 @@ export interface ListTagsForResourceResponse {
|
|
|
819
916
|
*/
|
|
820
917
|
tags?: Tag[];
|
|
821
918
|
}
|
|
919
|
+
/**
|
|
920
|
+
* @public
|
|
921
|
+
*/
|
|
822
922
|
export interface RestoreTableRequest {
|
|
823
923
|
/**
|
|
824
924
|
* <p>The keyspace name of the source table.</p>
|
|
@@ -906,12 +1006,18 @@ export interface RestoreTableRequest {
|
|
|
906
1006
|
*/
|
|
907
1007
|
tagsOverride?: Tag[];
|
|
908
1008
|
}
|
|
1009
|
+
/**
|
|
1010
|
+
* @public
|
|
1011
|
+
*/
|
|
909
1012
|
export interface RestoreTableResponse {
|
|
910
1013
|
/**
|
|
911
1014
|
* <p>The Amazon Resource Name (ARN) of the restored table.</p>
|
|
912
1015
|
*/
|
|
913
1016
|
restoredTableARN: string | undefined;
|
|
914
1017
|
}
|
|
1018
|
+
/**
|
|
1019
|
+
* @public
|
|
1020
|
+
*/
|
|
915
1021
|
export interface TagResourceRequest {
|
|
916
1022
|
/**
|
|
917
1023
|
* <p>The Amazon Resource Name (ARN) of the Amazon Keyspaces resource to which to add tags.</p>
|
|
@@ -922,8 +1028,14 @@ export interface TagResourceRequest {
|
|
|
922
1028
|
*/
|
|
923
1029
|
tags: Tag[] | undefined;
|
|
924
1030
|
}
|
|
1031
|
+
/**
|
|
1032
|
+
* @public
|
|
1033
|
+
*/
|
|
925
1034
|
export interface TagResourceResponse {
|
|
926
1035
|
}
|
|
1036
|
+
/**
|
|
1037
|
+
* @public
|
|
1038
|
+
*/
|
|
927
1039
|
export interface UntagResourceRequest {
|
|
928
1040
|
/**
|
|
929
1041
|
* <p>The Amazon Keyspaces resource that the tags will be removed from. This value is an Amazon Resource Name (ARN).</p>
|
|
@@ -934,8 +1046,14 @@ export interface UntagResourceRequest {
|
|
|
934
1046
|
*/
|
|
935
1047
|
tags: Tag[] | undefined;
|
|
936
1048
|
}
|
|
1049
|
+
/**
|
|
1050
|
+
* @public
|
|
1051
|
+
*/
|
|
937
1052
|
export interface UntagResourceResponse {
|
|
938
1053
|
}
|
|
1054
|
+
/**
|
|
1055
|
+
* @public
|
|
1056
|
+
*/
|
|
939
1057
|
export interface UpdateTableRequest {
|
|
940
1058
|
/**
|
|
941
1059
|
* <p>The name of the keyspace the specified table is stored in.</p>
|
|
@@ -1059,177 +1177,12 @@ export interface UpdateTableRequest {
|
|
|
1059
1177
|
*/
|
|
1060
1178
|
clientSideTimestamps?: ClientSideTimestamps;
|
|
1061
1179
|
}
|
|
1180
|
+
/**
|
|
1181
|
+
* @public
|
|
1182
|
+
*/
|
|
1062
1183
|
export interface UpdateTableResponse {
|
|
1063
1184
|
/**
|
|
1064
1185
|
* <p>The Amazon Resource Name (ARN) of the modified table.</p>
|
|
1065
1186
|
*/
|
|
1066
1187
|
resourceArn: string | undefined;
|
|
1067
1188
|
}
|
|
1068
|
-
/**
|
|
1069
|
-
* @internal
|
|
1070
|
-
*/
|
|
1071
|
-
export declare const CapacitySpecificationFilterSensitiveLog: (obj: CapacitySpecification) => any;
|
|
1072
|
-
/**
|
|
1073
|
-
* @internal
|
|
1074
|
-
*/
|
|
1075
|
-
export declare const CapacitySpecificationSummaryFilterSensitiveLog: (obj: CapacitySpecificationSummary) => any;
|
|
1076
|
-
/**
|
|
1077
|
-
* @internal
|
|
1078
|
-
*/
|
|
1079
|
-
export declare const ClientSideTimestampsFilterSensitiveLog: (obj: ClientSideTimestamps) => any;
|
|
1080
|
-
/**
|
|
1081
|
-
* @internal
|
|
1082
|
-
*/
|
|
1083
|
-
export declare const ClusteringKeyFilterSensitiveLog: (obj: ClusteringKey) => any;
|
|
1084
|
-
/**
|
|
1085
|
-
* @internal
|
|
1086
|
-
*/
|
|
1087
|
-
export declare const ColumnDefinitionFilterSensitiveLog: (obj: ColumnDefinition) => any;
|
|
1088
|
-
/**
|
|
1089
|
-
* @internal
|
|
1090
|
-
*/
|
|
1091
|
-
export declare const CommentFilterSensitiveLog: (obj: Comment) => any;
|
|
1092
|
-
/**
|
|
1093
|
-
* @internal
|
|
1094
|
-
*/
|
|
1095
|
-
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
1096
|
-
/**
|
|
1097
|
-
* @internal
|
|
1098
|
-
*/
|
|
1099
|
-
export declare const CreateKeyspaceRequestFilterSensitiveLog: (obj: CreateKeyspaceRequest) => any;
|
|
1100
|
-
/**
|
|
1101
|
-
* @internal
|
|
1102
|
-
*/
|
|
1103
|
-
export declare const CreateKeyspaceResponseFilterSensitiveLog: (obj: CreateKeyspaceResponse) => any;
|
|
1104
|
-
/**
|
|
1105
|
-
* @internal
|
|
1106
|
-
*/
|
|
1107
|
-
export declare const EncryptionSpecificationFilterSensitiveLog: (obj: EncryptionSpecification) => any;
|
|
1108
|
-
/**
|
|
1109
|
-
* @internal
|
|
1110
|
-
*/
|
|
1111
|
-
export declare const PointInTimeRecoveryFilterSensitiveLog: (obj: PointInTimeRecovery) => any;
|
|
1112
|
-
/**
|
|
1113
|
-
* @internal
|
|
1114
|
-
*/
|
|
1115
|
-
export declare const PartitionKeyFilterSensitiveLog: (obj: PartitionKey) => any;
|
|
1116
|
-
/**
|
|
1117
|
-
* @internal
|
|
1118
|
-
*/
|
|
1119
|
-
export declare const StaticColumnFilterSensitiveLog: (obj: StaticColumn) => any;
|
|
1120
|
-
/**
|
|
1121
|
-
* @internal
|
|
1122
|
-
*/
|
|
1123
|
-
export declare const SchemaDefinitionFilterSensitiveLog: (obj: SchemaDefinition) => any;
|
|
1124
|
-
/**
|
|
1125
|
-
* @internal
|
|
1126
|
-
*/
|
|
1127
|
-
export declare const TimeToLiveFilterSensitiveLog: (obj: TimeToLive) => any;
|
|
1128
|
-
/**
|
|
1129
|
-
* @internal
|
|
1130
|
-
*/
|
|
1131
|
-
export declare const CreateTableRequestFilterSensitiveLog: (obj: CreateTableRequest) => any;
|
|
1132
|
-
/**
|
|
1133
|
-
* @internal
|
|
1134
|
-
*/
|
|
1135
|
-
export declare const CreateTableResponseFilterSensitiveLog: (obj: CreateTableResponse) => any;
|
|
1136
|
-
/**
|
|
1137
|
-
* @internal
|
|
1138
|
-
*/
|
|
1139
|
-
export declare const DeleteKeyspaceRequestFilterSensitiveLog: (obj: DeleteKeyspaceRequest) => any;
|
|
1140
|
-
/**
|
|
1141
|
-
* @internal
|
|
1142
|
-
*/
|
|
1143
|
-
export declare const DeleteKeyspaceResponseFilterSensitiveLog: (obj: DeleteKeyspaceResponse) => any;
|
|
1144
|
-
/**
|
|
1145
|
-
* @internal
|
|
1146
|
-
*/
|
|
1147
|
-
export declare const DeleteTableRequestFilterSensitiveLog: (obj: DeleteTableRequest) => any;
|
|
1148
|
-
/**
|
|
1149
|
-
* @internal
|
|
1150
|
-
*/
|
|
1151
|
-
export declare const DeleteTableResponseFilterSensitiveLog: (obj: DeleteTableResponse) => any;
|
|
1152
|
-
/**
|
|
1153
|
-
* @internal
|
|
1154
|
-
*/
|
|
1155
|
-
export declare const GetKeyspaceRequestFilterSensitiveLog: (obj: GetKeyspaceRequest) => any;
|
|
1156
|
-
/**
|
|
1157
|
-
* @internal
|
|
1158
|
-
*/
|
|
1159
|
-
export declare const GetKeyspaceResponseFilterSensitiveLog: (obj: GetKeyspaceResponse) => any;
|
|
1160
|
-
/**
|
|
1161
|
-
* @internal
|
|
1162
|
-
*/
|
|
1163
|
-
export declare const GetTableRequestFilterSensitiveLog: (obj: GetTableRequest) => any;
|
|
1164
|
-
/**
|
|
1165
|
-
* @internal
|
|
1166
|
-
*/
|
|
1167
|
-
export declare const PointInTimeRecoverySummaryFilterSensitiveLog: (obj: PointInTimeRecoverySummary) => any;
|
|
1168
|
-
/**
|
|
1169
|
-
* @internal
|
|
1170
|
-
*/
|
|
1171
|
-
export declare const GetTableResponseFilterSensitiveLog: (obj: GetTableResponse) => any;
|
|
1172
|
-
/**
|
|
1173
|
-
* @internal
|
|
1174
|
-
*/
|
|
1175
|
-
export declare const ListKeyspacesRequestFilterSensitiveLog: (obj: ListKeyspacesRequest) => any;
|
|
1176
|
-
/**
|
|
1177
|
-
* @internal
|
|
1178
|
-
*/
|
|
1179
|
-
export declare const KeyspaceSummaryFilterSensitiveLog: (obj: KeyspaceSummary) => any;
|
|
1180
|
-
/**
|
|
1181
|
-
* @internal
|
|
1182
|
-
*/
|
|
1183
|
-
export declare const ListKeyspacesResponseFilterSensitiveLog: (obj: ListKeyspacesResponse) => any;
|
|
1184
|
-
/**
|
|
1185
|
-
* @internal
|
|
1186
|
-
*/
|
|
1187
|
-
export declare const ListTablesRequestFilterSensitiveLog: (obj: ListTablesRequest) => any;
|
|
1188
|
-
/**
|
|
1189
|
-
* @internal
|
|
1190
|
-
*/
|
|
1191
|
-
export declare const TableSummaryFilterSensitiveLog: (obj: TableSummary) => any;
|
|
1192
|
-
/**
|
|
1193
|
-
* @internal
|
|
1194
|
-
*/
|
|
1195
|
-
export declare const ListTablesResponseFilterSensitiveLog: (obj: ListTablesResponse) => any;
|
|
1196
|
-
/**
|
|
1197
|
-
* @internal
|
|
1198
|
-
*/
|
|
1199
|
-
export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
|
|
1200
|
-
/**
|
|
1201
|
-
* @internal
|
|
1202
|
-
*/
|
|
1203
|
-
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
1204
|
-
/**
|
|
1205
|
-
* @internal
|
|
1206
|
-
*/
|
|
1207
|
-
export declare const RestoreTableRequestFilterSensitiveLog: (obj: RestoreTableRequest) => any;
|
|
1208
|
-
/**
|
|
1209
|
-
* @internal
|
|
1210
|
-
*/
|
|
1211
|
-
export declare const RestoreTableResponseFilterSensitiveLog: (obj: RestoreTableResponse) => any;
|
|
1212
|
-
/**
|
|
1213
|
-
* @internal
|
|
1214
|
-
*/
|
|
1215
|
-
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
1216
|
-
/**
|
|
1217
|
-
* @internal
|
|
1218
|
-
*/
|
|
1219
|
-
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
1220
|
-
/**
|
|
1221
|
-
* @internal
|
|
1222
|
-
*/
|
|
1223
|
-
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
1224
|
-
/**
|
|
1225
|
-
* @internal
|
|
1226
|
-
*/
|
|
1227
|
-
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
1228
|
-
/**
|
|
1229
|
-
* @internal
|
|
1230
|
-
*/
|
|
1231
|
-
export declare const UpdateTableRequestFilterSensitiveLog: (obj: UpdateTableRequest) => any;
|
|
1232
|
-
/**
|
|
1233
|
-
* @internal
|
|
1234
|
-
*/
|
|
1235
|
-
export declare const UpdateTableResponseFilterSensitiveLog: (obj: UpdateTableResponse) => any;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListKeyspacesCommandInput, ListKeyspacesCommandOutput } from "../commands/ListKeyspacesCommand";
|
|
3
3
|
import { KeyspacesPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListKeyspaces(config: KeyspacesPaginationConfiguration, input: ListKeyspacesCommandInput, ...additionalArguments: any): Paginator<ListKeyspacesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListTablesCommandInput, ListTablesCommandOutput } from "../commands/ListTablesCommand";
|
|
3
3
|
import { KeyspacesPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListTables(config: KeyspacesPaginationConfiguration, input: ListTablesCommandInput, ...additionalArguments: any): Paginator<ListTablesCommandOutput>;
|
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
import { Paginator } from "@aws-sdk/types";
|
|
2
2
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
3
3
|
import { KeyspacesPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
4
7
|
export declare function paginateListTagsForResource(config: KeyspacesPaginationConfiguration, input: ListTagsForResourceCommandInput, ...additionalArguments: any): Paginator<ListTagsForResourceCommandOutput>;
|