@aws-sdk/client-dynamodb-streams 3.131.0 → 3.142.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/CHANGELOG.md +33 -0
- package/README.md +1 -1
- package/dist-cjs/commands/DescribeStreamCommand.js +2 -2
- package/dist-cjs/commands/GetRecordsCommand.js +2 -2
- package/dist-cjs/commands/GetShardIteratorCommand.js +2 -2
- package/dist-cjs/commands/ListStreamsCommand.js +2 -2
- package/dist-cjs/models/models_0.js +113 -144
- package/dist-cjs/protocols/Aws_json1_0.js +26 -38
- package/dist-es/commands/DescribeStreamCommand.js +3 -3
- package/dist-es/commands/GetRecordsCommand.js +3 -3
- package/dist-es/commands/GetShardIteratorCommand.js +3 -3
- package/dist-es/commands/ListStreamsCommand.js +3 -3
- package/dist-es/models/models_0.js +65 -113
- package/dist-es/protocols/Aws_json1_0.js +39 -39
- package/dist-types/models/models_0.d.ts +68 -100
- package/dist-types/ts3.4/models/models_0.d.ts +34 -66
- package/package.json +6 -6
|
@@ -9,10 +9,6 @@ export interface DescribeStreamInput {
|
|
|
9
9
|
|
|
10
10
|
ExclusiveStartShardId?: string;
|
|
11
11
|
}
|
|
12
|
-
export declare namespace DescribeStreamInput {
|
|
13
|
-
|
|
14
|
-
const filterSensitiveLog: (obj: DescribeStreamInput) => any;
|
|
15
|
-
}
|
|
16
12
|
export declare type KeyType = "HASH" | "RANGE";
|
|
17
13
|
|
|
18
14
|
export interface KeySchemaElement {
|
|
@@ -21,10 +17,6 @@ export interface KeySchemaElement {
|
|
|
21
17
|
|
|
22
18
|
KeyType: KeyType | string | undefined;
|
|
23
19
|
}
|
|
24
|
-
export declare namespace KeySchemaElement {
|
|
25
|
-
|
|
26
|
-
const filterSensitiveLog: (obj: KeySchemaElement) => any;
|
|
27
|
-
}
|
|
28
20
|
|
|
29
21
|
export interface SequenceNumberRange {
|
|
30
22
|
|
|
@@ -32,10 +24,6 @@ export interface SequenceNumberRange {
|
|
|
32
24
|
|
|
33
25
|
EndingSequenceNumber?: string;
|
|
34
26
|
}
|
|
35
|
-
export declare namespace SequenceNumberRange {
|
|
36
|
-
|
|
37
|
-
const filterSensitiveLog: (obj: SequenceNumberRange) => any;
|
|
38
|
-
}
|
|
39
27
|
|
|
40
28
|
export interface Shard {
|
|
41
29
|
|
|
@@ -45,10 +33,6 @@ export interface Shard {
|
|
|
45
33
|
|
|
46
34
|
ParentShardId?: string;
|
|
47
35
|
}
|
|
48
|
-
export declare namespace Shard {
|
|
49
|
-
|
|
50
|
-
const filterSensitiveLog: (obj: Shard) => any;
|
|
51
|
-
}
|
|
52
36
|
export declare type StreamStatus = "DISABLED" | "DISABLING" | "ENABLED" | "ENABLING";
|
|
53
37
|
export declare type StreamViewType = "KEYS_ONLY" | "NEW_AND_OLD_IMAGES" | "NEW_IMAGE" | "OLD_IMAGE";
|
|
54
38
|
|
|
@@ -72,19 +56,11 @@ export interface StreamDescription {
|
|
|
72
56
|
|
|
73
57
|
LastEvaluatedShardId?: string;
|
|
74
58
|
}
|
|
75
|
-
export declare namespace StreamDescription {
|
|
76
|
-
|
|
77
|
-
const filterSensitiveLog: (obj: StreamDescription) => any;
|
|
78
|
-
}
|
|
79
59
|
|
|
80
60
|
export interface DescribeStreamOutput {
|
|
81
61
|
|
|
82
62
|
StreamDescription?: StreamDescription;
|
|
83
63
|
}
|
|
84
|
-
export declare namespace DescribeStreamOutput {
|
|
85
|
-
|
|
86
|
-
const filterSensitiveLog: (obj: DescribeStreamOutput) => any;
|
|
87
|
-
}
|
|
88
64
|
|
|
89
65
|
export declare class InternalServerError extends __BaseException {
|
|
90
66
|
readonly name: "InternalServerError";
|
|
@@ -113,10 +89,6 @@ export interface GetRecordsInput {
|
|
|
113
89
|
|
|
114
90
|
Limit?: number;
|
|
115
91
|
}
|
|
116
|
-
export declare namespace GetRecordsInput {
|
|
117
|
-
|
|
118
|
-
const filterSensitiveLog: (obj: GetRecordsInput) => any;
|
|
119
|
-
}
|
|
120
92
|
export declare type OperationType = "INSERT" | "MODIFY" | "REMOVE";
|
|
121
93
|
|
|
122
94
|
export interface Identity {
|
|
@@ -125,10 +97,6 @@ export interface Identity {
|
|
|
125
97
|
|
|
126
98
|
Type?: string;
|
|
127
99
|
}
|
|
128
|
-
export declare namespace Identity {
|
|
129
|
-
|
|
130
|
-
const filterSensitiveLog: (obj: Identity) => any;
|
|
131
|
-
}
|
|
132
100
|
|
|
133
101
|
export declare class LimitExceededException extends __BaseException {
|
|
134
102
|
readonly name: "LimitExceededException";
|
|
@@ -155,19 +123,11 @@ export interface GetShardIteratorInput {
|
|
|
155
123
|
|
|
156
124
|
SequenceNumber?: string;
|
|
157
125
|
}
|
|
158
|
-
export declare namespace GetShardIteratorInput {
|
|
159
|
-
|
|
160
|
-
const filterSensitiveLog: (obj: GetShardIteratorInput) => any;
|
|
161
|
-
}
|
|
162
126
|
|
|
163
127
|
export interface GetShardIteratorOutput {
|
|
164
128
|
|
|
165
129
|
ShardIterator?: string;
|
|
166
130
|
}
|
|
167
|
-
export declare namespace GetShardIteratorOutput {
|
|
168
|
-
|
|
169
|
-
const filterSensitiveLog: (obj: GetShardIteratorOutput) => any;
|
|
170
|
-
}
|
|
171
131
|
|
|
172
132
|
export interface ListStreamsInput {
|
|
173
133
|
|
|
@@ -177,10 +137,6 @@ export interface ListStreamsInput {
|
|
|
177
137
|
|
|
178
138
|
ExclusiveStartStreamArn?: string;
|
|
179
139
|
}
|
|
180
|
-
export declare namespace ListStreamsInput {
|
|
181
|
-
|
|
182
|
-
const filterSensitiveLog: (obj: ListStreamsInput) => any;
|
|
183
|
-
}
|
|
184
140
|
|
|
185
141
|
export interface _Stream {
|
|
186
142
|
|
|
@@ -190,10 +146,6 @@ export interface _Stream {
|
|
|
190
146
|
|
|
191
147
|
StreamLabel?: string;
|
|
192
148
|
}
|
|
193
|
-
export declare namespace _Stream {
|
|
194
|
-
|
|
195
|
-
const filterSensitiveLog: (obj: _Stream) => any;
|
|
196
|
-
}
|
|
197
149
|
|
|
198
150
|
export interface ListStreamsOutput {
|
|
199
151
|
|
|
@@ -201,10 +153,6 @@ export interface ListStreamsOutput {
|
|
|
201
153
|
|
|
202
154
|
LastEvaluatedStreamArn?: string;
|
|
203
155
|
}
|
|
204
|
-
export declare namespace ListStreamsOutput {
|
|
205
|
-
|
|
206
|
-
const filterSensitiveLog: (obj: ListStreamsOutput) => any;
|
|
207
|
-
}
|
|
208
156
|
|
|
209
157
|
export declare type AttributeValue = AttributeValue.BMember | AttributeValue.BOOLMember | AttributeValue.BSMember | AttributeValue.LMember | AttributeValue.MMember | AttributeValue.NMember | AttributeValue.NSMember | AttributeValue.NULLMember | AttributeValue.SMember | AttributeValue.SSMember | AttributeValue.$UnknownMember;
|
|
210
158
|
export declare namespace AttributeValue {
|
|
@@ -378,8 +326,6 @@ export declare namespace AttributeValue {
|
|
|
378
326
|
_: (name: string, value: any) => T;
|
|
379
327
|
}
|
|
380
328
|
const visit: <T>(value: AttributeValue, visitor: Visitor<T>) => T;
|
|
381
|
-
|
|
382
|
-
const filterSensitiveLog: (obj: AttributeValue) => any;
|
|
383
329
|
}
|
|
384
330
|
|
|
385
331
|
export interface StreamRecord {
|
|
@@ -398,10 +344,6 @@ export interface StreamRecord {
|
|
|
398
344
|
|
|
399
345
|
StreamViewType?: StreamViewType | string;
|
|
400
346
|
}
|
|
401
|
-
export declare namespace StreamRecord {
|
|
402
|
-
|
|
403
|
-
const filterSensitiveLog: (obj: StreamRecord) => any;
|
|
404
|
-
}
|
|
405
347
|
|
|
406
348
|
export interface _Record {
|
|
407
349
|
|
|
@@ -419,10 +361,6 @@ export interface _Record {
|
|
|
419
361
|
|
|
420
362
|
userIdentity?: Identity;
|
|
421
363
|
}
|
|
422
|
-
export declare namespace _Record {
|
|
423
|
-
|
|
424
|
-
const filterSensitiveLog: (obj: _Record) => any;
|
|
425
|
-
}
|
|
426
364
|
|
|
427
365
|
export interface GetRecordsOutput {
|
|
428
366
|
|
|
@@ -430,7 +368,37 @@ export interface GetRecordsOutput {
|
|
|
430
368
|
|
|
431
369
|
NextShardIterator?: string;
|
|
432
370
|
}
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
371
|
+
|
|
372
|
+
export declare const DescribeStreamInputFilterSensitiveLog: (obj: DescribeStreamInput) => any;
|
|
373
|
+
|
|
374
|
+
export declare const KeySchemaElementFilterSensitiveLog: (obj: KeySchemaElement) => any;
|
|
375
|
+
|
|
376
|
+
export declare const SequenceNumberRangeFilterSensitiveLog: (obj: SequenceNumberRange) => any;
|
|
377
|
+
|
|
378
|
+
export declare const ShardFilterSensitiveLog: (obj: Shard) => any;
|
|
379
|
+
|
|
380
|
+
export declare const StreamDescriptionFilterSensitiveLog: (obj: StreamDescription) => any;
|
|
381
|
+
|
|
382
|
+
export declare const DescribeStreamOutputFilterSensitiveLog: (obj: DescribeStreamOutput) => any;
|
|
383
|
+
|
|
384
|
+
export declare const GetRecordsInputFilterSensitiveLog: (obj: GetRecordsInput) => any;
|
|
385
|
+
|
|
386
|
+
export declare const IdentityFilterSensitiveLog: (obj: Identity) => any;
|
|
387
|
+
|
|
388
|
+
export declare const GetShardIteratorInputFilterSensitiveLog: (obj: GetShardIteratorInput) => any;
|
|
389
|
+
|
|
390
|
+
export declare const GetShardIteratorOutputFilterSensitiveLog: (obj: GetShardIteratorOutput) => any;
|
|
391
|
+
|
|
392
|
+
export declare const ListStreamsInputFilterSensitiveLog: (obj: ListStreamsInput) => any;
|
|
393
|
+
|
|
394
|
+
export declare const _StreamFilterSensitiveLog: (obj: _Stream) => any;
|
|
395
|
+
|
|
396
|
+
export declare const ListStreamsOutputFilterSensitiveLog: (obj: ListStreamsOutput) => any;
|
|
397
|
+
|
|
398
|
+
export declare const AttributeValueFilterSensitiveLog: (obj: AttributeValue) => any;
|
|
399
|
+
|
|
400
|
+
export declare const StreamRecordFilterSensitiveLog: (obj: StreamRecord) => any;
|
|
401
|
+
|
|
402
|
+
export declare const _RecordFilterSensitiveLog: (obj: _Record) => any;
|
|
403
|
+
|
|
404
|
+
export declare const GetRecordsOutputFilterSensitiveLog: (obj: GetRecordsOutput) => any;
|
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.
|
|
4
|
+
"version": "3.142.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",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.142.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.130.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.142.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.131.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.127.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.127.0",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
"@aws-sdk/node-config-provider": "3.127.0",
|
|
37
37
|
"@aws-sdk/node-http-handler": "3.127.0",
|
|
38
38
|
"@aws-sdk/protocol-http": "3.127.0",
|
|
39
|
-
"@aws-sdk/smithy-client": "3.
|
|
39
|
+
"@aws-sdk/smithy-client": "3.142.0",
|
|
40
40
|
"@aws-sdk/types": "3.127.0",
|
|
41
41
|
"@aws-sdk/url-parser": "3.127.0",
|
|
42
42
|
"@aws-sdk/util-base64-browser": "3.109.0",
|
|
43
43
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
45
45
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
46
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
47
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
46
|
+
"@aws-sdk/util-defaults-mode-browser": "3.142.0",
|
|
47
|
+
"@aws-sdk/util-defaults-mode-node": "3.142.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-browser": "3.127.0",
|
|
49
49
|
"@aws-sdk/util-user-agent-node": "3.127.0",
|
|
50
50
|
"@aws-sdk/util-utf8-browser": "3.109.0",
|