@aws-sdk/client-keyspaces 3.687.0 → 3.691.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.
@@ -24,19 +24,19 @@ export interface TargetTrackingScalingPolicyConfiguration {
24
24
  * scale in the table lower than its minimum capacity.</p>
25
25
  * @public
26
26
  */
27
- disableScaleIn?: boolean;
27
+ disableScaleIn?: boolean | undefined;
28
28
  /**
29
29
  * <p>Specifies a <code>scale-in</code> cool down period.</p>
30
30
  * <p>A cooldown period in seconds between scaling activities that lets the table stabilize before another scaling activity starts. </p>
31
31
  * @public
32
32
  */
33
- scaleInCooldown?: number;
33
+ scaleInCooldown?: number | undefined;
34
34
  /**
35
35
  * <p>Specifies a scale out cool down period.</p>
36
36
  * <p>A cooldown period in seconds between scaling activities that lets the table stabilize before another scaling activity starts. </p>
37
37
  * @public
38
38
  */
39
- scaleOutCooldown?: number;
39
+ scaleOutCooldown?: number | undefined;
40
40
  /**
41
41
  * <p>Specifies the target value for the target tracking auto scaling policy.</p>
42
42
  * <p>Amazon Keyspaces auto scaling scales up capacity automatically when traffic exceeds this target utilization
@@ -59,7 +59,7 @@ export interface AutoScalingPolicy {
59
59
  * when it falls below the target. A <code>double</code> between 20 and 90.</p>
60
60
  * @public
61
61
  */
62
- targetTrackingScalingPolicyConfiguration?: TargetTrackingScalingPolicyConfiguration;
62
+ targetTrackingScalingPolicyConfiguration?: TargetTrackingScalingPolicyConfiguration | undefined;
63
63
  }
64
64
  /**
65
65
  * <p>The optional auto scaling settings for a table with provisioned throughput capacity.</p>
@@ -128,26 +128,26 @@ export interface AutoScalingSettings {
128
128
  * <p>This optional parameter enables auto scaling for the table if set to <code>false</code>.</p>
129
129
  * @public
130
130
  */
131
- autoScalingDisabled?: boolean;
131
+ autoScalingDisabled?: boolean | undefined;
132
132
  /**
133
133
  * <p>The minimum level of throughput the table should always be ready to support. The value must be between 1
134
134
  * and the max throughput per second quota for your account (40,000 by default).</p>
135
135
  * @public
136
136
  */
137
- minimumUnits?: number;
137
+ minimumUnits?: number | undefined;
138
138
  /**
139
139
  * <p>Manage costs by specifying the maximum amount of throughput to provision. The value must be between 1
140
140
  * and the max throughput per second quota for your account (40,000 by default).</p>
141
141
  * @public
142
142
  */
143
- maximumUnits?: number;
143
+ maximumUnits?: number | undefined;
144
144
  /**
145
145
  * <p>Amazon Keyspaces supports the <code>target tracking</code> auto scaling policy. With this policy, Amazon Keyspaces auto scaling
146
146
  * ensures that the table's ratio of consumed to provisioned capacity stays at or near the target value that you specify. You
147
147
  * define the target value as a percentage between 20 and 90.</p>
148
148
  * @public
149
149
  */
150
- scalingPolicy?: AutoScalingPolicy;
150
+ scalingPolicy?: AutoScalingPolicy | undefined;
151
151
  }
152
152
  /**
153
153
  * <p>The optional auto scaling capacity settings for a table in provisioned capacity mode.</p>
@@ -158,12 +158,12 @@ export interface AutoScalingSpecification {
158
158
  * <p>The auto scaling settings for the table's write capacity.</p>
159
159
  * @public
160
160
  */
161
- writeCapacityAutoScaling?: AutoScalingSettings;
161
+ writeCapacityAutoScaling?: AutoScalingSettings | undefined;
162
162
  /**
163
163
  * <p>The auto scaling settings for the table's read capacity.</p>
164
164
  * @public
165
165
  */
166
- readCapacityAutoScaling?: AutoScalingSettings;
166
+ readCapacityAutoScaling?: AutoScalingSettings | undefined;
167
167
  }
168
168
  /**
169
169
  * @public
@@ -218,13 +218,13 @@ export interface CapacitySpecification {
218
218
  * <code>(RCUs)</code>.</p>
219
219
  * @public
220
220
  */
221
- readCapacityUnits?: number;
221
+ readCapacityUnits?: number | undefined;
222
222
  /**
223
223
  * <p>The throughput capacity specified for <code>write</code> operations defined in <code>write capacity units</code>
224
224
  * <code>(WCUs)</code>.</p>
225
225
  * @public
226
226
  */
227
- writeCapacityUnits?: number;
227
+ writeCapacityUnits?: number | undefined;
228
228
  }
229
229
  /**
230
230
  * <p>The read/write throughput capacity mode for a table. The options are:</p>
@@ -267,18 +267,18 @@ export interface CapacitySpecificationSummary {
267
267
  * <code>(RCUs)</code>.</p>
268
268
  * @public
269
269
  */
270
- readCapacityUnits?: number;
270
+ readCapacityUnits?: number | undefined;
271
271
  /**
272
272
  * <p>The throughput capacity specified for <code>write</code> operations defined in <code>write capacity units</code>
273
273
  * <code>(WCUs)</code>.</p>
274
274
  * @public
275
275
  */
276
- writeCapacityUnits?: number;
276
+ writeCapacityUnits?: number | undefined;
277
277
  /**
278
278
  * <p>The timestamp of the last operation that changed the provisioned throughput capacity of a table.</p>
279
279
  * @public
280
280
  */
281
- lastUpdateToPayPerRequestTimestamp?: Date;
281
+ lastUpdateToPayPerRequestTimestamp?: Date | undefined;
282
282
  }
283
283
  /**
284
284
  * @public
@@ -417,7 +417,7 @@ export interface ReplicationSpecification {
417
417
  * </p>
418
418
  * @public
419
419
  */
420
- regionList?: string[];
420
+ regionList?: string[] | undefined;
421
421
  }
422
422
  /**
423
423
  * <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>
@@ -456,7 +456,7 @@ export interface CreateKeyspaceRequest {
456
456
  * Guide</i>.</p>
457
457
  * @public
458
458
  */
459
- tags?: Tag[];
459
+ tags?: Tag[] | undefined;
460
460
  /**
461
461
  * <p>
462
462
  * The replication specification of the keyspace includes:</p>
@@ -476,7 +476,7 @@ export interface CreateKeyspaceRequest {
476
476
  * </ul>
477
477
  * @public
478
478
  */
479
- replicationSpecification?: ReplicationSpecification;
479
+ replicationSpecification?: ReplicationSpecification | undefined;
480
480
  }
481
481
  /**
482
482
  * @public
@@ -579,7 +579,7 @@ export interface EncryptionSpecification {
579
579
  * <p>The Amazon Resource Name (ARN) of the customer managed KMS key, for example <code>kms_key_identifier:ARN</code>.</p>
580
580
  * @public
581
581
  */
582
- kmsKeyIdentifier?: string;
582
+ kmsKeyIdentifier?: string | undefined;
583
583
  }
584
584
  /**
585
585
  * @public
@@ -647,13 +647,13 @@ export interface ReplicaSpecification {
647
647
  * <p>The provisioned read capacity units for the multi-Region table in the specified Amazon Web Services Region.</p>
648
648
  * @public
649
649
  */
650
- readCapacityUnits?: number;
650
+ readCapacityUnits?: number | undefined;
651
651
  /**
652
652
  * <p>The read capacity auto scaling settings for the multi-Region
653
653
  * table in the specified Amazon Web Services Region.</p>
654
654
  * @public
655
655
  */
656
- readCapacityAutoScaling?: AutoScalingSettings;
656
+ readCapacityAutoScaling?: AutoScalingSettings | undefined;
657
657
  }
658
658
  /**
659
659
  * <p>The partition key portion of the primary key is required
@@ -698,12 +698,12 @@ export interface SchemaDefinition {
698
698
  * <p>The columns that are part of the clustering key of the table.</p>
699
699
  * @public
700
700
  */
701
- clusteringKeys?: ClusteringKey[];
701
+ clusteringKeys?: ClusteringKey[] | undefined;
702
702
  /**
703
703
  * <p>The columns that have been defined as <code>STATIC</code>. Static columns store values that are shared by all rows in the same partition.</p>
704
704
  * @public
705
705
  */
706
- staticColumns?: StaticColumn[];
706
+ staticColumns?: StaticColumn[] | undefined;
707
707
  }
708
708
  /**
709
709
  * @public
@@ -809,7 +809,7 @@ export interface CreateTableRequest {
809
809
  * <p>This parameter allows to enter a description of the table.</p>
810
810
  * @public
811
811
  */
812
- comment?: Comment;
812
+ comment?: Comment | undefined;
813
813
  /**
814
814
  * <p>Specifies the read/write throughput capacity mode for the table. The options are:</p>
815
815
  * <ul>
@@ -829,7 +829,7 @@ export interface CreateTableRequest {
829
829
  * Guide</i>.</p>
830
830
  * @public
831
831
  */
832
- capacitySpecification?: CapacitySpecification;
832
+ capacitySpecification?: CapacitySpecification | undefined;
833
833
  /**
834
834
  * <p>Specifies how the encryption key for encryption at rest is managed for the table.
835
835
  * You can choose one of the following KMS key (KMS key):</p>
@@ -850,7 +850,7 @@ export interface CreateTableRequest {
850
850
  * Guide</i>.</p>
851
851
  * @public
852
852
  */
853
- encryptionSpecification?: EncryptionSpecification;
853
+ encryptionSpecification?: EncryptionSpecification | undefined;
854
854
  /**
855
855
  * <p>Specifies if <code>pointInTimeRecovery</code> is enabled or disabled for the
856
856
  * table. The options are:</p>
@@ -872,7 +872,7 @@ export interface CreateTableRequest {
872
872
  * Guide</i>.</p>
873
873
  * @public
874
874
  */
875
- pointInTimeRecovery?: PointInTimeRecovery;
875
+ pointInTimeRecovery?: PointInTimeRecovery | undefined;
876
876
  /**
877
877
  * <p>Enables Time to Live custom settings for the
878
878
  * table. The options are:</p>
@@ -895,7 +895,7 @@ export interface CreateTableRequest {
895
895
  * Guide</i>.</p>
896
896
  * @public
897
897
  */
898
- ttl?: TimeToLive;
898
+ ttl?: TimeToLive | undefined;
899
899
  /**
900
900
  * <p>The default Time to Live setting in seconds for the
901
901
  * table.</p>
@@ -903,7 +903,7 @@ export interface CreateTableRequest {
903
903
  * Guide</i>.</p>
904
904
  * @public
905
905
  */
906
- defaultTimeToLive?: number;
906
+ defaultTimeToLive?: number | undefined;
907
907
  /**
908
908
  * <p>A list of key-value pair tags to be
909
909
  * attached to the resource. </p>
@@ -911,7 +911,7 @@ export interface CreateTableRequest {
911
911
  * Guide</i>.</p>
912
912
  * @public
913
913
  */
914
- tags?: Tag[];
914
+ tags?: Tag[] | undefined;
915
915
  /**
916
916
  * <p>
917
917
  * Enables client-side timestamps for the table. By default, the setting is disabled. You can enable
@@ -926,7 +926,7 @@ export interface CreateTableRequest {
926
926
  * <p>Once client-side timestamps are enabled for a table, this setting cannot be disabled.</p>
927
927
  * @public
928
928
  */
929
- clientSideTimestamps?: ClientSideTimestamps;
929
+ clientSideTimestamps?: ClientSideTimestamps | undefined;
930
930
  /**
931
931
  * <p>The optional auto scaling settings for a table in provisioned capacity mode. Specifies if the service can manage throughput capacity
932
932
  * automatically on your behalf.</p>
@@ -936,7 +936,7 @@ export interface CreateTableRequest {
936
936
  * <p>By default, auto scaling is disabled for a table. </p>
937
937
  * @public
938
938
  */
939
- autoScalingSpecification?: AutoScalingSpecification;
939
+ autoScalingSpecification?: AutoScalingSpecification | undefined;
940
940
  /**
941
941
  * <p>The optional Amazon Web Services Region specific settings of a multi-Region table.
942
942
  * These settings overwrite the general settings of the table for the specified Region. </p>
@@ -959,7 +959,7 @@ export interface CreateTableRequest {
959
959
  * </ul>
960
960
  * @public
961
961
  */
962
- replicaSpecifications?: ReplicaSpecification[];
962
+ replicaSpecifications?: ReplicaSpecification[] | undefined;
963
963
  }
964
964
  /**
965
965
  * @public
@@ -983,7 +983,7 @@ export declare class ResourceNotFoundException extends __BaseException {
983
983
  * <p>The unique identifier in the format of Amazon Resource Name (ARN) for the resource could't be found.</p>
984
984
  * @public
985
985
  */
986
- resourceArn?: string;
986
+ resourceArn?: string | undefined;
987
987
  /**
988
988
  * @internal
989
989
  */
@@ -1178,7 +1178,7 @@ export interface GetKeyspaceResponse {
1178
1178
  * </p>
1179
1179
  * @public
1180
1180
  */
1181
- replicationRegions?: string[];
1181
+ replicationRegions?: string[] | undefined;
1182
1182
  }
1183
1183
  /**
1184
1184
  * @public
@@ -1209,7 +1209,7 @@ export interface PointInTimeRecoverySummary {
1209
1209
  * <p>Specifies the earliest possible restore point of the table in ISO 8601 format.</p>
1210
1210
  * @public
1211
1211
  */
1212
- earliestRestorableTimestamp?: Date;
1212
+ earliestRestorableTimestamp?: Date | undefined;
1213
1213
  }
1214
1214
  /**
1215
1215
  * @public
@@ -1241,12 +1241,12 @@ export interface ReplicaSpecificationSummary {
1241
1241
  * <p>The Amazon Web Services Region.</p>
1242
1242
  * @public
1243
1243
  */
1244
- region?: string;
1244
+ region?: string | undefined;
1245
1245
  /**
1246
1246
  * <p>The status of the multi-Region table in the specified Amazon Web Services Region.</p>
1247
1247
  * @public
1248
1248
  */
1249
- status?: TableStatus;
1249
+ status?: TableStatus | undefined;
1250
1250
  /**
1251
1251
  * <p>The read/write throughput capacity mode for a table. The options are:</p>
1252
1252
  * <ul>
@@ -1263,7 +1263,7 @@ export interface ReplicaSpecificationSummary {
1263
1263
  * Guide</i>.</p>
1264
1264
  * @public
1265
1265
  */
1266
- capacitySpecification?: CapacitySpecificationSummary;
1266
+ capacitySpecification?: CapacitySpecificationSummary | undefined;
1267
1267
  }
1268
1268
  /**
1269
1269
  * @public
@@ -1288,17 +1288,17 @@ export interface GetTableResponse {
1288
1288
  * <p>The creation timestamp of the specified table.</p>
1289
1289
  * @public
1290
1290
  */
1291
- creationTimestamp?: Date;
1291
+ creationTimestamp?: Date | undefined;
1292
1292
  /**
1293
1293
  * <p>The current status of the specified table.</p>
1294
1294
  * @public
1295
1295
  */
1296
- status?: TableStatus;
1296
+ status?: TableStatus | undefined;
1297
1297
  /**
1298
1298
  * <p>The schema definition of the specified table.</p>
1299
1299
  * @public
1300
1300
  */
1301
- schemaDefinition?: SchemaDefinition;
1301
+ schemaDefinition?: SchemaDefinition | undefined;
1302
1302
  /**
1303
1303
  * <p>The read/write throughput capacity mode for a table. The options are:</p>
1304
1304
  * <ul>
@@ -1315,43 +1315,43 @@ export interface GetTableResponse {
1315
1315
  * </ul>
1316
1316
  * @public
1317
1317
  */
1318
- capacitySpecification?: CapacitySpecificationSummary;
1318
+ capacitySpecification?: CapacitySpecificationSummary | undefined;
1319
1319
  /**
1320
1320
  * <p>The encryption settings of the specified table.</p>
1321
1321
  * @public
1322
1322
  */
1323
- encryptionSpecification?: EncryptionSpecification;
1323
+ encryptionSpecification?: EncryptionSpecification | undefined;
1324
1324
  /**
1325
1325
  * <p>The point-in-time recovery status of the specified table.</p>
1326
1326
  * @public
1327
1327
  */
1328
- pointInTimeRecovery?: PointInTimeRecoverySummary;
1328
+ pointInTimeRecovery?: PointInTimeRecoverySummary | undefined;
1329
1329
  /**
1330
1330
  * <p>The custom Time to Live settings of the specified table.</p>
1331
1331
  * @public
1332
1332
  */
1333
- ttl?: TimeToLive;
1333
+ ttl?: TimeToLive | undefined;
1334
1334
  /**
1335
1335
  * <p>The default Time to Live settings in seconds of the specified table.</p>
1336
1336
  * @public
1337
1337
  */
1338
- defaultTimeToLive?: number;
1338
+ defaultTimeToLive?: number | undefined;
1339
1339
  /**
1340
1340
  * <p>The the description of the specified table.</p>
1341
1341
  * @public
1342
1342
  */
1343
- comment?: Comment;
1343
+ comment?: Comment | undefined;
1344
1344
  /**
1345
1345
  * <p>
1346
1346
  * The client-side timestamps setting of the table.</p>
1347
1347
  * @public
1348
1348
  */
1349
- clientSideTimestamps?: ClientSideTimestamps;
1349
+ clientSideTimestamps?: ClientSideTimestamps | undefined;
1350
1350
  /**
1351
1351
  * <p>Returns the Amazon Web Services Region specific settings of all Regions a multi-Region table is replicated in.</p>
1352
1352
  * @public
1353
1353
  */
1354
- replicaSpecifications?: ReplicaSpecificationSummary[];
1354
+ replicaSpecifications?: ReplicaSpecificationSummary[] | undefined;
1355
1355
  }
1356
1356
  /**
1357
1357
  * @public
@@ -1377,12 +1377,12 @@ export interface ReplicaAutoScalingSpecification {
1377
1377
  * <p>The Amazon Web Services Region.</p>
1378
1378
  * @public
1379
1379
  */
1380
- region?: string;
1380
+ region?: string | undefined;
1381
1381
  /**
1382
1382
  * <p>The auto scaling settings for a multi-Region table in the specified Amazon Web Services Region.</p>
1383
1383
  * @public
1384
1384
  */
1385
- autoScalingSpecification?: AutoScalingSpecification;
1385
+ autoScalingSpecification?: AutoScalingSpecification | undefined;
1386
1386
  }
1387
1387
  /**
1388
1388
  * @public
@@ -1407,12 +1407,12 @@ export interface GetTableAutoScalingSettingsResponse {
1407
1407
  * <p>The auto scaling settings of the table.</p>
1408
1408
  * @public
1409
1409
  */
1410
- autoScalingSpecification?: AutoScalingSpecification;
1410
+ autoScalingSpecification?: AutoScalingSpecification | undefined;
1411
1411
  /**
1412
1412
  * <p>The Amazon Web Services Region specific settings of a multi-Region table. Returns the settings for all Regions the table is replicated in.</p>
1413
1413
  * @public
1414
1414
  */
1415
- replicaSpecifications?: ReplicaAutoScalingSpecification[];
1415
+ replicaSpecifications?: ReplicaAutoScalingSpecification[] | undefined;
1416
1416
  }
1417
1417
  /**
1418
1418
  * @public
@@ -1471,42 +1471,42 @@ export interface GetTypeResponse {
1471
1471
  * </p>
1472
1472
  * @public
1473
1473
  */
1474
- fieldDefinitions?: FieldDefinition[];
1474
+ fieldDefinitions?: FieldDefinition[] | undefined;
1475
1475
  /**
1476
1476
  * <p>
1477
1477
  * The timestamp that shows when this type was last modified.
1478
1478
  * </p>
1479
1479
  * @public
1480
1480
  */
1481
- lastModifiedTimestamp?: Date;
1481
+ lastModifiedTimestamp?: Date | undefined;
1482
1482
  /**
1483
1483
  * <p>
1484
1484
  * The status of this type.
1485
1485
  * </p>
1486
1486
  * @public
1487
1487
  */
1488
- status?: TypeStatus;
1488
+ status?: TypeStatus | undefined;
1489
1489
  /**
1490
1490
  * <p>
1491
1491
  * The tables that use this type.
1492
1492
  * </p>
1493
1493
  * @public
1494
1494
  */
1495
- directReferringTables?: string[];
1495
+ directReferringTables?: string[] | undefined;
1496
1496
  /**
1497
1497
  * <p>
1498
1498
  * The types that use this type.
1499
1499
  * </p>
1500
1500
  * @public
1501
1501
  */
1502
- directParentTypes?: string[];
1502
+ directParentTypes?: string[] | undefined;
1503
1503
  /**
1504
1504
  * <p>
1505
1505
  * The level of nesting implemented for this type.
1506
1506
  * </p>
1507
1507
  * @public
1508
1508
  */
1509
- maxNestingDepth?: number;
1509
+ maxNestingDepth?: number | undefined;
1510
1510
  /**
1511
1511
  * <p>
1512
1512
  * The unique identifier of the keyspace that contains this type in the format of an Amazon Resource Name (ARN).
@@ -1523,14 +1523,14 @@ export interface ListKeyspacesRequest {
1523
1523
  * <p>The pagination token. To resume pagination, provide the <code>NextToken</code> value as argument of a subsequent API invocation.</p>
1524
1524
  * @public
1525
1525
  */
1526
- nextToken?: string;
1526
+ nextToken?: string | undefined;
1527
1527
  /**
1528
1528
  * <p>The total number of keyspaces to return in the output. If the total number of keyspaces available
1529
1529
  * is more than the value specified, a <code>NextToken</code> is provided in the output. To resume pagination,
1530
1530
  * provide the <code>NextToken</code> value as an argument of a subsequent API invocation.</p>
1531
1531
  * @public
1532
1532
  */
1533
- maxResults?: number;
1533
+ maxResults?: number | undefined;
1534
1534
  }
1535
1535
  /**
1536
1536
  * <p>Represents the properties of a keyspace.</p>
@@ -1561,7 +1561,7 @@ export interface KeyspaceSummary {
1561
1561
  * </p>
1562
1562
  * @public
1563
1563
  */
1564
- replicationRegions?: string[];
1564
+ replicationRegions?: string[] | undefined;
1565
1565
  }
1566
1566
  /**
1567
1567
  * @public
@@ -1571,7 +1571,7 @@ export interface ListKeyspacesResponse {
1571
1571
  * <p>A token to specify where to start paginating. This is the <code>NextToken</code> from a previously truncated response.</p>
1572
1572
  * @public
1573
1573
  */
1574
- nextToken?: string;
1574
+ nextToken?: string | undefined;
1575
1575
  /**
1576
1576
  * <p>A list of keyspaces.</p>
1577
1577
  * @public
@@ -1586,14 +1586,14 @@ export interface ListTablesRequest {
1586
1586
  * <p>The pagination token. To resume pagination, provide the <code>NextToken</code> value as an argument of a subsequent API invocation.</p>
1587
1587
  * @public
1588
1588
  */
1589
- nextToken?: string;
1589
+ nextToken?: string | undefined;
1590
1590
  /**
1591
1591
  * <p>The total number of tables to return in the output. If the total number of tables available
1592
1592
  * is more than the value specified, a <code>NextToken</code> is provided in the output. To resume pagination,
1593
1593
  * provide the <code>NextToken</code> value as an argument of a subsequent API invocation.</p>
1594
1594
  * @public
1595
1595
  */
1596
- maxResults?: number;
1596
+ maxResults?: number | undefined;
1597
1597
  /**
1598
1598
  * <p>The name of the keyspace.</p>
1599
1599
  * @public
@@ -1629,12 +1629,12 @@ export interface ListTablesResponse {
1629
1629
  * <p>A token to specify where to start paginating. This is the <code>NextToken</code> from a previously truncated response.</p>
1630
1630
  * @public
1631
1631
  */
1632
- nextToken?: string;
1632
+ nextToken?: string | undefined;
1633
1633
  /**
1634
1634
  * <p>A list of tables.</p>
1635
1635
  * @public
1636
1636
  */
1637
- tables?: TableSummary[];
1637
+ tables?: TableSummary[] | undefined;
1638
1638
  }
1639
1639
  /**
1640
1640
  * @public
@@ -1649,14 +1649,14 @@ export interface ListTagsForResourceRequest {
1649
1649
  * <p>The pagination token. To resume pagination, provide the <code>NextToken</code> value as argument of a subsequent API invocation.</p>
1650
1650
  * @public
1651
1651
  */
1652
- nextToken?: string;
1652
+ nextToken?: string | undefined;
1653
1653
  /**
1654
1654
  * <p>The total number of tags to return in the output. If the total number of tags available
1655
1655
  * is more than the value specified, a <code>NextToken</code> is provided in the output. To resume pagination,
1656
1656
  * provide the <code>NextToken</code> value as an argument of a subsequent API invocation.</p>
1657
1657
  * @public
1658
1658
  */
1659
- maxResults?: number;
1659
+ maxResults?: number | undefined;
1660
1660
  }
1661
1661
  /**
1662
1662
  * @public
@@ -1666,12 +1666,12 @@ export interface ListTagsForResourceResponse {
1666
1666
  * <p>A token to specify where to start paginating. This is the <code>NextToken</code> from a previously truncated response.</p>
1667
1667
  * @public
1668
1668
  */
1669
- nextToken?: string;
1669
+ nextToken?: string | undefined;
1670
1670
  /**
1671
1671
  * <p>A list of tags.</p>
1672
1672
  * @public
1673
1673
  */
1674
- tags?: Tag[];
1674
+ tags?: Tag[] | undefined;
1675
1675
  }
1676
1676
  /**
1677
1677
  * @public
@@ -1683,7 +1683,7 @@ export interface ListTypesRequest {
1683
1683
  * </p>
1684
1684
  * @public
1685
1685
  */
1686
- nextToken?: string;
1686
+ nextToken?: string | undefined;
1687
1687
  /**
1688
1688
  * <p>
1689
1689
  * The total number of types to return in the output. If the total number of types available is more than the value specified,
@@ -1692,7 +1692,7 @@ export interface ListTypesRequest {
1692
1692
  * </p>
1693
1693
  * @public
1694
1694
  */
1695
- maxResults?: number;
1695
+ maxResults?: number | undefined;
1696
1696
  /**
1697
1697
  * <p>
1698
1698
  * The name of the keyspace that contains the listed types.
@@ -1711,7 +1711,7 @@ export interface ListTypesResponse {
1711
1711
  * </p>
1712
1712
  * @public
1713
1713
  */
1714
- nextToken?: string;
1714
+ nextToken?: string | undefined;
1715
1715
  /**
1716
1716
  * <p>
1717
1717
  * The list of types contained in the specified keyspace.
@@ -1748,7 +1748,7 @@ export interface RestoreTableRequest {
1748
1748
  * <p>The restore timestamp in ISO 8601 format.</p>
1749
1749
  * @public
1750
1750
  */
1751
- restoreTimestamp?: Date;
1751
+ restoreTimestamp?: Date | undefined;
1752
1752
  /**
1753
1753
  * <p>Specifies the read/write throughput capacity mode for the target table. The options are:</p>
1754
1754
  * <ul>
@@ -1768,7 +1768,7 @@ export interface RestoreTableRequest {
1768
1768
  * Guide</i>.</p>
1769
1769
  * @public
1770
1770
  */
1771
- capacitySpecificationOverride?: CapacitySpecification;
1771
+ capacitySpecificationOverride?: CapacitySpecification | undefined;
1772
1772
  /**
1773
1773
  * <p>Specifies the encryption settings for the target table. You can choose one of the following KMS key (KMS key):</p>
1774
1774
  * <ul>
@@ -1788,7 +1788,7 @@ export interface RestoreTableRequest {
1788
1788
  * Guide</i>.</p>
1789
1789
  * @public
1790
1790
  */
1791
- encryptionSpecificationOverride?: EncryptionSpecification;
1791
+ encryptionSpecificationOverride?: EncryptionSpecification | undefined;
1792
1792
  /**
1793
1793
  * <p>Specifies the <code>pointInTimeRecovery</code> settings for the target
1794
1794
  * table. The options are:</p>
@@ -1809,7 +1809,7 @@ export interface RestoreTableRequest {
1809
1809
  * Guide</i>.</p>
1810
1810
  * @public
1811
1811
  */
1812
- pointInTimeRecoveryOverride?: PointInTimeRecovery;
1812
+ pointInTimeRecoveryOverride?: PointInTimeRecovery | undefined;
1813
1813
  /**
1814
1814
  * <p>A list of key-value pair tags to be
1815
1815
  * attached to the restored table. </p>
@@ -1817,7 +1817,7 @@ export interface RestoreTableRequest {
1817
1817
  * Guide</i>.</p>
1818
1818
  * @public
1819
1819
  */
1820
- tagsOverride?: Tag[];
1820
+ tagsOverride?: Tag[] | undefined;
1821
1821
  /**
1822
1822
  * <p>The optional auto scaling settings for the restored table in provisioned capacity mode.
1823
1823
  * Specifies if the service can manage throughput capacity of a provisioned table
@@ -1828,12 +1828,12 @@ export interface RestoreTableRequest {
1828
1828
  * Guide</i>.</p>
1829
1829
  * @public
1830
1830
  */
1831
- autoScalingSpecification?: AutoScalingSpecification;
1831
+ autoScalingSpecification?: AutoScalingSpecification | undefined;
1832
1832
  /**
1833
1833
  * <p>The optional Region specific settings of a multi-Regional table.</p>
1834
1834
  * @public
1835
1835
  */
1836
- replicaSpecifications?: ReplicaSpecification[];
1836
+ replicaSpecifications?: ReplicaSpecification[] | undefined;
1837
1837
  }
1838
1838
  /**
1839
1839
  * @public
@@ -1916,7 +1916,7 @@ export interface UpdateTableRequest {
1916
1916
  * </ul>
1917
1917
  * @public
1918
1918
  */
1919
- addColumns?: ColumnDefinition[];
1919
+ addColumns?: ColumnDefinition[] | undefined;
1920
1920
  /**
1921
1921
  * <p>Modifies the read/write throughput capacity mode for the table. The options are:</p>
1922
1922
  * <ul>
@@ -1935,7 +1935,7 @@ export interface UpdateTableRequest {
1935
1935
  * Guide</i>.</p>
1936
1936
  * @public
1937
1937
  */
1938
- capacitySpecification?: CapacitySpecification;
1938
+ capacitySpecification?: CapacitySpecification | undefined;
1939
1939
  /**
1940
1940
  * <p>Modifies the encryption settings of the table. You can choose one of the following KMS key (KMS key):</p>
1941
1941
  * <ul>
@@ -1955,7 +1955,7 @@ export interface UpdateTableRequest {
1955
1955
  * Guide</i>.</p>
1956
1956
  * @public
1957
1957
  */
1958
- encryptionSpecification?: EncryptionSpecification;
1958
+ encryptionSpecification?: EncryptionSpecification | undefined;
1959
1959
  /**
1960
1960
  * <p>Modifies the <code>pointInTimeRecovery</code> settings of the table. The options are:</p>
1961
1961
  * <ul>
@@ -1975,7 +1975,7 @@ export interface UpdateTableRequest {
1975
1975
  * Guide</i>.</p>
1976
1976
  * @public
1977
1977
  */
1978
- pointInTimeRecovery?: PointInTimeRecovery;
1978
+ pointInTimeRecovery?: PointInTimeRecovery | undefined;
1979
1979
  /**
1980
1980
  * <p>Modifies Time to Live custom settings for the table. The options are:</p>
1981
1981
  * <ul>
@@ -1997,14 +1997,14 @@ export interface UpdateTableRequest {
1997
1997
  * Guide</i>.</p>
1998
1998
  * @public
1999
1999
  */
2000
- ttl?: TimeToLive;
2000
+ ttl?: TimeToLive | undefined;
2001
2001
  /**
2002
2002
  * <p>The default Time to Live setting in seconds for the table.</p>
2003
2003
  * <p>For more information, see <a href="https://docs.aws.amazon.com/keyspaces/latest/devguide/TTL-how-it-works.html#ttl-howitworks_default_ttl">Setting the default TTL value for a table</a> in the <i>Amazon Keyspaces Developer
2004
2004
  * Guide</i>.</p>
2005
2005
  * @public
2006
2006
  */
2007
- defaultTimeToLive?: number;
2007
+ defaultTimeToLive?: number | undefined;
2008
2008
  /**
2009
2009
  * <p>Enables client-side timestamps for the table. By default, the setting is disabled. You can enable
2010
2010
  * client-side timestamps with the following option:</p>
@@ -2018,7 +2018,7 @@ export interface UpdateTableRequest {
2018
2018
  * <p>Once client-side timestamps are enabled for a table, this setting cannot be disabled.</p>
2019
2019
  * @public
2020
2020
  */
2021
- clientSideTimestamps?: ClientSideTimestamps;
2021
+ clientSideTimestamps?: ClientSideTimestamps | undefined;
2022
2022
  /**
2023
2023
  * <p>The optional auto scaling settings to update for a table in provisioned capacity mode.
2024
2024
  * Specifies if the service can manage throughput capacity of a provisioned table
@@ -2031,12 +2031,12 @@ export interface UpdateTableRequest {
2031
2031
  * Guide</i>.</p>
2032
2032
  * @public
2033
2033
  */
2034
- autoScalingSpecification?: AutoScalingSpecification;
2034
+ autoScalingSpecification?: AutoScalingSpecification | undefined;
2035
2035
  /**
2036
2036
  * <p>The Region specific settings of a multi-Regional table.</p>
2037
2037
  * @public
2038
2038
  */
2039
- replicaSpecifications?: ReplicaSpecification[];
2039
+ replicaSpecifications?: ReplicaSpecification[] | undefined;
2040
2040
  }
2041
2041
  /**
2042
2042
  * @public
@@ -8,23 +8,25 @@ export declare class AccessDeniedException extends __BaseException {
8
8
  );
9
9
  }
10
10
  export interface TargetTrackingScalingPolicyConfiguration {
11
- disableScaleIn?: boolean;
12
- scaleInCooldown?: number;
13
- scaleOutCooldown?: number;
11
+ disableScaleIn?: boolean | undefined;
12
+ scaleInCooldown?: number | undefined;
13
+ scaleOutCooldown?: number | undefined;
14
14
  targetValue: number | undefined;
15
15
  }
16
16
  export interface AutoScalingPolicy {
17
- targetTrackingScalingPolicyConfiguration?: TargetTrackingScalingPolicyConfiguration;
17
+ targetTrackingScalingPolicyConfiguration?:
18
+ | TargetTrackingScalingPolicyConfiguration
19
+ | undefined;
18
20
  }
19
21
  export interface AutoScalingSettings {
20
- autoScalingDisabled?: boolean;
21
- minimumUnits?: number;
22
- maximumUnits?: number;
23
- scalingPolicy?: AutoScalingPolicy;
22
+ autoScalingDisabled?: boolean | undefined;
23
+ minimumUnits?: number | undefined;
24
+ maximumUnits?: number | undefined;
25
+ scalingPolicy?: AutoScalingPolicy | undefined;
24
26
  }
25
27
  export interface AutoScalingSpecification {
26
- writeCapacityAutoScaling?: AutoScalingSettings;
27
- readCapacityAutoScaling?: AutoScalingSettings;
28
+ writeCapacityAutoScaling?: AutoScalingSettings | undefined;
29
+ readCapacityAutoScaling?: AutoScalingSettings | undefined;
28
30
  }
29
31
  export declare const ThroughputMode: {
30
32
  readonly PAY_PER_REQUEST: "PAY_PER_REQUEST";
@@ -34,14 +36,14 @@ export type ThroughputMode =
34
36
  (typeof ThroughputMode)[keyof typeof ThroughputMode];
35
37
  export interface CapacitySpecification {
36
38
  throughputMode: ThroughputMode | undefined;
37
- readCapacityUnits?: number;
38
- writeCapacityUnits?: number;
39
+ readCapacityUnits?: number | undefined;
40
+ writeCapacityUnits?: number | undefined;
39
41
  }
40
42
  export interface CapacitySpecificationSummary {
41
43
  throughputMode: ThroughputMode | undefined;
42
- readCapacityUnits?: number;
43
- writeCapacityUnits?: number;
44
- lastUpdateToPayPerRequestTimestamp?: Date;
44
+ readCapacityUnits?: number | undefined;
45
+ writeCapacityUnits?: number | undefined;
46
+ lastUpdateToPayPerRequestTimestamp?: Date | undefined;
45
47
  }
46
48
  export declare const ClientSideTimestampsStatus: {
47
49
  readonly ENABLED: "ENABLED";
@@ -79,7 +81,7 @@ export declare const Rs: {
79
81
  export type Rs = (typeof Rs)[keyof typeof Rs];
80
82
  export interface ReplicationSpecification {
81
83
  replicationStrategy: Rs | undefined;
82
- regionList?: string[];
84
+ regionList?: string[] | undefined;
83
85
  }
84
86
  export interface Tag {
85
87
  key: string | undefined;
@@ -87,8 +89,8 @@ export interface Tag {
87
89
  }
88
90
  export interface CreateKeyspaceRequest {
89
91
  keyspaceName: string | undefined;
90
- tags?: Tag[];
91
- replicationSpecification?: ReplicationSpecification;
92
+ tags?: Tag[] | undefined;
93
+ replicationSpecification?: ReplicationSpecification | undefined;
92
94
  }
93
95
  export interface CreateKeyspaceResponse {
94
96
  resourceArn: string | undefined;
@@ -122,7 +124,7 @@ export type EncryptionType =
122
124
  (typeof EncryptionType)[keyof typeof EncryptionType];
123
125
  export interface EncryptionSpecification {
124
126
  type: EncryptionType | undefined;
125
- kmsKeyIdentifier?: string;
127
+ kmsKeyIdentifier?: string | undefined;
126
128
  }
127
129
  export declare const PointInTimeRecoveryStatus: {
128
130
  readonly DISABLED: "DISABLED";
@@ -135,8 +137,8 @@ export interface PointInTimeRecovery {
135
137
  }
136
138
  export interface ReplicaSpecification {
137
139
  region: string | undefined;
138
- readCapacityUnits?: number;
139
- readCapacityAutoScaling?: AutoScalingSettings;
140
+ readCapacityUnits?: number | undefined;
141
+ readCapacityAutoScaling?: AutoScalingSettings | undefined;
140
142
  }
141
143
  export interface PartitionKey {
142
144
  name: string | undefined;
@@ -147,8 +149,8 @@ export interface StaticColumn {
147
149
  export interface SchemaDefinition {
148
150
  allColumns: ColumnDefinition[] | undefined;
149
151
  partitionKeys: PartitionKey[] | undefined;
150
- clusteringKeys?: ClusteringKey[];
151
- staticColumns?: StaticColumn[];
152
+ clusteringKeys?: ClusteringKey[] | undefined;
153
+ staticColumns?: StaticColumn[] | undefined;
152
154
  }
153
155
  export declare const TimeToLiveStatus: {
154
156
  readonly ENABLED: "ENABLED";
@@ -162,16 +164,16 @@ export interface CreateTableRequest {
162
164
  keyspaceName: string | undefined;
163
165
  tableName: string | undefined;
164
166
  schemaDefinition: SchemaDefinition | undefined;
165
- comment?: Comment;
166
- capacitySpecification?: CapacitySpecification;
167
- encryptionSpecification?: EncryptionSpecification;
168
- pointInTimeRecovery?: PointInTimeRecovery;
169
- ttl?: TimeToLive;
170
- defaultTimeToLive?: number;
171
- tags?: Tag[];
172
- clientSideTimestamps?: ClientSideTimestamps;
173
- autoScalingSpecification?: AutoScalingSpecification;
174
- replicaSpecifications?: ReplicaSpecification[];
167
+ comment?: Comment | undefined;
168
+ capacitySpecification?: CapacitySpecification | undefined;
169
+ encryptionSpecification?: EncryptionSpecification | undefined;
170
+ pointInTimeRecovery?: PointInTimeRecovery | undefined;
171
+ ttl?: TimeToLive | undefined;
172
+ defaultTimeToLive?: number | undefined;
173
+ tags?: Tag[] | undefined;
174
+ clientSideTimestamps?: ClientSideTimestamps | undefined;
175
+ autoScalingSpecification?: AutoScalingSpecification | undefined;
176
+ replicaSpecifications?: ReplicaSpecification[] | undefined;
175
177
  }
176
178
  export interface CreateTableResponse {
177
179
  resourceArn: string | undefined;
@@ -179,7 +181,7 @@ export interface CreateTableResponse {
179
181
  export declare class ResourceNotFoundException extends __BaseException {
180
182
  readonly name: "ResourceNotFoundException";
181
183
  readonly $fault: "client";
182
- resourceArn?: string;
184
+ resourceArn?: string | undefined;
183
185
  constructor(
184
186
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
185
187
  );
@@ -221,7 +223,7 @@ export interface GetKeyspaceResponse {
221
223
  keyspaceName: string | undefined;
222
224
  resourceArn: string | undefined;
223
225
  replicationStrategy: Rs | undefined;
224
- replicationRegions?: string[];
226
+ replicationRegions?: string[] | undefined;
225
227
  }
226
228
  export interface GetTableRequest {
227
229
  keyspaceName: string | undefined;
@@ -229,7 +231,7 @@ export interface GetTableRequest {
229
231
  }
230
232
  export interface PointInTimeRecoverySummary {
231
233
  status: PointInTimeRecoveryStatus | undefined;
232
- earliestRestorableTimestamp?: Date;
234
+ earliestRestorableTimestamp?: Date | undefined;
233
235
  }
234
236
  export declare const TableStatus: {
235
237
  readonly ACTIVE: "ACTIVE";
@@ -242,40 +244,40 @@ export declare const TableStatus: {
242
244
  };
243
245
  export type TableStatus = (typeof TableStatus)[keyof typeof TableStatus];
244
246
  export interface ReplicaSpecificationSummary {
245
- region?: string;
246
- status?: TableStatus;
247
- capacitySpecification?: CapacitySpecificationSummary;
247
+ region?: string | undefined;
248
+ status?: TableStatus | undefined;
249
+ capacitySpecification?: CapacitySpecificationSummary | undefined;
248
250
  }
249
251
  export interface GetTableResponse {
250
252
  keyspaceName: string | undefined;
251
253
  tableName: string | undefined;
252
254
  resourceArn: string | undefined;
253
- creationTimestamp?: Date;
254
- status?: TableStatus;
255
- schemaDefinition?: SchemaDefinition;
256
- capacitySpecification?: CapacitySpecificationSummary;
257
- encryptionSpecification?: EncryptionSpecification;
258
- pointInTimeRecovery?: PointInTimeRecoverySummary;
259
- ttl?: TimeToLive;
260
- defaultTimeToLive?: number;
261
- comment?: Comment;
262
- clientSideTimestamps?: ClientSideTimestamps;
263
- replicaSpecifications?: ReplicaSpecificationSummary[];
255
+ creationTimestamp?: Date | undefined;
256
+ status?: TableStatus | undefined;
257
+ schemaDefinition?: SchemaDefinition | undefined;
258
+ capacitySpecification?: CapacitySpecificationSummary | undefined;
259
+ encryptionSpecification?: EncryptionSpecification | undefined;
260
+ pointInTimeRecovery?: PointInTimeRecoverySummary | undefined;
261
+ ttl?: TimeToLive | undefined;
262
+ defaultTimeToLive?: number | undefined;
263
+ comment?: Comment | undefined;
264
+ clientSideTimestamps?: ClientSideTimestamps | undefined;
265
+ replicaSpecifications?: ReplicaSpecificationSummary[] | undefined;
264
266
  }
265
267
  export interface GetTableAutoScalingSettingsRequest {
266
268
  keyspaceName: string | undefined;
267
269
  tableName: string | undefined;
268
270
  }
269
271
  export interface ReplicaAutoScalingSpecification {
270
- region?: string;
271
- autoScalingSpecification?: AutoScalingSpecification;
272
+ region?: string | undefined;
273
+ autoScalingSpecification?: AutoScalingSpecification | undefined;
272
274
  }
273
275
  export interface GetTableAutoScalingSettingsResponse {
274
276
  keyspaceName: string | undefined;
275
277
  tableName: string | undefined;
276
278
  resourceArn: string | undefined;
277
- autoScalingSpecification?: AutoScalingSpecification;
278
- replicaSpecifications?: ReplicaAutoScalingSpecification[];
279
+ autoScalingSpecification?: AutoScalingSpecification | undefined;
280
+ replicaSpecifications?: ReplicaAutoScalingSpecification[] | undefined;
279
281
  }
280
282
  export interface GetTypeRequest {
281
283
  keyspaceName: string | undefined;
@@ -291,31 +293,31 @@ export type TypeStatus = (typeof TypeStatus)[keyof typeof TypeStatus];
291
293
  export interface GetTypeResponse {
292
294
  keyspaceName: string | undefined;
293
295
  typeName: string | undefined;
294
- fieldDefinitions?: FieldDefinition[];
295
- lastModifiedTimestamp?: Date;
296
- status?: TypeStatus;
297
- directReferringTables?: string[];
298
- directParentTypes?: string[];
299
- maxNestingDepth?: number;
296
+ fieldDefinitions?: FieldDefinition[] | undefined;
297
+ lastModifiedTimestamp?: Date | undefined;
298
+ status?: TypeStatus | undefined;
299
+ directReferringTables?: string[] | undefined;
300
+ directParentTypes?: string[] | undefined;
301
+ maxNestingDepth?: number | undefined;
300
302
  keyspaceArn: string | undefined;
301
303
  }
302
304
  export interface ListKeyspacesRequest {
303
- nextToken?: string;
304
- maxResults?: number;
305
+ nextToken?: string | undefined;
306
+ maxResults?: number | undefined;
305
307
  }
306
308
  export interface KeyspaceSummary {
307
309
  keyspaceName: string | undefined;
308
310
  resourceArn: string | undefined;
309
311
  replicationStrategy: Rs | undefined;
310
- replicationRegions?: string[];
312
+ replicationRegions?: string[] | undefined;
311
313
  }
312
314
  export interface ListKeyspacesResponse {
313
- nextToken?: string;
315
+ nextToken?: string | undefined;
314
316
  keyspaces: KeyspaceSummary[] | undefined;
315
317
  }
316
318
  export interface ListTablesRequest {
317
- nextToken?: string;
318
- maxResults?: number;
319
+ nextToken?: string | undefined;
320
+ maxResults?: number | undefined;
319
321
  keyspaceName: string | undefined;
320
322
  }
321
323
  export interface TableSummary {
@@ -324,25 +326,25 @@ export interface TableSummary {
324
326
  resourceArn: string | undefined;
325
327
  }
326
328
  export interface ListTablesResponse {
327
- nextToken?: string;
328
- tables?: TableSummary[];
329
+ nextToken?: string | undefined;
330
+ tables?: TableSummary[] | undefined;
329
331
  }
330
332
  export interface ListTagsForResourceRequest {
331
333
  resourceArn: string | undefined;
332
- nextToken?: string;
333
- maxResults?: number;
334
+ nextToken?: string | undefined;
335
+ maxResults?: number | undefined;
334
336
  }
335
337
  export interface ListTagsForResourceResponse {
336
- nextToken?: string;
337
- tags?: Tag[];
338
+ nextToken?: string | undefined;
339
+ tags?: Tag[] | undefined;
338
340
  }
339
341
  export interface ListTypesRequest {
340
- nextToken?: string;
341
- maxResults?: number;
342
+ nextToken?: string | undefined;
343
+ maxResults?: number | undefined;
342
344
  keyspaceName: string | undefined;
343
345
  }
344
346
  export interface ListTypesResponse {
345
- nextToken?: string;
347
+ nextToken?: string | undefined;
346
348
  types: string[] | undefined;
347
349
  }
348
350
  export interface RestoreTableRequest {
@@ -350,13 +352,13 @@ export interface RestoreTableRequest {
350
352
  sourceTableName: string | undefined;
351
353
  targetKeyspaceName: string | undefined;
352
354
  targetTableName: string | undefined;
353
- restoreTimestamp?: Date;
354
- capacitySpecificationOverride?: CapacitySpecification;
355
- encryptionSpecificationOverride?: EncryptionSpecification;
356
- pointInTimeRecoveryOverride?: PointInTimeRecovery;
357
- tagsOverride?: Tag[];
358
- autoScalingSpecification?: AutoScalingSpecification;
359
- replicaSpecifications?: ReplicaSpecification[];
355
+ restoreTimestamp?: Date | undefined;
356
+ capacitySpecificationOverride?: CapacitySpecification | undefined;
357
+ encryptionSpecificationOverride?: EncryptionSpecification | undefined;
358
+ pointInTimeRecoveryOverride?: PointInTimeRecovery | undefined;
359
+ tagsOverride?: Tag[] | undefined;
360
+ autoScalingSpecification?: AutoScalingSpecification | undefined;
361
+ replicaSpecifications?: ReplicaSpecification[] | undefined;
360
362
  }
361
363
  export interface RestoreTableResponse {
362
364
  restoredTableARN: string | undefined;
@@ -374,15 +376,15 @@ export interface UntagResourceResponse {}
374
376
  export interface UpdateTableRequest {
375
377
  keyspaceName: string | undefined;
376
378
  tableName: string | undefined;
377
- addColumns?: ColumnDefinition[];
378
- capacitySpecification?: CapacitySpecification;
379
- encryptionSpecification?: EncryptionSpecification;
380
- pointInTimeRecovery?: PointInTimeRecovery;
381
- ttl?: TimeToLive;
382
- defaultTimeToLive?: number;
383
- clientSideTimestamps?: ClientSideTimestamps;
384
- autoScalingSpecification?: AutoScalingSpecification;
385
- replicaSpecifications?: ReplicaSpecification[];
379
+ addColumns?: ColumnDefinition[] | undefined;
380
+ capacitySpecification?: CapacitySpecification | undefined;
381
+ encryptionSpecification?: EncryptionSpecification | undefined;
382
+ pointInTimeRecovery?: PointInTimeRecovery | undefined;
383
+ ttl?: TimeToLive | undefined;
384
+ defaultTimeToLive?: number | undefined;
385
+ clientSideTimestamps?: ClientSideTimestamps | undefined;
386
+ autoScalingSpecification?: AutoScalingSpecification | undefined;
387
+ replicaSpecifications?: ReplicaSpecification[] | undefined;
386
388
  }
387
389
  export interface UpdateTableResponse {
388
390
  resourceArn: string | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-keyspaces",
3
3
  "description": "AWS SDK for JavaScript Keyspaces Client for Node.js, Browser and React Native",
4
- "version": "3.687.0",
4
+ "version": "3.691.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-keyspaces",
@@ -20,19 +20,19 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/client-sso-oidc": "3.687.0",
24
- "@aws-sdk/client-sts": "3.687.0",
25
- "@aws-sdk/core": "3.686.0",
26
- "@aws-sdk/credential-provider-node": "3.687.0",
23
+ "@aws-sdk/client-sso-oidc": "3.691.0",
24
+ "@aws-sdk/client-sts": "3.691.0",
25
+ "@aws-sdk/core": "3.691.0",
26
+ "@aws-sdk/credential-provider-node": "3.691.0",
27
27
  "@aws-sdk/middleware-host-header": "3.686.0",
28
28
  "@aws-sdk/middleware-logger": "3.686.0",
29
29
  "@aws-sdk/middleware-recursion-detection": "3.686.0",
30
- "@aws-sdk/middleware-user-agent": "3.687.0",
30
+ "@aws-sdk/middleware-user-agent": "3.691.0",
31
31
  "@aws-sdk/region-config-resolver": "3.686.0",
32
32
  "@aws-sdk/types": "3.686.0",
33
33
  "@aws-sdk/util-endpoints": "3.686.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.686.0",
35
- "@aws-sdk/util-user-agent-node": "3.687.0",
35
+ "@aws-sdk/util-user-agent-node": "3.691.0",
36
36
  "@smithy/config-resolver": "^3.0.10",
37
37
  "@smithy/core": "^2.5.1",
38
38
  "@smithy/fetch-http-handler": "^4.0.0",