@aws-sdk/client-mediaconnect 3.716.0 → 3.723.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/dist-cjs/index.js +456 -233
- package/dist-es/MediaConnectClient.js +1 -0
- package/dist-es/models/models_0.js +44 -28
- package/dist-es/protocols/Aws_restJson1.js +94 -0
- package/dist-types/commands/CreateFlowCommand.d.ts +42 -0
- package/dist-types/commands/DescribeFlowCommand.d.ts +21 -0
- package/dist-types/commands/UpdateFlowCommand.d.ts +42 -0
- package/dist-types/models/models_0.d.ts +114 -12
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/models/models_0.d.ts +33 -5
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +44 -44
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class MediaConnectClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -71,6 +71,10 @@ export const OutputStatus = {
|
|
|
71
71
|
DISABLED: "DISABLED",
|
|
72
72
|
ENABLED: "ENABLED",
|
|
73
73
|
};
|
|
74
|
+
export const State = {
|
|
75
|
+
DISABLED: "DISABLED",
|
|
76
|
+
ENABLED: "ENABLED",
|
|
77
|
+
};
|
|
74
78
|
export const EntitlementStatus = {
|
|
75
79
|
DISABLED: "DISABLED",
|
|
76
80
|
ENABLED: "ENABLED",
|
|
@@ -147,105 +151,113 @@ export const NetworkInterfaceType = {
|
|
|
147
151
|
ena: "ena",
|
|
148
152
|
};
|
|
149
153
|
export class BadRequestException extends __BaseException {
|
|
154
|
+
name = "BadRequestException";
|
|
155
|
+
$fault = "client";
|
|
156
|
+
Message;
|
|
150
157
|
constructor(opts) {
|
|
151
158
|
super({
|
|
152
159
|
name: "BadRequestException",
|
|
153
160
|
$fault: "client",
|
|
154
161
|
...opts,
|
|
155
162
|
});
|
|
156
|
-
this.name = "BadRequestException";
|
|
157
|
-
this.$fault = "client";
|
|
158
163
|
Object.setPrototypeOf(this, BadRequestException.prototype);
|
|
159
164
|
this.Message = opts.Message;
|
|
160
165
|
}
|
|
161
166
|
}
|
|
162
167
|
export class ConflictException extends __BaseException {
|
|
168
|
+
name = "ConflictException";
|
|
169
|
+
$fault = "client";
|
|
170
|
+
Message;
|
|
163
171
|
constructor(opts) {
|
|
164
172
|
super({
|
|
165
173
|
name: "ConflictException",
|
|
166
174
|
$fault: "client",
|
|
167
175
|
...opts,
|
|
168
176
|
});
|
|
169
|
-
this.name = "ConflictException";
|
|
170
|
-
this.$fault = "client";
|
|
171
177
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
172
178
|
this.Message = opts.Message;
|
|
173
179
|
}
|
|
174
180
|
}
|
|
175
181
|
export class ForbiddenException extends __BaseException {
|
|
182
|
+
name = "ForbiddenException";
|
|
183
|
+
$fault = "client";
|
|
184
|
+
Message;
|
|
176
185
|
constructor(opts) {
|
|
177
186
|
super({
|
|
178
187
|
name: "ForbiddenException",
|
|
179
188
|
$fault: "client",
|
|
180
189
|
...opts,
|
|
181
190
|
});
|
|
182
|
-
this.name = "ForbiddenException";
|
|
183
|
-
this.$fault = "client";
|
|
184
191
|
Object.setPrototypeOf(this, ForbiddenException.prototype);
|
|
185
192
|
this.Message = opts.Message;
|
|
186
193
|
}
|
|
187
194
|
}
|
|
188
195
|
export class InternalServerErrorException extends __BaseException {
|
|
196
|
+
name = "InternalServerErrorException";
|
|
197
|
+
$fault = "server";
|
|
198
|
+
Message;
|
|
189
199
|
constructor(opts) {
|
|
190
200
|
super({
|
|
191
201
|
name: "InternalServerErrorException",
|
|
192
202
|
$fault: "server",
|
|
193
203
|
...opts,
|
|
194
204
|
});
|
|
195
|
-
this.name = "InternalServerErrorException";
|
|
196
|
-
this.$fault = "server";
|
|
197
205
|
Object.setPrototypeOf(this, InternalServerErrorException.prototype);
|
|
198
206
|
this.Message = opts.Message;
|
|
199
207
|
}
|
|
200
208
|
}
|
|
201
209
|
export class NotFoundException extends __BaseException {
|
|
210
|
+
name = "NotFoundException";
|
|
211
|
+
$fault = "client";
|
|
212
|
+
Message;
|
|
202
213
|
constructor(opts) {
|
|
203
214
|
super({
|
|
204
215
|
name: "NotFoundException",
|
|
205
216
|
$fault: "client",
|
|
206
217
|
...opts,
|
|
207
218
|
});
|
|
208
|
-
this.name = "NotFoundException";
|
|
209
|
-
this.$fault = "client";
|
|
210
219
|
Object.setPrototypeOf(this, NotFoundException.prototype);
|
|
211
220
|
this.Message = opts.Message;
|
|
212
221
|
}
|
|
213
222
|
}
|
|
214
223
|
export class ServiceUnavailableException extends __BaseException {
|
|
224
|
+
name = "ServiceUnavailableException";
|
|
225
|
+
$fault = "server";
|
|
226
|
+
Message;
|
|
215
227
|
constructor(opts) {
|
|
216
228
|
super({
|
|
217
229
|
name: "ServiceUnavailableException",
|
|
218
230
|
$fault: "server",
|
|
219
231
|
...opts,
|
|
220
232
|
});
|
|
221
|
-
this.name = "ServiceUnavailableException";
|
|
222
|
-
this.$fault = "server";
|
|
223
233
|
Object.setPrototypeOf(this, ServiceUnavailableException.prototype);
|
|
224
234
|
this.Message = opts.Message;
|
|
225
235
|
}
|
|
226
236
|
}
|
|
227
237
|
export class TooManyRequestsException extends __BaseException {
|
|
238
|
+
name = "TooManyRequestsException";
|
|
239
|
+
$fault = "client";
|
|
240
|
+
Message;
|
|
228
241
|
constructor(opts) {
|
|
229
242
|
super({
|
|
230
243
|
name: "TooManyRequestsException",
|
|
231
244
|
$fault: "client",
|
|
232
245
|
...opts,
|
|
233
246
|
});
|
|
234
|
-
this.name = "TooManyRequestsException";
|
|
235
|
-
this.$fault = "client";
|
|
236
247
|
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
237
248
|
this.Message = opts.Message;
|
|
238
249
|
}
|
|
239
250
|
}
|
|
240
251
|
export class AddFlowOutputs420Exception extends __BaseException {
|
|
252
|
+
name = "AddFlowOutputs420Exception";
|
|
253
|
+
$fault = "client";
|
|
254
|
+
Message;
|
|
241
255
|
constructor(opts) {
|
|
242
256
|
super({
|
|
243
257
|
name: "AddFlowOutputs420Exception",
|
|
244
258
|
$fault: "client",
|
|
245
259
|
...opts,
|
|
246
260
|
});
|
|
247
|
-
this.name = "AddFlowOutputs420Exception";
|
|
248
|
-
this.$fault = "client";
|
|
249
261
|
Object.setPrototypeOf(this, AddFlowOutputs420Exception.prototype);
|
|
250
262
|
this.Message = opts.Message;
|
|
251
263
|
}
|
|
@@ -254,10 +266,6 @@ export const FailoverMode = {
|
|
|
254
266
|
FAILOVER: "FAILOVER",
|
|
255
267
|
MERGE: "MERGE",
|
|
256
268
|
};
|
|
257
|
-
export const State = {
|
|
258
|
-
DISABLED: "DISABLED",
|
|
259
|
-
ENABLED: "ENABLED",
|
|
260
|
-
};
|
|
261
269
|
export const BridgePlacement = {
|
|
262
270
|
AVAILABLE: "AVAILABLE",
|
|
263
271
|
LOCKED: "LOCKED",
|
|
@@ -266,28 +274,34 @@ export const ConnectionStatus = {
|
|
|
266
274
|
CONNECTED: "CONNECTED",
|
|
267
275
|
DISCONNECTED: "DISCONNECTED",
|
|
268
276
|
};
|
|
277
|
+
export const ContentQualityAnalysisState = {
|
|
278
|
+
DISABLED: "DISABLED",
|
|
279
|
+
ENABLED: "ENABLED",
|
|
280
|
+
};
|
|
269
281
|
export class CreateBridge420Exception extends __BaseException {
|
|
282
|
+
name = "CreateBridge420Exception";
|
|
283
|
+
$fault = "client";
|
|
284
|
+
Message;
|
|
270
285
|
constructor(opts) {
|
|
271
286
|
super({
|
|
272
287
|
name: "CreateBridge420Exception",
|
|
273
288
|
$fault: "client",
|
|
274
289
|
...opts,
|
|
275
290
|
});
|
|
276
|
-
this.name = "CreateBridge420Exception";
|
|
277
|
-
this.$fault = "client";
|
|
278
291
|
Object.setPrototypeOf(this, CreateBridge420Exception.prototype);
|
|
279
292
|
this.Message = opts.Message;
|
|
280
293
|
}
|
|
281
294
|
}
|
|
282
295
|
export class CreateFlow420Exception extends __BaseException {
|
|
296
|
+
name = "CreateFlow420Exception";
|
|
297
|
+
$fault = "client";
|
|
298
|
+
Message;
|
|
283
299
|
constructor(opts) {
|
|
284
300
|
super({
|
|
285
301
|
name: "CreateFlow420Exception",
|
|
286
302
|
$fault: "client",
|
|
287
303
|
...opts,
|
|
288
304
|
});
|
|
289
|
-
this.name = "CreateFlow420Exception";
|
|
290
|
-
this.$fault = "client";
|
|
291
305
|
Object.setPrototypeOf(this, CreateFlow420Exception.prototype);
|
|
292
306
|
this.Message = opts.Message;
|
|
293
307
|
}
|
|
@@ -297,14 +311,15 @@ export const ThumbnailState = {
|
|
|
297
311
|
ENABLED: "ENABLED",
|
|
298
312
|
};
|
|
299
313
|
export class CreateGateway420Exception extends __BaseException {
|
|
314
|
+
name = "CreateGateway420Exception";
|
|
315
|
+
$fault = "client";
|
|
316
|
+
Message;
|
|
300
317
|
constructor(opts) {
|
|
301
318
|
super({
|
|
302
319
|
name: "CreateGateway420Exception",
|
|
303
320
|
$fault: "client",
|
|
304
321
|
...opts,
|
|
305
322
|
});
|
|
306
|
-
this.name = "CreateGateway420Exception";
|
|
307
|
-
this.$fault = "client";
|
|
308
323
|
Object.setPrototypeOf(this, CreateGateway420Exception.prototype);
|
|
309
324
|
this.Message = opts.Message;
|
|
310
325
|
}
|
|
@@ -315,14 +330,15 @@ export const DesiredState = {
|
|
|
315
330
|
STANDBY: "STANDBY",
|
|
316
331
|
};
|
|
317
332
|
export class GrantFlowEntitlements420Exception extends __BaseException {
|
|
333
|
+
name = "GrantFlowEntitlements420Exception";
|
|
334
|
+
$fault = "client";
|
|
335
|
+
Message;
|
|
318
336
|
constructor(opts) {
|
|
319
337
|
super({
|
|
320
338
|
name: "GrantFlowEntitlements420Exception",
|
|
321
339
|
$fault: "client",
|
|
322
340
|
...opts,
|
|
323
341
|
});
|
|
324
|
-
this.name = "GrantFlowEntitlements420Exception";
|
|
325
|
-
this.$fault = "client";
|
|
326
342
|
Object.setPrototypeOf(this, GrantFlowEntitlements420Exception.prototype);
|
|
327
343
|
this.Message = opts.Message;
|
|
328
344
|
}
|
|
@@ -1686,6 +1686,13 @@ const se___listOfAddOutputRequest = (input, context) => {
|
|
|
1686
1686
|
return se_AddOutputRequest(entry, context);
|
|
1687
1687
|
});
|
|
1688
1688
|
};
|
|
1689
|
+
const se___listOfAudioMonitoringSetting = (input, context) => {
|
|
1690
|
+
return input
|
|
1691
|
+
.filter((e) => e != null)
|
|
1692
|
+
.map((entry) => {
|
|
1693
|
+
return se_AudioMonitoringSetting(entry, context);
|
|
1694
|
+
});
|
|
1695
|
+
};
|
|
1689
1696
|
const se___listOfDestinationConfigurationRequest = (input, context) => {
|
|
1690
1697
|
return input
|
|
1691
1698
|
.filter((e) => e != null)
|
|
@@ -1735,6 +1742,13 @@ const se___listOfSetSourceRequest = (input, context) => {
|
|
|
1735
1742
|
return se_SetSourceRequest(entry, context);
|
|
1736
1743
|
});
|
|
1737
1744
|
};
|
|
1745
|
+
const se___listOfVideoMonitoringSetting = (input, context) => {
|
|
1746
|
+
return input
|
|
1747
|
+
.filter((e) => e != null)
|
|
1748
|
+
.map((entry) => {
|
|
1749
|
+
return se_VideoMonitoringSetting(entry, context);
|
|
1750
|
+
});
|
|
1751
|
+
};
|
|
1738
1752
|
const se___listOfVpcInterfaceRequest = (input, context) => {
|
|
1739
1753
|
return input
|
|
1740
1754
|
.filter((e) => e != null)
|
|
@@ -1832,6 +1846,17 @@ const se_AddOutputRequest = (input, context) => {
|
|
|
1832
1846
|
vpcInterfaceAttachment: [, (_) => se_VpcInterfaceAttachment(_, context), `VpcInterfaceAttachment`],
|
|
1833
1847
|
});
|
|
1834
1848
|
};
|
|
1849
|
+
const se_AudioMonitoringSetting = (input, context) => {
|
|
1850
|
+
return take(input, {
|
|
1851
|
+
silentAudio: [, (_) => se_SilentAudio(_, context), `SilentAudio`],
|
|
1852
|
+
});
|
|
1853
|
+
};
|
|
1854
|
+
const se_BlackFrames = (input, context) => {
|
|
1855
|
+
return take(input, {
|
|
1856
|
+
state: [, , `State`],
|
|
1857
|
+
thresholdSeconds: [, , `ThresholdSeconds`],
|
|
1858
|
+
});
|
|
1859
|
+
};
|
|
1835
1860
|
const se_DestinationConfigurationRequest = (input, context) => {
|
|
1836
1861
|
return take(input, {
|
|
1837
1862
|
destinationIp: [, , `DestinationIp`],
|
|
@@ -1877,6 +1902,12 @@ const se_FmtpRequest = (input, context) => {
|
|
|
1877
1902
|
tcs: [, , `Tcs`],
|
|
1878
1903
|
});
|
|
1879
1904
|
};
|
|
1905
|
+
const se_FrozenFrames = (input, context) => {
|
|
1906
|
+
return take(input, {
|
|
1907
|
+
state: [, , `State`],
|
|
1908
|
+
thresholdSeconds: [, , `ThresholdSeconds`],
|
|
1909
|
+
});
|
|
1910
|
+
};
|
|
1880
1911
|
const se_GatewayNetwork = (input, context) => {
|
|
1881
1912
|
return take(input, {
|
|
1882
1913
|
cidrBlock: [, , `CidrBlock`],
|
|
@@ -1931,7 +1962,10 @@ const se_MediaStreamSourceConfigurationRequest = (input, context) => {
|
|
|
1931
1962
|
};
|
|
1932
1963
|
const se_MonitoringConfig = (input, context) => {
|
|
1933
1964
|
return take(input, {
|
|
1965
|
+
audioMonitoringSettings: [, (_) => se___listOfAudioMonitoringSetting(_, context), `AudioMonitoringSettings`],
|
|
1966
|
+
contentQualityAnalysisState: [, , `ContentQualityAnalysisState`],
|
|
1934
1967
|
thumbnailState: [, , `ThumbnailState`],
|
|
1968
|
+
videoMonitoringSettings: [, (_) => se___listOfVideoMonitoringSetting(_, context), `VideoMonitoringSettings`],
|
|
1935
1969
|
});
|
|
1936
1970
|
};
|
|
1937
1971
|
const se_MulticastSourceSettings = (input, context) => {
|
|
@@ -1972,6 +2006,12 @@ const se_SetSourceRequest = (input, context) => {
|
|
|
1972
2006
|
whitelistCidr: [, , `WhitelistCidr`],
|
|
1973
2007
|
});
|
|
1974
2008
|
};
|
|
2009
|
+
const se_SilentAudio = (input, context) => {
|
|
2010
|
+
return take(input, {
|
|
2011
|
+
state: [, , `State`],
|
|
2012
|
+
thresholdSeconds: [, , `ThresholdSeconds`],
|
|
2013
|
+
});
|
|
2014
|
+
};
|
|
1975
2015
|
const se_SourcePriority = (input, context) => {
|
|
1976
2016
|
return take(input, {
|
|
1977
2017
|
primarySource: [, , `PrimarySource`],
|
|
@@ -2046,6 +2086,12 @@ const se_UpdateMaintenance = (input, context) => {
|
|
|
2046
2086
|
maintenanceStartHour: [, , `MaintenanceStartHour`],
|
|
2047
2087
|
});
|
|
2048
2088
|
};
|
|
2089
|
+
const se_VideoMonitoringSetting = (input, context) => {
|
|
2090
|
+
return take(input, {
|
|
2091
|
+
blackFrames: [, (_) => se_BlackFrames(_, context), `BlackFrames`],
|
|
2092
|
+
frozenFrames: [, (_) => se_FrozenFrames(_, context), `FrozenFrames`],
|
|
2093
|
+
});
|
|
2094
|
+
};
|
|
2049
2095
|
const se_VpcInterfaceAttachment = (input, context) => {
|
|
2050
2096
|
return take(input, {
|
|
2051
2097
|
vpcInterfaceName: [, , `VpcInterfaceName`],
|
|
@@ -2060,6 +2106,14 @@ const se_VpcInterfaceRequest = (input, context) => {
|
|
|
2060
2106
|
subnetId: [, , `SubnetId`],
|
|
2061
2107
|
});
|
|
2062
2108
|
};
|
|
2109
|
+
const de___listOfAudioMonitoringSetting = (output, context) => {
|
|
2110
|
+
const retVal = (output || [])
|
|
2111
|
+
.filter((e) => e != null)
|
|
2112
|
+
.map((entry) => {
|
|
2113
|
+
return de_AudioMonitoringSetting(entry, context);
|
|
2114
|
+
});
|
|
2115
|
+
return retVal;
|
|
2116
|
+
};
|
|
2063
2117
|
const de___listOfBridgeOutput = (output, context) => {
|
|
2064
2118
|
const retVal = (output || [])
|
|
2065
2119
|
.filter((e) => e != null)
|
|
@@ -2228,6 +2282,14 @@ const de___listOfTransportStreamProgram = (output, context) => {
|
|
|
2228
2282
|
});
|
|
2229
2283
|
return retVal;
|
|
2230
2284
|
};
|
|
2285
|
+
const de___listOfVideoMonitoringSetting = (output, context) => {
|
|
2286
|
+
const retVal = (output || [])
|
|
2287
|
+
.filter((e) => e != null)
|
|
2288
|
+
.map((entry) => {
|
|
2289
|
+
return de_VideoMonitoringSetting(entry, context);
|
|
2290
|
+
});
|
|
2291
|
+
return retVal;
|
|
2292
|
+
};
|
|
2231
2293
|
const de___listOfVpcInterface = (output, context) => {
|
|
2232
2294
|
const retVal = (output || [])
|
|
2233
2295
|
.filter((e) => e != null)
|
|
@@ -2236,6 +2298,17 @@ const de___listOfVpcInterface = (output, context) => {
|
|
|
2236
2298
|
});
|
|
2237
2299
|
return retVal;
|
|
2238
2300
|
};
|
|
2301
|
+
const de_AudioMonitoringSetting = (output, context) => {
|
|
2302
|
+
return take(output, {
|
|
2303
|
+
SilentAudio: [, (_) => de_SilentAudio(_, context), `silentAudio`],
|
|
2304
|
+
});
|
|
2305
|
+
};
|
|
2306
|
+
const de_BlackFrames = (output, context) => {
|
|
2307
|
+
return take(output, {
|
|
2308
|
+
State: [, __expectString, `state`],
|
|
2309
|
+
ThresholdSeconds: [, __expectInt32, `thresholdSeconds`],
|
|
2310
|
+
});
|
|
2311
|
+
};
|
|
2239
2312
|
const de_Bridge = (output, context) => {
|
|
2240
2313
|
return take(output, {
|
|
2241
2314
|
BridgeArn: [, __expectString, `bridgeArn`],
|
|
@@ -2385,6 +2458,12 @@ const de_FrameResolution = (output, context) => {
|
|
|
2385
2458
|
FrameWidth: [, __expectInt32, `frameWidth`],
|
|
2386
2459
|
});
|
|
2387
2460
|
};
|
|
2461
|
+
const de_FrozenFrames = (output, context) => {
|
|
2462
|
+
return take(output, {
|
|
2463
|
+
State: [, __expectString, `state`],
|
|
2464
|
+
ThresholdSeconds: [, __expectInt32, `thresholdSeconds`],
|
|
2465
|
+
});
|
|
2466
|
+
};
|
|
2388
2467
|
const de_Gateway = (output, context) => {
|
|
2389
2468
|
return take(output, {
|
|
2390
2469
|
EgressCidrBlocks: [, _json, `egressCidrBlocks`],
|
|
@@ -2539,7 +2618,10 @@ const de_Messages = (output, context) => {
|
|
|
2539
2618
|
};
|
|
2540
2619
|
const de_MonitoringConfig = (output, context) => {
|
|
2541
2620
|
return take(output, {
|
|
2621
|
+
AudioMonitoringSettings: [, (_) => de___listOfAudioMonitoringSetting(_, context), `audioMonitoringSettings`],
|
|
2622
|
+
ContentQualityAnalysisState: [, __expectString, `contentQualityAnalysisState`],
|
|
2542
2623
|
ThumbnailState: [, __expectString, `thumbnailState`],
|
|
2624
|
+
VideoMonitoringSettings: [, (_) => de___listOfVideoMonitoringSetting(_, context), `videoMonitoringSettings`],
|
|
2543
2625
|
});
|
|
2544
2626
|
};
|
|
2545
2627
|
const de_MulticastSourceSettings = (output, context) => {
|
|
@@ -2606,6 +2688,12 @@ const de_ResourceSpecification = (output, context) => {
|
|
|
2606
2688
|
ResourceType: [, __expectString, `resourceType`],
|
|
2607
2689
|
});
|
|
2608
2690
|
};
|
|
2691
|
+
const de_SilentAudio = (output, context) => {
|
|
2692
|
+
return take(output, {
|
|
2693
|
+
State: [, __expectString, `state`],
|
|
2694
|
+
ThresholdSeconds: [, __expectInt32, `thresholdSeconds`],
|
|
2695
|
+
});
|
|
2696
|
+
};
|
|
2609
2697
|
const de_Source = (output, context) => {
|
|
2610
2698
|
return take(output, {
|
|
2611
2699
|
DataTransferSubscriberFeePercent: [, __expectInt32, `dataTransferSubscriberFeePercent`],
|
|
@@ -2686,6 +2774,12 @@ const de_TransportStreamProgram = (output, context) => {
|
|
|
2686
2774
|
Streams: [, (_) => de___listOfTransportStream(_, context), `streams`],
|
|
2687
2775
|
});
|
|
2688
2776
|
};
|
|
2777
|
+
const de_VideoMonitoringSetting = (output, context) => {
|
|
2778
|
+
return take(output, {
|
|
2779
|
+
BlackFrames: [, (_) => de_BlackFrames(_, context), `blackFrames`],
|
|
2780
|
+
FrozenFrames: [, (_) => de_FrozenFrames(_, context), `frozenFrames`],
|
|
2781
|
+
});
|
|
2782
|
+
};
|
|
2689
2783
|
const de_VpcInterface = (output, context) => {
|
|
2690
2784
|
return take(output, {
|
|
2691
2785
|
Name: [, __expectString, `name`],
|
|
@@ -258,6 +258,27 @@ declare const CreateFlowCommand_base: {
|
|
|
258
258
|
* },
|
|
259
259
|
* SourceMonitoringConfig: { // MonitoringConfig
|
|
260
260
|
* ThumbnailState: "ENABLED" || "DISABLED",
|
|
261
|
+
* AudioMonitoringSettings: [ // __listOfAudioMonitoringSetting
|
|
262
|
+
* { // AudioMonitoringSetting
|
|
263
|
+
* SilentAudio: { // SilentAudio
|
|
264
|
+
* State: "ENABLED" || "DISABLED",
|
|
265
|
+
* ThresholdSeconds: Number("int"),
|
|
266
|
+
* },
|
|
267
|
+
* },
|
|
268
|
+
* ],
|
|
269
|
+
* ContentQualityAnalysisState: "ENABLED" || "DISABLED",
|
|
270
|
+
* VideoMonitoringSettings: [ // __listOfVideoMonitoringSetting
|
|
271
|
+
* { // VideoMonitoringSetting
|
|
272
|
+
* BlackFrames: { // BlackFrames
|
|
273
|
+
* State: "ENABLED" || "DISABLED",
|
|
274
|
+
* ThresholdSeconds: Number("int"),
|
|
275
|
+
* },
|
|
276
|
+
* FrozenFrames: { // FrozenFrames
|
|
277
|
+
* State: "ENABLED" || "DISABLED",
|
|
278
|
+
* ThresholdSeconds: Number("int"),
|
|
279
|
+
* },
|
|
280
|
+
* },
|
|
281
|
+
* ],
|
|
261
282
|
* },
|
|
262
283
|
* };
|
|
263
284
|
* const command = new CreateFlowCommand(input);
|
|
@@ -539,6 +560,27 @@ declare const CreateFlowCommand_base: {
|
|
|
539
560
|
* // },
|
|
540
561
|
* // SourceMonitoringConfig: { // MonitoringConfig
|
|
541
562
|
* // ThumbnailState: "ENABLED" || "DISABLED",
|
|
563
|
+
* // AudioMonitoringSettings: [ // __listOfAudioMonitoringSetting
|
|
564
|
+
* // { // AudioMonitoringSetting
|
|
565
|
+
* // SilentAudio: { // SilentAudio
|
|
566
|
+
* // State: "ENABLED" || "DISABLED",
|
|
567
|
+
* // ThresholdSeconds: Number("int"),
|
|
568
|
+
* // },
|
|
569
|
+
* // },
|
|
570
|
+
* // ],
|
|
571
|
+
* // ContentQualityAnalysisState: "ENABLED" || "DISABLED",
|
|
572
|
+
* // VideoMonitoringSettings: [ // __listOfVideoMonitoringSetting
|
|
573
|
+
* // { // VideoMonitoringSetting
|
|
574
|
+
* // BlackFrames: { // BlackFrames
|
|
575
|
+
* // State: "ENABLED" || "DISABLED",
|
|
576
|
+
* // ThresholdSeconds: Number("int"),
|
|
577
|
+
* // },
|
|
578
|
+
* // FrozenFrames: { // FrozenFrames
|
|
579
|
+
* // State: "ENABLED" || "DISABLED",
|
|
580
|
+
* // ThresholdSeconds: Number("int"),
|
|
581
|
+
* // },
|
|
582
|
+
* // },
|
|
583
|
+
* // ],
|
|
542
584
|
* // },
|
|
543
585
|
* // },
|
|
544
586
|
* // };
|
|
@@ -316,6 +316,27 @@ declare const DescribeFlowCommand_base: {
|
|
|
316
316
|
* // },
|
|
317
317
|
* // SourceMonitoringConfig: { // MonitoringConfig
|
|
318
318
|
* // ThumbnailState: "ENABLED" || "DISABLED",
|
|
319
|
+
* // AudioMonitoringSettings: [ // __listOfAudioMonitoringSetting
|
|
320
|
+
* // { // AudioMonitoringSetting
|
|
321
|
+
* // SilentAudio: { // SilentAudio
|
|
322
|
+
* // State: "ENABLED" || "DISABLED",
|
|
323
|
+
* // ThresholdSeconds: Number("int"),
|
|
324
|
+
* // },
|
|
325
|
+
* // },
|
|
326
|
+
* // ],
|
|
327
|
+
* // ContentQualityAnalysisState: "ENABLED" || "DISABLED",
|
|
328
|
+
* // VideoMonitoringSettings: [ // __listOfVideoMonitoringSetting
|
|
329
|
+
* // { // VideoMonitoringSetting
|
|
330
|
+
* // BlackFrames: { // BlackFrames
|
|
331
|
+
* // State: "ENABLED" || "DISABLED",
|
|
332
|
+
* // ThresholdSeconds: Number("int"),
|
|
333
|
+
* // },
|
|
334
|
+
* // FrozenFrames: { // FrozenFrames
|
|
335
|
+
* // State: "ENABLED" || "DISABLED",
|
|
336
|
+
* // ThresholdSeconds: Number("int"),
|
|
337
|
+
* // },
|
|
338
|
+
* // },
|
|
339
|
+
* // ],
|
|
319
340
|
* // },
|
|
320
341
|
* // },
|
|
321
342
|
* // Messages: { // Messages
|
|
@@ -51,6 +51,27 @@ declare const UpdateFlowCommand_base: {
|
|
|
51
51
|
* },
|
|
52
52
|
* SourceMonitoringConfig: { // MonitoringConfig
|
|
53
53
|
* ThumbnailState: "ENABLED" || "DISABLED",
|
|
54
|
+
* AudioMonitoringSettings: [ // __listOfAudioMonitoringSetting
|
|
55
|
+
* { // AudioMonitoringSetting
|
|
56
|
+
* SilentAudio: { // SilentAudio
|
|
57
|
+
* State: "ENABLED" || "DISABLED",
|
|
58
|
+
* ThresholdSeconds: Number("int"),
|
|
59
|
+
* },
|
|
60
|
+
* },
|
|
61
|
+
* ],
|
|
62
|
+
* ContentQualityAnalysisState: "ENABLED" || "DISABLED",
|
|
63
|
+
* VideoMonitoringSettings: [ // __listOfVideoMonitoringSetting
|
|
64
|
+
* { // VideoMonitoringSetting
|
|
65
|
+
* BlackFrames: { // BlackFrames
|
|
66
|
+
* State: "ENABLED" || "DISABLED",
|
|
67
|
+
* ThresholdSeconds: Number("int"),
|
|
68
|
+
* },
|
|
69
|
+
* FrozenFrames: { // FrozenFrames
|
|
70
|
+
* State: "ENABLED" || "DISABLED",
|
|
71
|
+
* ThresholdSeconds: Number("int"),
|
|
72
|
+
* },
|
|
73
|
+
* },
|
|
74
|
+
* ],
|
|
54
75
|
* },
|
|
55
76
|
* };
|
|
56
77
|
* const command = new UpdateFlowCommand(input);
|
|
@@ -332,6 +353,27 @@ declare const UpdateFlowCommand_base: {
|
|
|
332
353
|
* // },
|
|
333
354
|
* // SourceMonitoringConfig: { // MonitoringConfig
|
|
334
355
|
* // ThumbnailState: "ENABLED" || "DISABLED",
|
|
356
|
+
* // AudioMonitoringSettings: [ // __listOfAudioMonitoringSetting
|
|
357
|
+
* // { // AudioMonitoringSetting
|
|
358
|
+
* // SilentAudio: { // SilentAudio
|
|
359
|
+
* // State: "ENABLED" || "DISABLED",
|
|
360
|
+
* // ThresholdSeconds: Number("int"),
|
|
361
|
+
* // },
|
|
362
|
+
* // },
|
|
363
|
+
* // ],
|
|
364
|
+
* // ContentQualityAnalysisState: "ENABLED" || "DISABLED",
|
|
365
|
+
* // VideoMonitoringSettings: [ // __listOfVideoMonitoringSetting
|
|
366
|
+
* // { // VideoMonitoringSetting
|
|
367
|
+
* // BlackFrames: { // BlackFrames
|
|
368
|
+
* // State: "ENABLED" || "DISABLED",
|
|
369
|
+
* // ThresholdSeconds: Number("int"),
|
|
370
|
+
* // },
|
|
371
|
+
* // FrozenFrames: { // FrozenFrames
|
|
372
|
+
* // State: "ENABLED" || "DISABLED",
|
|
373
|
+
* // ThresholdSeconds: Number("int"),
|
|
374
|
+
* // },
|
|
375
|
+
* // },
|
|
376
|
+
* // ],
|
|
335
377
|
* // },
|
|
336
378
|
* // },
|
|
337
379
|
* // };
|