@aws-sdk/client-kinesis 3.181.0 → 3.183.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 +8 -0
- package/dist-es/Kinesis.js +118 -125
- package/dist-es/KinesisClient.js +23 -29
- package/dist-es/commands/AddTagsToStreamCommand.js +22 -29
- package/dist-es/commands/CreateStreamCommand.js +22 -29
- package/dist-es/commands/DecreaseStreamRetentionPeriodCommand.js +22 -29
- package/dist-es/commands/DeleteStreamCommand.js +22 -29
- package/dist-es/commands/DeregisterStreamConsumerCommand.js +22 -29
- package/dist-es/commands/DescribeLimitsCommand.js +21 -28
- package/dist-es/commands/DescribeStreamCommand.js +21 -28
- package/dist-es/commands/DescribeStreamConsumerCommand.js +21 -28
- package/dist-es/commands/DescribeStreamSummaryCommand.js +21 -28
- package/dist-es/commands/DisableEnhancedMonitoringCommand.js +21 -28
- package/dist-es/commands/EnableEnhancedMonitoringCommand.js +21 -28
- package/dist-es/commands/GetRecordsCommand.js +21 -28
- package/dist-es/commands/GetShardIteratorCommand.js +21 -28
- package/dist-es/commands/IncreaseStreamRetentionPeriodCommand.js +22 -29
- package/dist-es/commands/ListShardsCommand.js +21 -28
- package/dist-es/commands/ListStreamConsumersCommand.js +21 -28
- package/dist-es/commands/ListStreamsCommand.js +21 -28
- package/dist-es/commands/ListTagsForStreamCommand.js +21 -28
- package/dist-es/commands/MergeShardsCommand.js +22 -29
- package/dist-es/commands/PutRecordCommand.js +21 -28
- package/dist-es/commands/PutRecordsCommand.js +21 -28
- package/dist-es/commands/RegisterStreamConsumerCommand.js +21 -28
- package/dist-es/commands/RemoveTagsFromStreamCommand.js +22 -29
- package/dist-es/commands/SplitShardCommand.js +22 -29
- package/dist-es/commands/StartStreamEncryptionCommand.js +22 -29
- package/dist-es/commands/StopStreamEncryptionCommand.js +22 -29
- package/dist-es/commands/SubscribeToShardCommand.js +21 -28
- package/dist-es/commands/UpdateShardCountCommand.js +21 -28
- package/dist-es/commands/UpdateStreamModeCommand.js +22 -29
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/KinesisServiceException.js +5 -10
- package/dist-es/models/models_0.js +355 -232
- package/dist-es/pagination/ListStreamConsumersPaginator.js +25 -68
- package/dist-es/protocols/Aws_json1_1.js +2071 -2778
- package/dist-es/runtimeConfig.browser.js +27 -12
- package/dist-es/runtimeConfig.js +32 -19
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/dist-es/waiters/waitForStreamExists.js +28 -48
- package/dist-es/waiters/waitForStreamNotExists.js +22 -42
- package/package.json +37 -37
|
@@ -1,53 +1,52 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { KinesisServiceException as __BaseException } from "./KinesisServiceException";
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
2
|
+
export class InvalidArgumentException extends __BaseException {
|
|
3
|
+
constructor(opts) {
|
|
4
|
+
super({
|
|
5
|
+
name: "InvalidArgumentException",
|
|
6
|
+
$fault: "client",
|
|
7
|
+
...opts,
|
|
8
|
+
});
|
|
9
|
+
this.name = "InvalidArgumentException";
|
|
10
|
+
this.$fault = "client";
|
|
11
|
+
Object.setPrototypeOf(this, InvalidArgumentException.prototype);
|
|
11
12
|
}
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
13
|
+
}
|
|
14
|
+
export class LimitExceededException extends __BaseException {
|
|
15
|
+
constructor(opts) {
|
|
16
|
+
super({
|
|
17
|
+
name: "LimitExceededException",
|
|
18
|
+
$fault: "client",
|
|
19
|
+
...opts,
|
|
20
|
+
});
|
|
21
|
+
this.name = "LimitExceededException";
|
|
22
|
+
this.$fault = "client";
|
|
23
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
23
24
|
}
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
25
|
+
}
|
|
26
|
+
export class ResourceInUseException extends __BaseException {
|
|
27
|
+
constructor(opts) {
|
|
28
|
+
super({
|
|
29
|
+
name: "ResourceInUseException",
|
|
30
|
+
$fault: "client",
|
|
31
|
+
...opts,
|
|
32
|
+
});
|
|
33
|
+
this.name = "ResourceInUseException";
|
|
34
|
+
this.$fault = "client";
|
|
35
|
+
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
35
36
|
}
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
37
|
+
}
|
|
38
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
39
|
+
constructor(opts) {
|
|
40
|
+
super({
|
|
41
|
+
name: "ResourceNotFoundException",
|
|
42
|
+
$fault: "client",
|
|
43
|
+
...opts,
|
|
44
|
+
});
|
|
45
|
+
this.name = "ResourceNotFoundException";
|
|
46
|
+
this.$fault = "client";
|
|
47
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
47
48
|
}
|
|
48
|
-
|
|
49
|
-
}(__BaseException));
|
|
50
|
-
export { ResourceNotFoundException };
|
|
49
|
+
}
|
|
51
50
|
export var ConsumerStatus;
|
|
52
51
|
(function (ConsumerStatus) {
|
|
53
52
|
ConsumerStatus["ACTIVE"] = "ACTIVE";
|
|
@@ -82,114 +81,114 @@ export var StreamStatus;
|
|
|
82
81
|
StreamStatus["DELETING"] = "DELETING";
|
|
83
82
|
StreamStatus["UPDATING"] = "UPDATING";
|
|
84
83
|
})(StreamStatus || (StreamStatus = {}));
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
84
|
+
export class ExpiredIteratorException extends __BaseException {
|
|
85
|
+
constructor(opts) {
|
|
86
|
+
super({
|
|
87
|
+
name: "ExpiredIteratorException",
|
|
88
|
+
$fault: "client",
|
|
89
|
+
...opts,
|
|
90
|
+
});
|
|
91
|
+
this.name = "ExpiredIteratorException";
|
|
92
|
+
this.$fault = "client";
|
|
93
|
+
Object.setPrototypeOf(this, ExpiredIteratorException.prototype);
|
|
93
94
|
}
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
95
|
+
}
|
|
96
|
+
export class ExpiredNextTokenException extends __BaseException {
|
|
97
|
+
constructor(opts) {
|
|
98
|
+
super({
|
|
99
|
+
name: "ExpiredNextTokenException",
|
|
100
|
+
$fault: "client",
|
|
101
|
+
...opts,
|
|
102
|
+
});
|
|
103
|
+
this.name = "ExpiredNextTokenException";
|
|
104
|
+
this.$fault = "client";
|
|
105
|
+
Object.setPrototypeOf(this, ExpiredNextTokenException.prototype);
|
|
105
106
|
}
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
107
|
+
}
|
|
108
|
+
export class KMSAccessDeniedException extends __BaseException {
|
|
109
|
+
constructor(opts) {
|
|
110
|
+
super({
|
|
111
|
+
name: "KMSAccessDeniedException",
|
|
112
|
+
$fault: "client",
|
|
113
|
+
...opts,
|
|
114
|
+
});
|
|
115
|
+
this.name = "KMSAccessDeniedException";
|
|
116
|
+
this.$fault = "client";
|
|
117
|
+
Object.setPrototypeOf(this, KMSAccessDeniedException.prototype);
|
|
117
118
|
}
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
119
|
+
}
|
|
120
|
+
export class KMSDisabledException extends __BaseException {
|
|
121
|
+
constructor(opts) {
|
|
122
|
+
super({
|
|
123
|
+
name: "KMSDisabledException",
|
|
124
|
+
$fault: "client",
|
|
125
|
+
...opts,
|
|
126
|
+
});
|
|
127
|
+
this.name = "KMSDisabledException";
|
|
128
|
+
this.$fault = "client";
|
|
129
|
+
Object.setPrototypeOf(this, KMSDisabledException.prototype);
|
|
129
130
|
}
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
131
|
+
}
|
|
132
|
+
export class KMSInvalidStateException extends __BaseException {
|
|
133
|
+
constructor(opts) {
|
|
134
|
+
super({
|
|
135
|
+
name: "KMSInvalidStateException",
|
|
136
|
+
$fault: "client",
|
|
137
|
+
...opts,
|
|
138
|
+
});
|
|
139
|
+
this.name = "KMSInvalidStateException";
|
|
140
|
+
this.$fault = "client";
|
|
141
|
+
Object.setPrototypeOf(this, KMSInvalidStateException.prototype);
|
|
141
142
|
}
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
143
|
+
}
|
|
144
|
+
export class KMSNotFoundException extends __BaseException {
|
|
145
|
+
constructor(opts) {
|
|
146
|
+
super({
|
|
147
|
+
name: "KMSNotFoundException",
|
|
148
|
+
$fault: "client",
|
|
149
|
+
...opts,
|
|
150
|
+
});
|
|
151
|
+
this.name = "KMSNotFoundException";
|
|
152
|
+
this.$fault = "client";
|
|
153
|
+
Object.setPrototypeOf(this, KMSNotFoundException.prototype);
|
|
153
154
|
}
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
155
|
+
}
|
|
156
|
+
export class KMSOptInRequired extends __BaseException {
|
|
157
|
+
constructor(opts) {
|
|
158
|
+
super({
|
|
159
|
+
name: "KMSOptInRequired",
|
|
160
|
+
$fault: "client",
|
|
161
|
+
...opts,
|
|
162
|
+
});
|
|
163
|
+
this.name = "KMSOptInRequired";
|
|
164
|
+
this.$fault = "client";
|
|
165
|
+
Object.setPrototypeOf(this, KMSOptInRequired.prototype);
|
|
165
166
|
}
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
167
|
+
}
|
|
168
|
+
export class KMSThrottlingException extends __BaseException {
|
|
169
|
+
constructor(opts) {
|
|
170
|
+
super({
|
|
171
|
+
name: "KMSThrottlingException",
|
|
172
|
+
$fault: "client",
|
|
173
|
+
...opts,
|
|
174
|
+
});
|
|
175
|
+
this.name = "KMSThrottlingException";
|
|
176
|
+
this.$fault = "client";
|
|
177
|
+
Object.setPrototypeOf(this, KMSThrottlingException.prototype);
|
|
177
178
|
}
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
179
|
+
}
|
|
180
|
+
export class ProvisionedThroughputExceededException extends __BaseException {
|
|
181
|
+
constructor(opts) {
|
|
182
|
+
super({
|
|
183
|
+
name: "ProvisionedThroughputExceededException",
|
|
184
|
+
$fault: "client",
|
|
185
|
+
...opts,
|
|
186
|
+
});
|
|
187
|
+
this.name = "ProvisionedThroughputExceededException";
|
|
188
|
+
this.$fault = "client";
|
|
189
|
+
Object.setPrototypeOf(this, ProvisionedThroughputExceededException.prototype);
|
|
189
190
|
}
|
|
190
|
-
|
|
191
|
-
}(__BaseException));
|
|
192
|
-
export { ProvisionedThroughputExceededException };
|
|
191
|
+
}
|
|
193
192
|
export var ShardIteratorType;
|
|
194
193
|
(function (ShardIteratorType) {
|
|
195
194
|
ShardIteratorType["AFTER_SEQUENCE_NUMBER"] = "AFTER_SEQUENCE_NUMBER";
|
|
@@ -198,18 +197,18 @@ export var ShardIteratorType;
|
|
|
198
197
|
ShardIteratorType["LATEST"] = "LATEST";
|
|
199
198
|
ShardIteratorType["TRIM_HORIZON"] = "TRIM_HORIZON";
|
|
200
199
|
})(ShardIteratorType || (ShardIteratorType = {}));
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
200
|
+
export class InternalFailureException extends __BaseException {
|
|
201
|
+
constructor(opts) {
|
|
202
|
+
super({
|
|
203
|
+
name: "InternalFailureException",
|
|
204
|
+
$fault: "server",
|
|
205
|
+
...opts,
|
|
206
|
+
});
|
|
207
|
+
this.name = "InternalFailureException";
|
|
208
|
+
this.$fault = "server";
|
|
209
|
+
Object.setPrototypeOf(this, InternalFailureException.prototype);
|
|
209
210
|
}
|
|
210
|
-
|
|
211
|
-
}(__BaseException));
|
|
212
|
-
export { InternalFailureException };
|
|
211
|
+
}
|
|
213
212
|
export var ShardFilterType;
|
|
214
213
|
(function (ShardFilterType) {
|
|
215
214
|
ShardFilterType["AFTER_SHARD_ID"] = "AFTER_SHARD_ID";
|
|
@@ -219,21 +218,21 @@ export var ShardFilterType;
|
|
|
219
218
|
ShardFilterType["FROM_TIMESTAMP"] = "FROM_TIMESTAMP";
|
|
220
219
|
ShardFilterType["FROM_TRIM_HORIZON"] = "FROM_TRIM_HORIZON";
|
|
221
220
|
})(ShardFilterType || (ShardFilterType = {}));
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
221
|
+
export class ValidationException extends __BaseException {
|
|
222
|
+
constructor(opts) {
|
|
223
|
+
super({
|
|
224
|
+
name: "ValidationException",
|
|
225
|
+
$fault: "client",
|
|
226
|
+
...opts,
|
|
227
|
+
});
|
|
228
|
+
this.name = "ValidationException";
|
|
229
|
+
this.$fault = "client";
|
|
230
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
230
231
|
}
|
|
231
|
-
|
|
232
|
-
}(__BaseException));
|
|
233
|
-
export { ValidationException };
|
|
232
|
+
}
|
|
234
233
|
export var SubscribeToShardEventStream;
|
|
235
234
|
(function (SubscribeToShardEventStream) {
|
|
236
|
-
SubscribeToShardEventStream.visit =
|
|
235
|
+
SubscribeToShardEventStream.visit = (value, visitor) => {
|
|
237
236
|
if (value.SubscribeToShardEvent !== undefined)
|
|
238
237
|
return visitor.SubscribeToShardEvent(value.SubscribeToShardEvent);
|
|
239
238
|
if (value.ResourceNotFoundException !== undefined)
|
|
@@ -261,66 +260,181 @@ export var ScalingType;
|
|
|
261
260
|
(function (ScalingType) {
|
|
262
261
|
ScalingType["UNIFORM_SCALING"] = "UNIFORM_SCALING";
|
|
263
262
|
})(ScalingType || (ScalingType = {}));
|
|
264
|
-
export
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
export
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
export
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
export
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
export
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
export
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
export
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
export
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
export
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
export
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
export
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
export
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
export
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
export
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
export
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
export
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
export
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
export
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
export
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
export
|
|
322
|
-
|
|
323
|
-
|
|
263
|
+
export const AddTagsToStreamInputFilterSensitiveLog = (obj) => ({
|
|
264
|
+
...obj,
|
|
265
|
+
});
|
|
266
|
+
export const HashKeyRangeFilterSensitiveLog = (obj) => ({
|
|
267
|
+
...obj,
|
|
268
|
+
});
|
|
269
|
+
export const ChildShardFilterSensitiveLog = (obj) => ({
|
|
270
|
+
...obj,
|
|
271
|
+
});
|
|
272
|
+
export const ConsumerFilterSensitiveLog = (obj) => ({
|
|
273
|
+
...obj,
|
|
274
|
+
});
|
|
275
|
+
export const ConsumerDescriptionFilterSensitiveLog = (obj) => ({
|
|
276
|
+
...obj,
|
|
277
|
+
});
|
|
278
|
+
export const StreamModeDetailsFilterSensitiveLog = (obj) => ({
|
|
279
|
+
...obj,
|
|
280
|
+
});
|
|
281
|
+
export const CreateStreamInputFilterSensitiveLog = (obj) => ({
|
|
282
|
+
...obj,
|
|
283
|
+
});
|
|
284
|
+
export const DecreaseStreamRetentionPeriodInputFilterSensitiveLog = (obj) => ({
|
|
285
|
+
...obj,
|
|
286
|
+
});
|
|
287
|
+
export const DeleteStreamInputFilterSensitiveLog = (obj) => ({
|
|
288
|
+
...obj,
|
|
289
|
+
});
|
|
290
|
+
export const DeregisterStreamConsumerInputFilterSensitiveLog = (obj) => ({
|
|
291
|
+
...obj,
|
|
292
|
+
});
|
|
293
|
+
export const DescribeLimitsInputFilterSensitiveLog = (obj) => ({
|
|
294
|
+
...obj,
|
|
295
|
+
});
|
|
296
|
+
export const DescribeLimitsOutputFilterSensitiveLog = (obj) => ({
|
|
297
|
+
...obj,
|
|
298
|
+
});
|
|
299
|
+
export const DescribeStreamInputFilterSensitiveLog = (obj) => ({
|
|
300
|
+
...obj,
|
|
301
|
+
});
|
|
302
|
+
export const EnhancedMetricsFilterSensitiveLog = (obj) => ({
|
|
303
|
+
...obj,
|
|
304
|
+
});
|
|
305
|
+
export const SequenceNumberRangeFilterSensitiveLog = (obj) => ({
|
|
306
|
+
...obj,
|
|
307
|
+
});
|
|
308
|
+
export const ShardFilterSensitiveLog = (obj) => ({
|
|
309
|
+
...obj,
|
|
310
|
+
});
|
|
311
|
+
export const StreamDescriptionFilterSensitiveLog = (obj) => ({
|
|
312
|
+
...obj,
|
|
313
|
+
});
|
|
314
|
+
export const DescribeStreamOutputFilterSensitiveLog = (obj) => ({
|
|
315
|
+
...obj,
|
|
316
|
+
});
|
|
317
|
+
export const DescribeStreamConsumerInputFilterSensitiveLog = (obj) => ({
|
|
318
|
+
...obj,
|
|
319
|
+
});
|
|
320
|
+
export const DescribeStreamConsumerOutputFilterSensitiveLog = (obj) => ({
|
|
321
|
+
...obj,
|
|
322
|
+
});
|
|
323
|
+
export const DescribeStreamSummaryInputFilterSensitiveLog = (obj) => ({
|
|
324
|
+
...obj,
|
|
325
|
+
});
|
|
326
|
+
export const StreamDescriptionSummaryFilterSensitiveLog = (obj) => ({
|
|
327
|
+
...obj,
|
|
328
|
+
});
|
|
329
|
+
export const DescribeStreamSummaryOutputFilterSensitiveLog = (obj) => ({
|
|
330
|
+
...obj,
|
|
331
|
+
});
|
|
332
|
+
export const DisableEnhancedMonitoringInputFilterSensitiveLog = (obj) => ({
|
|
333
|
+
...obj,
|
|
334
|
+
});
|
|
335
|
+
export const EnhancedMonitoringOutputFilterSensitiveLog = (obj) => ({
|
|
336
|
+
...obj,
|
|
337
|
+
});
|
|
338
|
+
export const EnableEnhancedMonitoringInputFilterSensitiveLog = (obj) => ({
|
|
339
|
+
...obj,
|
|
340
|
+
});
|
|
341
|
+
export const GetRecordsInputFilterSensitiveLog = (obj) => ({
|
|
342
|
+
...obj,
|
|
343
|
+
});
|
|
344
|
+
export const _RecordFilterSensitiveLog = (obj) => ({
|
|
345
|
+
...obj,
|
|
346
|
+
});
|
|
347
|
+
export const GetRecordsOutputFilterSensitiveLog = (obj) => ({
|
|
348
|
+
...obj,
|
|
349
|
+
});
|
|
350
|
+
export const GetShardIteratorInputFilterSensitiveLog = (obj) => ({
|
|
351
|
+
...obj,
|
|
352
|
+
});
|
|
353
|
+
export const GetShardIteratorOutputFilterSensitiveLog = (obj) => ({
|
|
354
|
+
...obj,
|
|
355
|
+
});
|
|
356
|
+
export const IncreaseStreamRetentionPeriodInputFilterSensitiveLog = (obj) => ({
|
|
357
|
+
...obj,
|
|
358
|
+
});
|
|
359
|
+
export const ShardFilterFilterSensitiveLog = (obj) => ({
|
|
360
|
+
...obj,
|
|
361
|
+
});
|
|
362
|
+
export const ListShardsInputFilterSensitiveLog = (obj) => ({
|
|
363
|
+
...obj,
|
|
364
|
+
});
|
|
365
|
+
export const ListShardsOutputFilterSensitiveLog = (obj) => ({
|
|
366
|
+
...obj,
|
|
367
|
+
});
|
|
368
|
+
export const ListStreamConsumersInputFilterSensitiveLog = (obj) => ({
|
|
369
|
+
...obj,
|
|
370
|
+
});
|
|
371
|
+
export const ListStreamConsumersOutputFilterSensitiveLog = (obj) => ({
|
|
372
|
+
...obj,
|
|
373
|
+
});
|
|
374
|
+
export const ListStreamsInputFilterSensitiveLog = (obj) => ({
|
|
375
|
+
...obj,
|
|
376
|
+
});
|
|
377
|
+
export const ListStreamsOutputFilterSensitiveLog = (obj) => ({
|
|
378
|
+
...obj,
|
|
379
|
+
});
|
|
380
|
+
export const ListTagsForStreamInputFilterSensitiveLog = (obj) => ({
|
|
381
|
+
...obj,
|
|
382
|
+
});
|
|
383
|
+
export const TagFilterSensitiveLog = (obj) => ({
|
|
384
|
+
...obj,
|
|
385
|
+
});
|
|
386
|
+
export const ListTagsForStreamOutputFilterSensitiveLog = (obj) => ({
|
|
387
|
+
...obj,
|
|
388
|
+
});
|
|
389
|
+
export const MergeShardsInputFilterSensitiveLog = (obj) => ({
|
|
390
|
+
...obj,
|
|
391
|
+
});
|
|
392
|
+
export const PutRecordInputFilterSensitiveLog = (obj) => ({
|
|
393
|
+
...obj,
|
|
394
|
+
});
|
|
395
|
+
export const PutRecordOutputFilterSensitiveLog = (obj) => ({
|
|
396
|
+
...obj,
|
|
397
|
+
});
|
|
398
|
+
export const PutRecordsRequestEntryFilterSensitiveLog = (obj) => ({
|
|
399
|
+
...obj,
|
|
400
|
+
});
|
|
401
|
+
export const PutRecordsInputFilterSensitiveLog = (obj) => ({
|
|
402
|
+
...obj,
|
|
403
|
+
});
|
|
404
|
+
export const PutRecordsResultEntryFilterSensitiveLog = (obj) => ({
|
|
405
|
+
...obj,
|
|
406
|
+
});
|
|
407
|
+
export const PutRecordsOutputFilterSensitiveLog = (obj) => ({
|
|
408
|
+
...obj,
|
|
409
|
+
});
|
|
410
|
+
export const RegisterStreamConsumerInputFilterSensitiveLog = (obj) => ({
|
|
411
|
+
...obj,
|
|
412
|
+
});
|
|
413
|
+
export const RegisterStreamConsumerOutputFilterSensitiveLog = (obj) => ({
|
|
414
|
+
...obj,
|
|
415
|
+
});
|
|
416
|
+
export const RemoveTagsFromStreamInputFilterSensitiveLog = (obj) => ({
|
|
417
|
+
...obj,
|
|
418
|
+
});
|
|
419
|
+
export const SplitShardInputFilterSensitiveLog = (obj) => ({
|
|
420
|
+
...obj,
|
|
421
|
+
});
|
|
422
|
+
export const StartStreamEncryptionInputFilterSensitiveLog = (obj) => ({
|
|
423
|
+
...obj,
|
|
424
|
+
});
|
|
425
|
+
export const StopStreamEncryptionInputFilterSensitiveLog = (obj) => ({
|
|
426
|
+
...obj,
|
|
427
|
+
});
|
|
428
|
+
export const StartingPositionFilterSensitiveLog = (obj) => ({
|
|
429
|
+
...obj,
|
|
430
|
+
});
|
|
431
|
+
export const SubscribeToShardInputFilterSensitiveLog = (obj) => ({
|
|
432
|
+
...obj,
|
|
433
|
+
});
|
|
434
|
+
export const SubscribeToShardEventFilterSensitiveLog = (obj) => ({
|
|
435
|
+
...obj,
|
|
436
|
+
});
|
|
437
|
+
export const SubscribeToShardEventStreamFilterSensitiveLog = (obj) => {
|
|
324
438
|
if (obj.SubscribeToShardEvent !== undefined)
|
|
325
439
|
return { SubscribeToShardEvent: SubscribeToShardEventFilterSensitiveLog(obj.SubscribeToShardEvent) };
|
|
326
440
|
if (obj.ResourceNotFoundException !== undefined)
|
|
@@ -342,9 +456,18 @@ export var SubscribeToShardEventStreamFilterSensitiveLog = function (obj) {
|
|
|
342
456
|
if (obj.InternalFailureException !== undefined)
|
|
343
457
|
return { InternalFailureException: obj.InternalFailureException };
|
|
344
458
|
if (obj.$unknown !== undefined)
|
|
345
|
-
return
|
|
459
|
+
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
346
460
|
};
|
|
347
|
-
export
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
461
|
+
export const SubscribeToShardOutputFilterSensitiveLog = (obj) => ({
|
|
462
|
+
...obj,
|
|
463
|
+
...(obj.EventStream && { EventStream: "STREAMING_CONTENT" }),
|
|
464
|
+
});
|
|
465
|
+
export const UpdateShardCountInputFilterSensitiveLog = (obj) => ({
|
|
466
|
+
...obj,
|
|
467
|
+
});
|
|
468
|
+
export const UpdateShardCountOutputFilterSensitiveLog = (obj) => ({
|
|
469
|
+
...obj,
|
|
470
|
+
});
|
|
471
|
+
export const UpdateStreamModeInputFilterSensitiveLog = (obj) => ({
|
|
472
|
+
...obj,
|
|
473
|
+
});
|