@aws-sdk/client-ivs 3.185.0 → 3.188.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 +16 -0
- package/dist-es/Ivs.js +114 -121
- package/dist-es/IvsClient.js +22 -28
- package/dist-es/commands/BatchGetChannelCommand.js +21 -28
- package/dist-es/commands/BatchGetStreamKeyCommand.js +21 -28
- package/dist-es/commands/CreateChannelCommand.js +21 -28
- package/dist-es/commands/CreateRecordingConfigurationCommand.js +21 -28
- package/dist-es/commands/CreateStreamKeyCommand.js +21 -28
- package/dist-es/commands/DeleteChannelCommand.js +22 -29
- package/dist-es/commands/DeletePlaybackKeyPairCommand.js +21 -28
- package/dist-es/commands/DeleteRecordingConfigurationCommand.js +22 -29
- package/dist-es/commands/DeleteStreamKeyCommand.js +22 -29
- package/dist-es/commands/GetChannelCommand.js +21 -28
- package/dist-es/commands/GetPlaybackKeyPairCommand.js +21 -28
- package/dist-es/commands/GetRecordingConfigurationCommand.js +21 -28
- package/dist-es/commands/GetStreamCommand.js +21 -28
- package/dist-es/commands/GetStreamKeyCommand.js +21 -28
- package/dist-es/commands/GetStreamSessionCommand.js +21 -28
- package/dist-es/commands/ImportPlaybackKeyPairCommand.js +21 -28
- package/dist-es/commands/ListChannelsCommand.js +21 -28
- package/dist-es/commands/ListPlaybackKeyPairsCommand.js +21 -28
- package/dist-es/commands/ListRecordingConfigurationsCommand.js +21 -28
- package/dist-es/commands/ListStreamKeysCommand.js +21 -28
- package/dist-es/commands/ListStreamSessionsCommand.js +21 -28
- package/dist-es/commands/ListStreamsCommand.js +21 -28
- package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
- package/dist-es/commands/PutMetadataCommand.js +22 -29
- package/dist-es/commands/StopStreamCommand.js +21 -28
- package/dist-es/commands/TagResourceCommand.js +21 -28
- package/dist-es/commands/UntagResourceCommand.js +21 -28
- package/dist-es/commands/UpdateChannelCommand.js +21 -28
- package/dist-es/endpoints.js +8 -8
- package/dist-es/models/IvsServiceException.js +5 -10
- package/dist-es/models/models_0.js +345 -194
- package/dist-es/pagination/ListChannelsPaginator.js +25 -68
- package/dist-es/pagination/ListPlaybackKeyPairsPaginator.js +25 -68
- package/dist-es/pagination/ListRecordingConfigurationsPaginator.js +25 -68
- package/dist-es/pagination/ListStreamKeysPaginator.js +25 -68
- package/dist-es/pagination/ListStreamSessionsPaginator.js +25 -68
- package/dist-es/pagination/ListStreamsPaginator.js +25 -68
- package/dist-es/protocols/Aws_restJson1.js +1905 -2692
- package/dist-es/runtimeConfig.browser.js +26 -12
- package/dist-es/runtimeConfig.js +30 -12
- package/dist-es/runtimeConfig.native.js +8 -5
- package/dist-es/runtimeConfig.shared.js +8 -11
- package/package.json +33 -33
|
@@ -1,19 +1,18 @@
|
|
|
1
|
-
import { __assign, __extends } from "tslib";
|
|
2
1
|
import { SENSITIVE_STRING } from "@aws-sdk/smithy-client";
|
|
3
2
|
import { IvsServiceException as __BaseException } from "./IvsServiceException";
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
3
|
+
export class AccessDeniedException extends __BaseException {
|
|
4
|
+
constructor(opts) {
|
|
5
|
+
super({
|
|
6
|
+
name: "AccessDeniedException",
|
|
7
|
+
$fault: "client",
|
|
8
|
+
...opts,
|
|
9
|
+
});
|
|
10
|
+
this.name = "AccessDeniedException";
|
|
11
|
+
this.$fault = "client";
|
|
12
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
|
+
this.exceptionMessage = opts.exceptionMessage;
|
|
13
14
|
}
|
|
14
|
-
|
|
15
|
-
}(__BaseException));
|
|
16
|
-
export { AccessDeniedException };
|
|
15
|
+
}
|
|
17
16
|
export var ChannelLatencyMode;
|
|
18
17
|
(function (ChannelLatencyMode) {
|
|
19
18
|
ChannelLatencyMode["LowLatency"] = "LOW";
|
|
@@ -24,71 +23,71 @@ export var ChannelType;
|
|
|
24
23
|
ChannelType["BasicChannelType"] = "BASIC";
|
|
25
24
|
ChannelType["StandardChannelType"] = "STANDARD";
|
|
26
25
|
})(ChannelType || (ChannelType = {}));
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
26
|
+
export class PendingVerification extends __BaseException {
|
|
27
|
+
constructor(opts) {
|
|
28
|
+
super({
|
|
29
|
+
name: "PendingVerification",
|
|
30
|
+
$fault: "client",
|
|
31
|
+
...opts,
|
|
32
|
+
});
|
|
33
|
+
this.name = "PendingVerification";
|
|
34
|
+
this.$fault = "client";
|
|
35
|
+
Object.setPrototypeOf(this, PendingVerification.prototype);
|
|
36
|
+
this.exceptionMessage = opts.exceptionMessage;
|
|
36
37
|
}
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
38
|
+
}
|
|
39
|
+
export class ResourceNotFoundException extends __BaseException {
|
|
40
|
+
constructor(opts) {
|
|
41
|
+
super({
|
|
42
|
+
name: "ResourceNotFoundException",
|
|
43
|
+
$fault: "client",
|
|
44
|
+
...opts,
|
|
45
|
+
});
|
|
46
|
+
this.name = "ResourceNotFoundException";
|
|
47
|
+
this.$fault = "client";
|
|
48
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
49
|
+
this.exceptionMessage = opts.exceptionMessage;
|
|
49
50
|
}
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
51
|
+
}
|
|
52
|
+
export class ServiceQuotaExceededException extends __BaseException {
|
|
53
|
+
constructor(opts) {
|
|
54
|
+
super({
|
|
55
|
+
name: "ServiceQuotaExceededException",
|
|
56
|
+
$fault: "client",
|
|
57
|
+
...opts,
|
|
58
|
+
});
|
|
59
|
+
this.name = "ServiceQuotaExceededException";
|
|
60
|
+
this.$fault = "client";
|
|
61
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
62
|
+
this.exceptionMessage = opts.exceptionMessage;
|
|
62
63
|
}
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
64
|
+
}
|
|
65
|
+
export class ValidationException extends __BaseException {
|
|
66
|
+
constructor(opts) {
|
|
67
|
+
super({
|
|
68
|
+
name: "ValidationException",
|
|
69
|
+
$fault: "client",
|
|
70
|
+
...opts,
|
|
71
|
+
});
|
|
72
|
+
this.name = "ValidationException";
|
|
73
|
+
this.$fault = "client";
|
|
74
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
75
|
+
this.exceptionMessage = opts.exceptionMessage;
|
|
75
76
|
}
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
77
|
+
}
|
|
78
|
+
export class ConflictException extends __BaseException {
|
|
79
|
+
constructor(opts) {
|
|
80
|
+
super({
|
|
81
|
+
name: "ConflictException",
|
|
82
|
+
$fault: "client",
|
|
83
|
+
...opts,
|
|
84
|
+
});
|
|
85
|
+
this.name = "ConflictException";
|
|
86
|
+
this.$fault = "client";
|
|
87
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
88
|
+
this.exceptionMessage = opts.exceptionMessage;
|
|
88
89
|
}
|
|
89
|
-
|
|
90
|
-
}(__BaseException));
|
|
91
|
-
export { ConflictException };
|
|
90
|
+
}
|
|
92
91
|
export var RecordingMode;
|
|
93
92
|
(function (RecordingMode) {
|
|
94
93
|
RecordingMode["Disabled"] = "DISABLED";
|
|
@@ -100,32 +99,32 @@ export var RecordingConfigurationState;
|
|
|
100
99
|
RecordingConfigurationState["CreateFailed"] = "CREATE_FAILED";
|
|
101
100
|
RecordingConfigurationState["Creating"] = "CREATING";
|
|
102
101
|
})(RecordingConfigurationState || (RecordingConfigurationState = {}));
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
102
|
+
export class InternalServerException extends __BaseException {
|
|
103
|
+
constructor(opts) {
|
|
104
|
+
super({
|
|
105
|
+
name: "InternalServerException",
|
|
106
|
+
$fault: "server",
|
|
107
|
+
...opts,
|
|
108
|
+
});
|
|
109
|
+
this.name = "InternalServerException";
|
|
110
|
+
this.$fault = "server";
|
|
111
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
112
|
+
this.exceptionMessage = opts.exceptionMessage;
|
|
112
113
|
}
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
114
|
+
}
|
|
115
|
+
export class ChannelNotBroadcasting extends __BaseException {
|
|
116
|
+
constructor(opts) {
|
|
117
|
+
super({
|
|
118
|
+
name: "ChannelNotBroadcasting",
|
|
119
|
+
$fault: "client",
|
|
120
|
+
...opts,
|
|
121
|
+
});
|
|
122
|
+
this.name = "ChannelNotBroadcasting";
|
|
123
|
+
this.$fault = "client";
|
|
124
|
+
Object.setPrototypeOf(this, ChannelNotBroadcasting.prototype);
|
|
125
|
+
this.exceptionMessage = opts.exceptionMessage;
|
|
125
126
|
}
|
|
126
|
-
|
|
127
|
-
}(__BaseException));
|
|
128
|
-
export { ChannelNotBroadcasting };
|
|
127
|
+
}
|
|
129
128
|
export var StreamHealth;
|
|
130
129
|
(function (StreamHealth) {
|
|
131
130
|
StreamHealth["Starving"] = "STARVING";
|
|
@@ -137,102 +136,254 @@ export var StreamState;
|
|
|
137
136
|
StreamState["StreamLive"] = "LIVE";
|
|
138
137
|
StreamState["StreamOffline"] = "OFFLINE";
|
|
139
138
|
})(StreamState || (StreamState = {}));
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
139
|
+
export class ThrottlingException extends __BaseException {
|
|
140
|
+
constructor(opts) {
|
|
141
|
+
super({
|
|
142
|
+
name: "ThrottlingException",
|
|
143
|
+
$fault: "client",
|
|
144
|
+
...opts,
|
|
145
|
+
});
|
|
146
|
+
this.name = "ThrottlingException";
|
|
147
|
+
this.$fault = "client";
|
|
148
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
149
|
+
this.exceptionMessage = opts.exceptionMessage;
|
|
149
150
|
}
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
151
|
+
}
|
|
152
|
+
export class StreamUnavailable extends __BaseException {
|
|
153
|
+
constructor(opts) {
|
|
154
|
+
super({
|
|
155
|
+
name: "StreamUnavailable",
|
|
156
|
+
$fault: "server",
|
|
157
|
+
...opts,
|
|
158
|
+
});
|
|
159
|
+
this.name = "StreamUnavailable";
|
|
160
|
+
this.$fault = "server";
|
|
161
|
+
Object.setPrototypeOf(this, StreamUnavailable.prototype);
|
|
162
|
+
this.exceptionMessage = opts.exceptionMessage;
|
|
162
163
|
}
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
export
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
export
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
export
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
export
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
export
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
export
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
export
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
export
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
export
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
export
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
export
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
export
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
export
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
export
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
export
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
export
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
export
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
export
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
export
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
export
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
export
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
export
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
export
|
|
238
|
-
|
|
164
|
+
}
|
|
165
|
+
export const BatchGetChannelRequestFilterSensitiveLog = (obj) => ({
|
|
166
|
+
...obj,
|
|
167
|
+
});
|
|
168
|
+
export const ChannelFilterSensitiveLog = (obj) => ({
|
|
169
|
+
...obj,
|
|
170
|
+
});
|
|
171
|
+
export const BatchErrorFilterSensitiveLog = (obj) => ({
|
|
172
|
+
...obj,
|
|
173
|
+
});
|
|
174
|
+
export const BatchGetChannelResponseFilterSensitiveLog = (obj) => ({
|
|
175
|
+
...obj,
|
|
176
|
+
});
|
|
177
|
+
export const BatchGetStreamKeyRequestFilterSensitiveLog = (obj) => ({
|
|
178
|
+
...obj,
|
|
179
|
+
});
|
|
180
|
+
export const StreamKeyFilterSensitiveLog = (obj) => ({
|
|
181
|
+
...obj,
|
|
182
|
+
...(obj.value && { value: SENSITIVE_STRING }),
|
|
183
|
+
});
|
|
184
|
+
export const BatchGetStreamKeyResponseFilterSensitiveLog = (obj) => ({
|
|
185
|
+
...obj,
|
|
186
|
+
...(obj.streamKeys && { streamKeys: obj.streamKeys.map((item) => StreamKeyFilterSensitiveLog(item)) }),
|
|
187
|
+
});
|
|
188
|
+
export const CreateChannelRequestFilterSensitiveLog = (obj) => ({
|
|
189
|
+
...obj,
|
|
190
|
+
});
|
|
191
|
+
export const CreateChannelResponseFilterSensitiveLog = (obj) => ({
|
|
192
|
+
...obj,
|
|
193
|
+
...(obj.streamKey && { streamKey: StreamKeyFilterSensitiveLog(obj.streamKey) }),
|
|
194
|
+
});
|
|
195
|
+
export const S3DestinationConfigurationFilterSensitiveLog = (obj) => ({
|
|
196
|
+
...obj,
|
|
197
|
+
});
|
|
198
|
+
export const DestinationConfigurationFilterSensitiveLog = (obj) => ({
|
|
199
|
+
...obj,
|
|
200
|
+
});
|
|
201
|
+
export const ThumbnailConfigurationFilterSensitiveLog = (obj) => ({
|
|
202
|
+
...obj,
|
|
203
|
+
});
|
|
204
|
+
export const CreateRecordingConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
205
|
+
...obj,
|
|
206
|
+
});
|
|
207
|
+
export const RecordingConfigurationFilterSensitiveLog = (obj) => ({
|
|
208
|
+
...obj,
|
|
209
|
+
});
|
|
210
|
+
export const CreateRecordingConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
211
|
+
...obj,
|
|
212
|
+
});
|
|
213
|
+
export const CreateStreamKeyRequestFilterSensitiveLog = (obj) => ({
|
|
214
|
+
...obj,
|
|
215
|
+
});
|
|
216
|
+
export const CreateStreamKeyResponseFilterSensitiveLog = (obj) => ({
|
|
217
|
+
...obj,
|
|
218
|
+
...(obj.streamKey && { streamKey: StreamKeyFilterSensitiveLog(obj.streamKey) }),
|
|
219
|
+
});
|
|
220
|
+
export const DeleteChannelRequestFilterSensitiveLog = (obj) => ({
|
|
221
|
+
...obj,
|
|
222
|
+
});
|
|
223
|
+
export const DeletePlaybackKeyPairRequestFilterSensitiveLog = (obj) => ({
|
|
224
|
+
...obj,
|
|
225
|
+
});
|
|
226
|
+
export const DeletePlaybackKeyPairResponseFilterSensitiveLog = (obj) => ({
|
|
227
|
+
...obj,
|
|
228
|
+
});
|
|
229
|
+
export const DeleteRecordingConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
230
|
+
...obj,
|
|
231
|
+
});
|
|
232
|
+
export const DeleteStreamKeyRequestFilterSensitiveLog = (obj) => ({
|
|
233
|
+
...obj,
|
|
234
|
+
});
|
|
235
|
+
export const GetChannelRequestFilterSensitiveLog = (obj) => ({
|
|
236
|
+
...obj,
|
|
237
|
+
});
|
|
238
|
+
export const GetChannelResponseFilterSensitiveLog = (obj) => ({
|
|
239
|
+
...obj,
|
|
240
|
+
});
|
|
241
|
+
export const GetPlaybackKeyPairRequestFilterSensitiveLog = (obj) => ({
|
|
242
|
+
...obj,
|
|
243
|
+
});
|
|
244
|
+
export const PlaybackKeyPairFilterSensitiveLog = (obj) => ({
|
|
245
|
+
...obj,
|
|
246
|
+
});
|
|
247
|
+
export const GetPlaybackKeyPairResponseFilterSensitiveLog = (obj) => ({
|
|
248
|
+
...obj,
|
|
249
|
+
});
|
|
250
|
+
export const GetRecordingConfigurationRequestFilterSensitiveLog = (obj) => ({
|
|
251
|
+
...obj,
|
|
252
|
+
});
|
|
253
|
+
export const GetRecordingConfigurationResponseFilterSensitiveLog = (obj) => ({
|
|
254
|
+
...obj,
|
|
255
|
+
});
|
|
256
|
+
export const GetStreamRequestFilterSensitiveLog = (obj) => ({
|
|
257
|
+
...obj,
|
|
258
|
+
});
|
|
259
|
+
export const _StreamFilterSensitiveLog = (obj) => ({
|
|
260
|
+
...obj,
|
|
261
|
+
});
|
|
262
|
+
export const GetStreamResponseFilterSensitiveLog = (obj) => ({
|
|
263
|
+
...obj,
|
|
264
|
+
});
|
|
265
|
+
export const GetStreamKeyRequestFilterSensitiveLog = (obj) => ({
|
|
266
|
+
...obj,
|
|
267
|
+
});
|
|
268
|
+
export const GetStreamKeyResponseFilterSensitiveLog = (obj) => ({
|
|
269
|
+
...obj,
|
|
270
|
+
...(obj.streamKey && { streamKey: StreamKeyFilterSensitiveLog(obj.streamKey) }),
|
|
271
|
+
});
|
|
272
|
+
export const GetStreamSessionRequestFilterSensitiveLog = (obj) => ({
|
|
273
|
+
...obj,
|
|
274
|
+
});
|
|
275
|
+
export const AudioConfigurationFilterSensitiveLog = (obj) => ({
|
|
276
|
+
...obj,
|
|
277
|
+
});
|
|
278
|
+
export const VideoConfigurationFilterSensitiveLog = (obj) => ({
|
|
279
|
+
...obj,
|
|
280
|
+
});
|
|
281
|
+
export const IngestConfigurationFilterSensitiveLog = (obj) => ({
|
|
282
|
+
...obj,
|
|
283
|
+
});
|
|
284
|
+
export const StreamEventFilterSensitiveLog = (obj) => ({
|
|
285
|
+
...obj,
|
|
286
|
+
});
|
|
287
|
+
export const StreamSessionFilterSensitiveLog = (obj) => ({
|
|
288
|
+
...obj,
|
|
289
|
+
});
|
|
290
|
+
export const GetStreamSessionResponseFilterSensitiveLog = (obj) => ({
|
|
291
|
+
...obj,
|
|
292
|
+
});
|
|
293
|
+
export const ImportPlaybackKeyPairRequestFilterSensitiveLog = (obj) => ({
|
|
294
|
+
...obj,
|
|
295
|
+
});
|
|
296
|
+
export const ImportPlaybackKeyPairResponseFilterSensitiveLog = (obj) => ({
|
|
297
|
+
...obj,
|
|
298
|
+
});
|
|
299
|
+
export const ListChannelsRequestFilterSensitiveLog = (obj) => ({
|
|
300
|
+
...obj,
|
|
301
|
+
});
|
|
302
|
+
export const ChannelSummaryFilterSensitiveLog = (obj) => ({
|
|
303
|
+
...obj,
|
|
304
|
+
});
|
|
305
|
+
export const ListChannelsResponseFilterSensitiveLog = (obj) => ({
|
|
306
|
+
...obj,
|
|
307
|
+
});
|
|
308
|
+
export const ListPlaybackKeyPairsRequestFilterSensitiveLog = (obj) => ({
|
|
309
|
+
...obj,
|
|
310
|
+
});
|
|
311
|
+
export const PlaybackKeyPairSummaryFilterSensitiveLog = (obj) => ({
|
|
312
|
+
...obj,
|
|
313
|
+
});
|
|
314
|
+
export const ListPlaybackKeyPairsResponseFilterSensitiveLog = (obj) => ({
|
|
315
|
+
...obj,
|
|
316
|
+
});
|
|
317
|
+
export const ListRecordingConfigurationsRequestFilterSensitiveLog = (obj) => ({
|
|
318
|
+
...obj,
|
|
319
|
+
});
|
|
320
|
+
export const RecordingConfigurationSummaryFilterSensitiveLog = (obj) => ({
|
|
321
|
+
...obj,
|
|
322
|
+
});
|
|
323
|
+
export const ListRecordingConfigurationsResponseFilterSensitiveLog = (obj) => ({
|
|
324
|
+
...obj,
|
|
325
|
+
});
|
|
326
|
+
export const ListStreamKeysRequestFilterSensitiveLog = (obj) => ({
|
|
327
|
+
...obj,
|
|
328
|
+
});
|
|
329
|
+
export const StreamKeySummaryFilterSensitiveLog = (obj) => ({
|
|
330
|
+
...obj,
|
|
331
|
+
});
|
|
332
|
+
export const ListStreamKeysResponseFilterSensitiveLog = (obj) => ({
|
|
333
|
+
...obj,
|
|
334
|
+
});
|
|
335
|
+
export const StreamFiltersFilterSensitiveLog = (obj) => ({
|
|
336
|
+
...obj,
|
|
337
|
+
});
|
|
338
|
+
export const ListStreamsRequestFilterSensitiveLog = (obj) => ({
|
|
339
|
+
...obj,
|
|
340
|
+
});
|
|
341
|
+
export const StreamSummaryFilterSensitiveLog = (obj) => ({
|
|
342
|
+
...obj,
|
|
343
|
+
});
|
|
344
|
+
export const ListStreamsResponseFilterSensitiveLog = (obj) => ({
|
|
345
|
+
...obj,
|
|
346
|
+
});
|
|
347
|
+
export const ListStreamSessionsRequestFilterSensitiveLog = (obj) => ({
|
|
348
|
+
...obj,
|
|
349
|
+
});
|
|
350
|
+
export const StreamSessionSummaryFilterSensitiveLog = (obj) => ({
|
|
351
|
+
...obj,
|
|
352
|
+
});
|
|
353
|
+
export const ListStreamSessionsResponseFilterSensitiveLog = (obj) => ({
|
|
354
|
+
...obj,
|
|
355
|
+
});
|
|
356
|
+
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
357
|
+
...obj,
|
|
358
|
+
});
|
|
359
|
+
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
360
|
+
...obj,
|
|
361
|
+
});
|
|
362
|
+
export const PutMetadataRequestFilterSensitiveLog = (obj) => ({
|
|
363
|
+
...obj,
|
|
364
|
+
...(obj.metadata && { metadata: SENSITIVE_STRING }),
|
|
365
|
+
});
|
|
366
|
+
export const StopStreamRequestFilterSensitiveLog = (obj) => ({
|
|
367
|
+
...obj,
|
|
368
|
+
});
|
|
369
|
+
export const StopStreamResponseFilterSensitiveLog = (obj) => ({
|
|
370
|
+
...obj,
|
|
371
|
+
});
|
|
372
|
+
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
373
|
+
...obj,
|
|
374
|
+
});
|
|
375
|
+
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
376
|
+
...obj,
|
|
377
|
+
});
|
|
378
|
+
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
379
|
+
...obj,
|
|
380
|
+
});
|
|
381
|
+
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
382
|
+
...obj,
|
|
383
|
+
});
|
|
384
|
+
export const UpdateChannelRequestFilterSensitiveLog = (obj) => ({
|
|
385
|
+
...obj,
|
|
386
|
+
});
|
|
387
|
+
export const UpdateChannelResponseFilterSensitiveLog = (obj) => ({
|
|
388
|
+
...obj,
|
|
389
|
+
});
|