@aws-sdk/client-keyspaces 3.428.0 → 3.430.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.
@@ -59,7 +59,7 @@ export interface CapacitySpecification {
59
59
  * <p>For more information, see <a href="https://docs.aws.amazon.com/keyspaces/latest/devguide/ReadWriteCapacityMode.html">Read/write capacity modes</a> in the <i>Amazon Keyspaces Developer
60
60
  * Guide</i>.</p>
61
61
  */
62
- throughputMode: ThroughputMode | string | undefined;
62
+ throughputMode: ThroughputMode | undefined;
63
63
  /**
64
64
  * @public
65
65
  * <p>The throughput capacity specified for <code>read</code> operations defined in <code>read capacity units</code>
@@ -108,7 +108,7 @@ export interface CapacitySpecificationSummary {
108
108
  * <p>For more information, see <a href="https://docs.aws.amazon.com/keyspaces/latest/devguide/ReadWriteCapacityMode.html">Read/write capacity modes</a> in the <i>Amazon Keyspaces Developer
109
109
  * Guide</i>.</p>
110
110
  */
111
- throughputMode: ThroughputMode | string | undefined;
111
+ throughputMode: ThroughputMode | undefined;
112
112
  /**
113
113
  * @public
114
114
  * <p>The throughput capacity specified for <code>read</code> operations defined in <code>read capacity units</code>
@@ -149,7 +149,7 @@ export interface ClientSideTimestamps {
149
149
  * @public
150
150
  * <p>Shows how to enable client-side timestamps settings for the specified table.</p>
151
151
  */
152
- status: ClientSideTimestampsStatus | string | undefined;
152
+ status: ClientSideTimestampsStatus | undefined;
153
153
  }
154
154
  /**
155
155
  * @public
@@ -177,7 +177,7 @@ export interface ClusteringKey {
177
177
  * @public
178
178
  * <p>Sets the ascendant (<code>ASC</code>) or descendant (<code>DESC</code>) order modifier.</p>
179
179
  */
180
- orderBy: SortOrder | string | undefined;
180
+ orderBy: SortOrder | undefined;
181
181
  }
182
182
  /**
183
183
  * @public
@@ -257,7 +257,7 @@ export interface ReplicationSpecification {
257
257
  * <code>MULTI_REGION</code>.
258
258
  * </p>
259
259
  */
260
- replicationStrategy: Rs | string | undefined;
260
+ replicationStrategy: Rs | undefined;
261
261
  /**
262
262
  * @public
263
263
  * <p>
@@ -421,7 +421,7 @@ export interface EncryptionSpecification {
421
421
  * <p>For more information, see <a href="https://docs.aws.amazon.com/keyspaces/latest/devguide/EncryptionAtRest.html">Encryption at rest</a> in the <i>Amazon Keyspaces Developer
422
422
  * Guide</i>.</p>
423
423
  */
424
- type: EncryptionType | string | undefined;
424
+ type: EncryptionType | undefined;
425
425
  /**
426
426
  * @public
427
427
  * <p>The Amazon Resource Name (ARN) of the customer managed KMS key, for example <code>kms_key_identifier:ARN</code>.</p>
@@ -463,7 +463,7 @@ export interface PointInTimeRecovery {
463
463
  * </li>
464
464
  * </ul>
465
465
  */
466
- status: PointInTimeRecoveryStatus | string | undefined;
466
+ status: PointInTimeRecoveryStatus | undefined;
467
467
  }
468
468
  /**
469
469
  * @public
@@ -537,7 +537,7 @@ export interface TimeToLive {
537
537
  * @public
538
538
  * <p>Shows how to enable custom Time to Live (TTL) settings for the specified table.</p>
539
539
  */
540
- status: TimeToLiveStatus | string | undefined;
540
+ status: TimeToLiveStatus | undefined;
541
541
  }
542
542
  /**
543
543
  * @public
@@ -830,7 +830,7 @@ export interface GetKeyspaceResponse {
830
830
  * Returns the replication strategy of the keyspace. The options are <code>SINGLE_REGION</code> or <code>MULTI_REGION</code>.
831
831
  * </p>
832
832
  */
833
- replicationStrategy: Rs | string | undefined;
833
+ replicationStrategy: Rs | undefined;
834
834
  /**
835
835
  * @public
836
836
  * <p>
@@ -863,7 +863,7 @@ export interface PointInTimeRecoverySummary {
863
863
  * @public
864
864
  * <p>Shows if point-in-time recovery is enabled or disabled for the specified table.</p>
865
865
  */
866
- status: PointInTimeRecoveryStatus | string | undefined;
866
+ status: PointInTimeRecoveryStatus | undefined;
867
867
  /**
868
868
  * @public
869
869
  * <p>Specifies the earliest possible restore point of the table in ISO 8601 format.</p>
@@ -915,7 +915,7 @@ export interface GetTableResponse {
915
915
  * @public
916
916
  * <p>The current status of the specified table.</p>
917
917
  */
918
- status?: TableStatus | string;
918
+ status?: TableStatus;
919
919
  /**
920
920
  * @public
921
921
  * <p>The schema definition of the specified table.</p>
@@ -1009,7 +1009,7 @@ export interface KeyspaceSummary {
1009
1009
  * values are <code>SINGLE_REGION</code> or <code>MULTI_REGION</code>.
1010
1010
  * </p>
1011
1011
  */
1012
- replicationStrategy: Rs | string | undefined;
1012
+ replicationStrategy: Rs | undefined;
1013
1013
  /**
1014
1014
  * @public
1015
1015
  * <p>
@@ -14,12 +14,12 @@ export declare const ThroughputMode: {
14
14
  export type ThroughputMode =
15
15
  (typeof ThroughputMode)[keyof typeof ThroughputMode];
16
16
  export interface CapacitySpecification {
17
- throughputMode: ThroughputMode | string | undefined;
17
+ throughputMode: ThroughputMode | undefined;
18
18
  readCapacityUnits?: number;
19
19
  writeCapacityUnits?: number;
20
20
  }
21
21
  export interface CapacitySpecificationSummary {
22
- throughputMode: ThroughputMode | string | undefined;
22
+ throughputMode: ThroughputMode | undefined;
23
23
  readCapacityUnits?: number;
24
24
  writeCapacityUnits?: number;
25
25
  lastUpdateToPayPerRequestTimestamp?: Date;
@@ -30,7 +30,7 @@ export declare const ClientSideTimestampsStatus: {
30
30
  export type ClientSideTimestampsStatus =
31
31
  (typeof ClientSideTimestampsStatus)[keyof typeof ClientSideTimestampsStatus];
32
32
  export interface ClientSideTimestamps {
33
- status: ClientSideTimestampsStatus | string | undefined;
33
+ status: ClientSideTimestampsStatus | undefined;
34
34
  }
35
35
  export declare const SortOrder: {
36
36
  readonly ASC: "ASC";
@@ -39,7 +39,7 @@ export declare const SortOrder: {
39
39
  export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
40
40
  export interface ClusteringKey {
41
41
  name: string | undefined;
42
- orderBy: SortOrder | string | undefined;
42
+ orderBy: SortOrder | undefined;
43
43
  }
44
44
  export interface ColumnDefinition {
45
45
  name: string | undefined;
@@ -59,7 +59,7 @@ export declare const Rs: {
59
59
  };
60
60
  export type Rs = (typeof Rs)[keyof typeof Rs];
61
61
  export interface ReplicationSpecification {
62
- replicationStrategy: Rs | string | undefined;
62
+ replicationStrategy: Rs | undefined;
63
63
  regionList?: string[];
64
64
  }
65
65
  export interface Tag {
@@ -102,7 +102,7 @@ export declare const EncryptionType: {
102
102
  export type EncryptionType =
103
103
  (typeof EncryptionType)[keyof typeof EncryptionType];
104
104
  export interface EncryptionSpecification {
105
- type: EncryptionType | string | undefined;
105
+ type: EncryptionType | undefined;
106
106
  kmsKeyIdentifier?: string;
107
107
  }
108
108
  export declare const PointInTimeRecoveryStatus: {
@@ -112,7 +112,7 @@ export declare const PointInTimeRecoveryStatus: {
112
112
  export type PointInTimeRecoveryStatus =
113
113
  (typeof PointInTimeRecoveryStatus)[keyof typeof PointInTimeRecoveryStatus];
114
114
  export interface PointInTimeRecovery {
115
- status: PointInTimeRecoveryStatus | string | undefined;
115
+ status: PointInTimeRecoveryStatus | undefined;
116
116
  }
117
117
  export interface PartitionKey {
118
118
  name: string | undefined;
@@ -132,7 +132,7 @@ export declare const TimeToLiveStatus: {
132
132
  export type TimeToLiveStatus =
133
133
  (typeof TimeToLiveStatus)[keyof typeof TimeToLiveStatus];
134
134
  export interface TimeToLive {
135
- status: TimeToLiveStatus | string | undefined;
135
+ status: TimeToLiveStatus | undefined;
136
136
  }
137
137
  export interface CreateTableRequest {
138
138
  keyspaceName: string | undefined;
@@ -173,7 +173,7 @@ export interface GetKeyspaceRequest {
173
173
  export interface GetKeyspaceResponse {
174
174
  keyspaceName: string | undefined;
175
175
  resourceArn: string | undefined;
176
- replicationStrategy: Rs | string | undefined;
176
+ replicationStrategy: Rs | undefined;
177
177
  replicationRegions?: string[];
178
178
  }
179
179
  export interface GetTableRequest {
@@ -181,7 +181,7 @@ export interface GetTableRequest {
181
181
  tableName: string | undefined;
182
182
  }
183
183
  export interface PointInTimeRecoverySummary {
184
- status: PointInTimeRecoveryStatus | string | undefined;
184
+ status: PointInTimeRecoveryStatus | undefined;
185
185
  earliestRestorableTimestamp?: Date;
186
186
  }
187
187
  export declare const TableStatus: {
@@ -199,7 +199,7 @@ export interface GetTableResponse {
199
199
  tableName: string | undefined;
200
200
  resourceArn: string | undefined;
201
201
  creationTimestamp?: Date;
202
- status?: TableStatus | string;
202
+ status?: TableStatus;
203
203
  schemaDefinition?: SchemaDefinition;
204
204
  capacitySpecification?: CapacitySpecificationSummary;
205
205
  encryptionSpecification?: EncryptionSpecification;
@@ -216,7 +216,7 @@ export interface ListKeyspacesRequest {
216
216
  export interface KeyspaceSummary {
217
217
  keyspaceName: string | undefined;
218
218
  resourceArn: string | undefined;
219
- replicationStrategy: Rs | string | undefined;
219
+ replicationStrategy: Rs | undefined;
220
220
  replicationRegions?: string[];
221
221
  }
222
222
  export interface ListKeyspacesResponse {
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.428.0",
4
+ "version": "3.430.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,28 +21,28 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.428.0",
25
- "@aws-sdk/credential-provider-node": "3.428.0",
26
- "@aws-sdk/middleware-host-header": "3.428.0",
24
+ "@aws-sdk/client-sts": "3.430.0",
25
+ "@aws-sdk/credential-provider-node": "3.430.0",
26
+ "@aws-sdk/middleware-host-header": "3.429.0",
27
27
  "@aws-sdk/middleware-logger": "3.428.0",
28
28
  "@aws-sdk/middleware-recursion-detection": "3.428.0",
29
29
  "@aws-sdk/middleware-signing": "3.428.0",
30
30
  "@aws-sdk/middleware-user-agent": "3.428.0",
31
- "@aws-sdk/region-config-resolver": "3.428.0",
31
+ "@aws-sdk/region-config-resolver": "3.430.0",
32
32
  "@aws-sdk/types": "3.428.0",
33
33
  "@aws-sdk/util-endpoints": "3.428.0",
34
34
  "@aws-sdk/util-user-agent-browser": "3.428.0",
35
- "@aws-sdk/util-user-agent-node": "3.428.0",
36
- "@smithy/config-resolver": "^2.0.14",
35
+ "@aws-sdk/util-user-agent-node": "3.430.0",
36
+ "@smithy/config-resolver": "^2.0.15",
37
37
  "@smithy/fetch-http-handler": "^2.2.3",
38
38
  "@smithy/hash-node": "^2.0.11",
39
39
  "@smithy/invalid-dependency": "^2.0.11",
40
40
  "@smithy/middleware-content-length": "^2.0.13",
41
- "@smithy/middleware-endpoint": "^2.1.0",
42
- "@smithy/middleware-retry": "^2.0.16",
41
+ "@smithy/middleware-endpoint": "^2.1.2",
42
+ "@smithy/middleware-retry": "^2.0.17",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",
45
- "@smithy/node-config-provider": "^2.1.1",
45
+ "@smithy/node-config-provider": "^2.1.2",
46
46
  "@smithy/node-http-handler": "^2.1.7",
47
47
  "@smithy/protocol-http": "^3.0.7",
48
48
  "@smithy/smithy-client": "^2.1.11",
@@ -52,7 +52,7 @@
52
52
  "@smithy/util-body-length-browser": "^2.0.0",
53
53
  "@smithy/util-body-length-node": "^2.1.0",
54
54
  "@smithy/util-defaults-mode-browser": "^2.0.15",
55
- "@smithy/util-defaults-mode-node": "^2.0.19",
55
+ "@smithy/util-defaults-mode-node": "^2.0.20",
56
56
  "@smithy/util-retry": "^2.0.4",
57
57
  "@smithy/util-utf8": "^2.0.0",
58
58
  "tslib": "^2.5.0"