@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.
Files changed (46) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-es/Ivs.js +114 -121
  3. package/dist-es/IvsClient.js +22 -28
  4. package/dist-es/commands/BatchGetChannelCommand.js +21 -28
  5. package/dist-es/commands/BatchGetStreamKeyCommand.js +21 -28
  6. package/dist-es/commands/CreateChannelCommand.js +21 -28
  7. package/dist-es/commands/CreateRecordingConfigurationCommand.js +21 -28
  8. package/dist-es/commands/CreateStreamKeyCommand.js +21 -28
  9. package/dist-es/commands/DeleteChannelCommand.js +22 -29
  10. package/dist-es/commands/DeletePlaybackKeyPairCommand.js +21 -28
  11. package/dist-es/commands/DeleteRecordingConfigurationCommand.js +22 -29
  12. package/dist-es/commands/DeleteStreamKeyCommand.js +22 -29
  13. package/dist-es/commands/GetChannelCommand.js +21 -28
  14. package/dist-es/commands/GetPlaybackKeyPairCommand.js +21 -28
  15. package/dist-es/commands/GetRecordingConfigurationCommand.js +21 -28
  16. package/dist-es/commands/GetStreamCommand.js +21 -28
  17. package/dist-es/commands/GetStreamKeyCommand.js +21 -28
  18. package/dist-es/commands/GetStreamSessionCommand.js +21 -28
  19. package/dist-es/commands/ImportPlaybackKeyPairCommand.js +21 -28
  20. package/dist-es/commands/ListChannelsCommand.js +21 -28
  21. package/dist-es/commands/ListPlaybackKeyPairsCommand.js +21 -28
  22. package/dist-es/commands/ListRecordingConfigurationsCommand.js +21 -28
  23. package/dist-es/commands/ListStreamKeysCommand.js +21 -28
  24. package/dist-es/commands/ListStreamSessionsCommand.js +21 -28
  25. package/dist-es/commands/ListStreamsCommand.js +21 -28
  26. package/dist-es/commands/ListTagsForResourceCommand.js +21 -28
  27. package/dist-es/commands/PutMetadataCommand.js +22 -29
  28. package/dist-es/commands/StopStreamCommand.js +21 -28
  29. package/dist-es/commands/TagResourceCommand.js +21 -28
  30. package/dist-es/commands/UntagResourceCommand.js +21 -28
  31. package/dist-es/commands/UpdateChannelCommand.js +21 -28
  32. package/dist-es/endpoints.js +8 -8
  33. package/dist-es/models/IvsServiceException.js +5 -10
  34. package/dist-es/models/models_0.js +345 -194
  35. package/dist-es/pagination/ListChannelsPaginator.js +25 -68
  36. package/dist-es/pagination/ListPlaybackKeyPairsPaginator.js +25 -68
  37. package/dist-es/pagination/ListRecordingConfigurationsPaginator.js +25 -68
  38. package/dist-es/pagination/ListStreamKeysPaginator.js +25 -68
  39. package/dist-es/pagination/ListStreamSessionsPaginator.js +25 -68
  40. package/dist-es/pagination/ListStreamsPaginator.js +25 -68
  41. package/dist-es/protocols/Aws_restJson1.js +1905 -2692
  42. package/dist-es/runtimeConfig.browser.js +26 -12
  43. package/dist-es/runtimeConfig.js +30 -12
  44. package/dist-es/runtimeConfig.native.js +8 -5
  45. package/dist-es/runtimeConfig.shared.js +8 -11
  46. 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
- var AccessDeniedException = (function (_super) {
5
- __extends(AccessDeniedException, _super);
6
- function AccessDeniedException(opts) {
7
- var _this = _super.call(this, __assign({ name: "AccessDeniedException", $fault: "client" }, opts)) || this;
8
- _this.name = "AccessDeniedException";
9
- _this.$fault = "client";
10
- Object.setPrototypeOf(_this, AccessDeniedException.prototype);
11
- _this.exceptionMessage = opts.exceptionMessage;
12
- return _this;
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
- return AccessDeniedException;
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
- var PendingVerification = (function (_super) {
28
- __extends(PendingVerification, _super);
29
- function PendingVerification(opts) {
30
- var _this = _super.call(this, __assign({ name: "PendingVerification", $fault: "client" }, opts)) || this;
31
- _this.name = "PendingVerification";
32
- _this.$fault = "client";
33
- Object.setPrototypeOf(_this, PendingVerification.prototype);
34
- _this.exceptionMessage = opts.exceptionMessage;
35
- return _this;
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
- return PendingVerification;
38
- }(__BaseException));
39
- export { PendingVerification };
40
- var ResourceNotFoundException = (function (_super) {
41
- __extends(ResourceNotFoundException, _super);
42
- function ResourceNotFoundException(opts) {
43
- var _this = _super.call(this, __assign({ name: "ResourceNotFoundException", $fault: "client" }, opts)) || this;
44
- _this.name = "ResourceNotFoundException";
45
- _this.$fault = "client";
46
- Object.setPrototypeOf(_this, ResourceNotFoundException.prototype);
47
- _this.exceptionMessage = opts.exceptionMessage;
48
- return _this;
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
- return ResourceNotFoundException;
51
- }(__BaseException));
52
- export { ResourceNotFoundException };
53
- var ServiceQuotaExceededException = (function (_super) {
54
- __extends(ServiceQuotaExceededException, _super);
55
- function ServiceQuotaExceededException(opts) {
56
- var _this = _super.call(this, __assign({ name: "ServiceQuotaExceededException", $fault: "client" }, opts)) || this;
57
- _this.name = "ServiceQuotaExceededException";
58
- _this.$fault = "client";
59
- Object.setPrototypeOf(_this, ServiceQuotaExceededException.prototype);
60
- _this.exceptionMessage = opts.exceptionMessage;
61
- return _this;
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
- return ServiceQuotaExceededException;
64
- }(__BaseException));
65
- export { ServiceQuotaExceededException };
66
- var ValidationException = (function (_super) {
67
- __extends(ValidationException, _super);
68
- function ValidationException(opts) {
69
- var _this = _super.call(this, __assign({ name: "ValidationException", $fault: "client" }, opts)) || this;
70
- _this.name = "ValidationException";
71
- _this.$fault = "client";
72
- Object.setPrototypeOf(_this, ValidationException.prototype);
73
- _this.exceptionMessage = opts.exceptionMessage;
74
- return _this;
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
- return ValidationException;
77
- }(__BaseException));
78
- export { ValidationException };
79
- var ConflictException = (function (_super) {
80
- __extends(ConflictException, _super);
81
- function ConflictException(opts) {
82
- var _this = _super.call(this, __assign({ name: "ConflictException", $fault: "client" }, opts)) || this;
83
- _this.name = "ConflictException";
84
- _this.$fault = "client";
85
- Object.setPrototypeOf(_this, ConflictException.prototype);
86
- _this.exceptionMessage = opts.exceptionMessage;
87
- return _this;
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
- return ConflictException;
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
- var InternalServerException = (function (_super) {
104
- __extends(InternalServerException, _super);
105
- function InternalServerException(opts) {
106
- var _this = _super.call(this, __assign({ name: "InternalServerException", $fault: "server" }, opts)) || this;
107
- _this.name = "InternalServerException";
108
- _this.$fault = "server";
109
- Object.setPrototypeOf(_this, InternalServerException.prototype);
110
- _this.exceptionMessage = opts.exceptionMessage;
111
- return _this;
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
- return InternalServerException;
114
- }(__BaseException));
115
- export { InternalServerException };
116
- var ChannelNotBroadcasting = (function (_super) {
117
- __extends(ChannelNotBroadcasting, _super);
118
- function ChannelNotBroadcasting(opts) {
119
- var _this = _super.call(this, __assign({ name: "ChannelNotBroadcasting", $fault: "client" }, opts)) || this;
120
- _this.name = "ChannelNotBroadcasting";
121
- _this.$fault = "client";
122
- Object.setPrototypeOf(_this, ChannelNotBroadcasting.prototype);
123
- _this.exceptionMessage = opts.exceptionMessage;
124
- return _this;
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
- return ChannelNotBroadcasting;
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
- var ThrottlingException = (function (_super) {
141
- __extends(ThrottlingException, _super);
142
- function ThrottlingException(opts) {
143
- var _this = _super.call(this, __assign({ name: "ThrottlingException", $fault: "client" }, opts)) || this;
144
- _this.name = "ThrottlingException";
145
- _this.$fault = "client";
146
- Object.setPrototypeOf(_this, ThrottlingException.prototype);
147
- _this.exceptionMessage = opts.exceptionMessage;
148
- return _this;
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
- return ThrottlingException;
151
- }(__BaseException));
152
- export { ThrottlingException };
153
- var StreamUnavailable = (function (_super) {
154
- __extends(StreamUnavailable, _super);
155
- function StreamUnavailable(opts) {
156
- var _this = _super.call(this, __assign({ name: "StreamUnavailable", $fault: "server" }, opts)) || this;
157
- _this.name = "StreamUnavailable";
158
- _this.$fault = "server";
159
- Object.setPrototypeOf(_this, StreamUnavailable.prototype);
160
- _this.exceptionMessage = opts.exceptionMessage;
161
- return _this;
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
- return StreamUnavailable;
164
- }(__BaseException));
165
- export { StreamUnavailable };
166
- export var BatchGetChannelRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
167
- export var ChannelFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
168
- export var BatchErrorFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
169
- export var BatchGetChannelResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
170
- export var BatchGetStreamKeyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
171
- export var StreamKeyFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.value && { value: SENSITIVE_STRING }))); };
172
- export var BatchGetStreamKeyResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.streamKeys && { streamKeys: obj.streamKeys.map(function (item) { return StreamKeyFilterSensitiveLog(item); }) }))); };
173
- export var CreateChannelRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
174
- export var CreateChannelResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.streamKey && { streamKey: StreamKeyFilterSensitiveLog(obj.streamKey) }))); };
175
- export var S3DestinationConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
176
- export var DestinationConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
177
- export var ThumbnailConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
178
- export var CreateRecordingConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
179
- export var RecordingConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
180
- export var CreateRecordingConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
181
- export var CreateStreamKeyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
182
- export var CreateStreamKeyResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.streamKey && { streamKey: StreamKeyFilterSensitiveLog(obj.streamKey) }))); };
183
- export var DeleteChannelRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
184
- export var DeletePlaybackKeyPairRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
185
- export var DeletePlaybackKeyPairResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
186
- export var DeleteRecordingConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
187
- export var DeleteStreamKeyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
188
- export var GetChannelRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
189
- export var GetChannelResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
190
- export var GetPlaybackKeyPairRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
191
- export var PlaybackKeyPairFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
192
- export var GetPlaybackKeyPairResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
193
- export var GetRecordingConfigurationRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
194
- export var GetRecordingConfigurationResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
195
- export var GetStreamRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
196
- export var _StreamFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
197
- export var GetStreamResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
198
- export var GetStreamKeyRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
199
- export var GetStreamKeyResponseFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.streamKey && { streamKey: StreamKeyFilterSensitiveLog(obj.streamKey) }))); };
200
- export var GetStreamSessionRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
201
- export var AudioConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
202
- export var VideoConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
203
- export var IngestConfigurationFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
204
- export var StreamEventFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
205
- export var StreamSessionFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
206
- export var GetStreamSessionResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
207
- export var ImportPlaybackKeyPairRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
208
- export var ImportPlaybackKeyPairResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
209
- export var ListChannelsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
210
- export var ChannelSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
211
- export var ListChannelsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
212
- export var ListPlaybackKeyPairsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
213
- export var PlaybackKeyPairSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
214
- export var ListPlaybackKeyPairsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
215
- export var ListRecordingConfigurationsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
216
- export var RecordingConfigurationSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
217
- export var ListRecordingConfigurationsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
218
- export var ListStreamKeysRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
219
- export var StreamKeySummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
220
- export var ListStreamKeysResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
221
- export var StreamFiltersFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
222
- export var ListStreamsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
223
- export var StreamSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
224
- export var ListStreamsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
225
- export var ListStreamSessionsRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
226
- export var StreamSessionSummaryFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
227
- export var ListStreamSessionsResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
228
- export var ListTagsForResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
229
- export var ListTagsForResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
230
- export var PutMetadataRequestFilterSensitiveLog = function (obj) { return (__assign(__assign({}, obj), (obj.metadata && { metadata: SENSITIVE_STRING }))); };
231
- export var StopStreamRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
232
- export var StopStreamResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
233
- export var TagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
234
- export var TagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
235
- export var UntagResourceRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
236
- export var UntagResourceResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
237
- export var UpdateChannelRequestFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
238
- export var UpdateChannelResponseFilterSensitiveLog = function (obj) { return (__assign({}, obj)); };
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
+ });