@aws-sdk/client-dynamodb-streams 3.428.0 → 3.429.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.
@@ -78,7 +78,7 @@ export interface KeySchemaElement {
78
78
  * by the sort key value.</p>
79
79
  * </note>
80
80
  */
81
- KeyType: KeyType | string | undefined;
81
+ KeyType: KeyType | undefined;
82
82
  }
83
83
  /**
84
84
  * @public
@@ -197,7 +197,7 @@ export interface StreamDescription {
197
197
  * </li>
198
198
  * </ul>
199
199
  */
200
- StreamStatus?: StreamStatus | string;
200
+ StreamStatus?: StreamStatus;
201
201
  /**
202
202
  * @public
203
203
  * <p>Indicates the format of the records within this stream:</p>
@@ -220,7 +220,7 @@ export interface StreamDescription {
220
220
  * </li>
221
221
  * </ul>
222
222
  */
223
- StreamViewType?: StreamViewType | string;
223
+ StreamViewType?: StreamViewType;
224
224
  /**
225
225
  * @public
226
226
  * <p>The date and time when the request to create this stream was issued.</p>
@@ -454,7 +454,7 @@ export interface GetShardIteratorInput {
454
454
  * </li>
455
455
  * </ul>
456
456
  */
457
- ShardIteratorType: ShardIteratorType | string | undefined;
457
+ ShardIteratorType: ShardIteratorType | undefined;
458
458
  /**
459
459
  * @public
460
460
  * <p>The sequence number of a stream record in the shard from which to start reading.</p>
@@ -854,7 +854,7 @@ export interface StreamRecord {
854
854
  * </li>
855
855
  * </ul>
856
856
  */
857
- StreamViewType?: StreamViewType | string;
857
+ StreamViewType?: StreamViewType;
858
858
  }
859
859
  /**
860
860
  * @public
@@ -884,7 +884,7 @@ export interface _Record {
884
884
  * </li>
885
885
  * </ul>
886
886
  */
887
- eventName?: OperationType | string;
887
+ eventName?: OperationType;
888
888
  /**
889
889
  * @public
890
890
  * <p>The version number of the stream record format. This number is updated whenever the structure of <code>Record</code> is modified.</p>
@@ -12,7 +12,7 @@ export declare const KeyType: {
12
12
  export type KeyType = (typeof KeyType)[keyof typeof KeyType];
13
13
  export interface KeySchemaElement {
14
14
  AttributeName: string | undefined;
15
- KeyType: KeyType | string | undefined;
15
+ KeyType: KeyType | undefined;
16
16
  }
17
17
  export interface SequenceNumberRange {
18
18
  StartingSequenceNumber?: string;
@@ -41,8 +41,8 @@ export type StreamViewType =
41
41
  export interface StreamDescription {
42
42
  StreamArn?: string;
43
43
  StreamLabel?: string;
44
- StreamStatus?: StreamStatus | string;
45
- StreamViewType?: StreamViewType | string;
44
+ StreamStatus?: StreamStatus;
45
+ StreamViewType?: StreamViewType;
46
46
  CreationRequestDateTime?: Date;
47
47
  TableName?: string;
48
48
  KeySchema?: KeySchemaElement[];
@@ -112,7 +112,7 @@ export type ShardIteratorType =
112
112
  export interface GetShardIteratorInput {
113
113
  StreamArn: string | undefined;
114
114
  ShardId: string | undefined;
115
- ShardIteratorType: ShardIteratorType | string | undefined;
115
+ ShardIteratorType: ShardIteratorType | undefined;
116
116
  SequenceNumber?: string;
117
117
  }
118
118
  export interface GetShardIteratorOutput {
@@ -310,11 +310,11 @@ export interface StreamRecord {
310
310
  OldImage?: Record<string, AttributeValue>;
311
311
  SequenceNumber?: string;
312
312
  SizeBytes?: number;
313
- StreamViewType?: StreamViewType | string;
313
+ StreamViewType?: StreamViewType;
314
314
  }
315
315
  export interface _Record {
316
316
  eventID?: string;
317
- eventName?: OperationType | string;
317
+ eventName?: OperationType;
318
318
  eventVersion?: string;
319
319
  eventSource?: string;
320
320
  awsRegion?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-dynamodb-streams",
3
3
  "description": "AWS SDK for JavaScript Dynamodb Streams Client for Node.js, Browser and React Native",
4
- "version": "3.428.0",
4
+ "version": "3.429.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,9 +21,9 @@
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.429.0",
25
+ "@aws-sdk/credential-provider-node": "3.429.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",
@@ -38,7 +38,7 @@
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",
41
+ "@smithy/middleware-endpoint": "^2.1.1",
42
42
  "@smithy/middleware-retry": "^2.0.16",
43
43
  "@smithy/middleware-serde": "^2.0.11",
44
44
  "@smithy/middleware-stack": "^2.0.5",