@aws-sdk/client-medialive 3.301.0 → 3.303.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/models/models_0.js +779 -935
- package/dist-cjs/models/models_1.js +532 -641
- package/dist-es/models/models_0.js +779 -935
- package/dist-es/models/models_1.js +532 -641
- package/dist-types/models/models_0.d.ts +1559 -779
- package/dist-types/models/models_1.d.ts +1077 -532
- package/dist-types/ts3.4/models/models_0.d.ts +1060 -779
- package/dist-types/ts3.4/models/models_1.d.ts +729 -532
- package/package.json +37 -37
|
@@ -5,69 +5,114 @@ import { MediaLiveServiceException as __BaseException } from "./MediaLiveService
|
|
|
5
5
|
import { ArchiveGroupSettings, AudioDescription, BatchFailedResultModel, BatchSuccessfulResultModel, CaptionDescription, CaptionLanguageMapping, CdiInputSpecification, ChannelClass, ChannelEgressEndpoint, ChannelState, ChannelSummary, DeviceSettingsSyncState, DeviceUpdateStatus, FrameCaptureGroupSettings, Hdr10Settings, HlsAdMarkers, HlsCaptionLanguageSetting, HlsCdnSettings, HlsClientCache, HlsCodecSpecification, HlsDirectoryStructure, HlsDiscontinuityTags, HlsEncryptionType, HlsId3SegmentTaggingState, HlsIncompleteSegmentBehavior, HlsIvInManifest, HlsIvSource, HlsManifestCompression, HlsManifestDurationFormat, IFrameOnlyPlaylistType, Input, InputAttachment, InputClass, InputDestination, InputDestinationRequest, InputDeviceConfiguredInput, InputDeviceConnectionState, InputDeviceHdSettings, InputDeviceNetworkSettings, InputDeviceSettings, InputDeviceSummary, InputDeviceType, InputDeviceUhdSettings, InputLocation, InputLossActionForHlsOut, InputSecurityGroup, InputSecurityGroupState, InputSource, InputSourceRequest, InputSourceType, InputSpecification, InputState, InputType, InputWhitelistRule, InputWhitelistRuleCidr, KeyProviderSettings, LogLevel, MaintenanceDay, MaintenanceStatus, MediaConnectFlow, MediaConnectFlowRequest, MultiplexOutputDestination, MultiplexProgramPipelineDetail, MultiplexProgramSummary, MultiplexState, MultiplexSummary, Offering, OfferingDurationUnits, OfferingType, Output, OutputDestination, OutputLocationRef, ReservationResourceSpecification, VpcOutputSettingsDescription } from "./models_0";
|
|
6
6
|
/**
|
|
7
7
|
* @public
|
|
8
|
+
* @enum
|
|
8
9
|
*/
|
|
9
|
-
export declare
|
|
10
|
-
LIVE
|
|
11
|
-
VOD
|
|
12
|
-
}
|
|
10
|
+
export declare const HlsMode: {
|
|
11
|
+
readonly LIVE: "LIVE";
|
|
12
|
+
readonly VOD: "VOD";
|
|
13
|
+
};
|
|
13
14
|
/**
|
|
14
15
|
* @public
|
|
15
16
|
*/
|
|
16
|
-
export
|
|
17
|
-
MANIFESTS_AND_SEGMENTS = "MANIFESTS_AND_SEGMENTS",
|
|
18
|
-
SEGMENTS_ONLY = "SEGMENTS_ONLY",
|
|
19
|
-
VARIANT_MANIFESTS_AND_SEGMENTS = "VARIANT_MANIFESTS_AND_SEGMENTS"
|
|
20
|
-
}
|
|
17
|
+
export type HlsMode = (typeof HlsMode)[keyof typeof HlsMode];
|
|
21
18
|
/**
|
|
22
19
|
* @public
|
|
20
|
+
* @enum
|
|
23
21
|
*/
|
|
24
|
-
export declare
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
22
|
+
export declare const HlsOutputSelection: {
|
|
23
|
+
readonly MANIFESTS_AND_SEGMENTS: "MANIFESTS_AND_SEGMENTS";
|
|
24
|
+
readonly SEGMENTS_ONLY: "SEGMENTS_ONLY";
|
|
25
|
+
readonly VARIANT_MANIFESTS_AND_SEGMENTS: "VARIANT_MANIFESTS_AND_SEGMENTS";
|
|
26
|
+
};
|
|
28
27
|
/**
|
|
29
28
|
* @public
|
|
30
29
|
*/
|
|
31
|
-
export
|
|
32
|
-
INITIALIZE_FROM_OUTPUT_TIMECODE = "INITIALIZE_FROM_OUTPUT_TIMECODE",
|
|
33
|
-
SYSTEM_CLOCK = "SYSTEM_CLOCK"
|
|
34
|
-
}
|
|
30
|
+
export type HlsOutputSelection = (typeof HlsOutputSelection)[keyof typeof HlsOutputSelection];
|
|
35
31
|
/**
|
|
36
32
|
* @public
|
|
33
|
+
* @enum
|
|
37
34
|
*/
|
|
38
|
-
export declare
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
}
|
|
35
|
+
export declare const HlsProgramDateTime: {
|
|
36
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
37
|
+
readonly INCLUDE: "INCLUDE";
|
|
38
|
+
};
|
|
42
39
|
/**
|
|
43
40
|
* @public
|
|
44
41
|
*/
|
|
45
|
-
export
|
|
46
|
-
USE_INPUT_SEGMENTATION = "USE_INPUT_SEGMENTATION",
|
|
47
|
-
USE_SEGMENT_DURATION = "USE_SEGMENT_DURATION"
|
|
48
|
-
}
|
|
42
|
+
export type HlsProgramDateTime = (typeof HlsProgramDateTime)[keyof typeof HlsProgramDateTime];
|
|
49
43
|
/**
|
|
50
44
|
* @public
|
|
45
|
+
* @enum
|
|
51
46
|
*/
|
|
52
|
-
export declare
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
}
|
|
47
|
+
export declare const HlsProgramDateTimeClock: {
|
|
48
|
+
readonly INITIALIZE_FROM_OUTPUT_TIMECODE: "INITIALIZE_FROM_OUTPUT_TIMECODE";
|
|
49
|
+
readonly SYSTEM_CLOCK: "SYSTEM_CLOCK";
|
|
50
|
+
};
|
|
56
51
|
/**
|
|
57
52
|
* @public
|
|
58
53
|
*/
|
|
59
|
-
export
|
|
60
|
-
NONE = "NONE",
|
|
61
|
-
PRIV = "PRIV",
|
|
62
|
-
TDRL = "TDRL"
|
|
63
|
-
}
|
|
54
|
+
export type HlsProgramDateTimeClock = (typeof HlsProgramDateTimeClock)[keyof typeof HlsProgramDateTimeClock];
|
|
64
55
|
/**
|
|
65
56
|
* @public
|
|
57
|
+
* @enum
|
|
66
58
|
*/
|
|
67
|
-
export declare
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
}
|
|
59
|
+
export declare const HlsRedundantManifest: {
|
|
60
|
+
readonly DISABLED: "DISABLED";
|
|
61
|
+
readonly ENABLED: "ENABLED";
|
|
62
|
+
};
|
|
63
|
+
/**
|
|
64
|
+
* @public
|
|
65
|
+
*/
|
|
66
|
+
export type HlsRedundantManifest = (typeof HlsRedundantManifest)[keyof typeof HlsRedundantManifest];
|
|
67
|
+
/**
|
|
68
|
+
* @public
|
|
69
|
+
* @enum
|
|
70
|
+
*/
|
|
71
|
+
export declare const HlsSegmentationMode: {
|
|
72
|
+
readonly USE_INPUT_SEGMENTATION: "USE_INPUT_SEGMENTATION";
|
|
73
|
+
readonly USE_SEGMENT_DURATION: "USE_SEGMENT_DURATION";
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
export type HlsSegmentationMode = (typeof HlsSegmentationMode)[keyof typeof HlsSegmentationMode];
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
* @enum
|
|
82
|
+
*/
|
|
83
|
+
export declare const HlsStreamInfResolution: {
|
|
84
|
+
readonly EXCLUDE: "EXCLUDE";
|
|
85
|
+
readonly INCLUDE: "INCLUDE";
|
|
86
|
+
};
|
|
87
|
+
/**
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
export type HlsStreamInfResolution = (typeof HlsStreamInfResolution)[keyof typeof HlsStreamInfResolution];
|
|
91
|
+
/**
|
|
92
|
+
* @public
|
|
93
|
+
* @enum
|
|
94
|
+
*/
|
|
95
|
+
export declare const HlsTimedMetadataId3Frame: {
|
|
96
|
+
readonly NONE: "NONE";
|
|
97
|
+
readonly PRIV: "PRIV";
|
|
98
|
+
readonly TDRL: "TDRL";
|
|
99
|
+
};
|
|
100
|
+
/**
|
|
101
|
+
* @public
|
|
102
|
+
*/
|
|
103
|
+
export type HlsTimedMetadataId3Frame = (typeof HlsTimedMetadataId3Frame)[keyof typeof HlsTimedMetadataId3Frame];
|
|
104
|
+
/**
|
|
105
|
+
* @public
|
|
106
|
+
* @enum
|
|
107
|
+
*/
|
|
108
|
+
export declare const HlsTsFileMode: {
|
|
109
|
+
readonly SEGMENTED_FILES: "SEGMENTED_FILES";
|
|
110
|
+
readonly SINGLE_FILE: "SINGLE_FILE";
|
|
111
|
+
};
|
|
112
|
+
/**
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
115
|
+
export type HlsTsFileMode = (typeof HlsTsFileMode)[keyof typeof HlsTsFileMode];
|
|
71
116
|
/**
|
|
72
117
|
* @public
|
|
73
118
|
* Hls Group Settings
|
|
@@ -293,69 +338,114 @@ export interface MediaPackageGroupSettings {
|
|
|
293
338
|
}
|
|
294
339
|
/**
|
|
295
340
|
* @public
|
|
341
|
+
* @enum
|
|
296
342
|
*/
|
|
297
|
-
export declare
|
|
298
|
-
PASSTHROUGH
|
|
299
|
-
USE_CONFIGURED_CLOCK
|
|
300
|
-
}
|
|
343
|
+
export declare const SmoothGroupAudioOnlyTimecodeControl: {
|
|
344
|
+
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
345
|
+
readonly USE_CONFIGURED_CLOCK: "USE_CONFIGURED_CLOCK";
|
|
346
|
+
};
|
|
301
347
|
/**
|
|
302
348
|
* @public
|
|
303
349
|
*/
|
|
304
|
-
export
|
|
305
|
-
SELF_SIGNED = "SELF_SIGNED",
|
|
306
|
-
VERIFY_AUTHENTICITY = "VERIFY_AUTHENTICITY"
|
|
307
|
-
}
|
|
350
|
+
export type SmoothGroupAudioOnlyTimecodeControl = (typeof SmoothGroupAudioOnlyTimecodeControl)[keyof typeof SmoothGroupAudioOnlyTimecodeControl];
|
|
308
351
|
/**
|
|
309
352
|
* @public
|
|
353
|
+
* @enum
|
|
310
354
|
*/
|
|
311
|
-
export declare
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
}
|
|
355
|
+
export declare const SmoothGroupCertificateMode: {
|
|
356
|
+
readonly SELF_SIGNED: "SELF_SIGNED";
|
|
357
|
+
readonly VERIFY_AUTHENTICITY: "VERIFY_AUTHENTICITY";
|
|
358
|
+
};
|
|
316
359
|
/**
|
|
317
360
|
* @public
|
|
318
361
|
*/
|
|
319
|
-
export
|
|
320
|
-
NONE = "NONE",
|
|
321
|
-
SEND_EOS = "SEND_EOS"
|
|
322
|
-
}
|
|
362
|
+
export type SmoothGroupCertificateMode = (typeof SmoothGroupCertificateMode)[keyof typeof SmoothGroupCertificateMode];
|
|
323
363
|
/**
|
|
324
364
|
* @public
|
|
365
|
+
* @enum
|
|
325
366
|
*/
|
|
326
|
-
export declare
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
367
|
+
export declare const SmoothGroupEventIdMode: {
|
|
368
|
+
readonly NO_EVENT_ID: "NO_EVENT_ID";
|
|
369
|
+
readonly USE_CONFIGURED: "USE_CONFIGURED";
|
|
370
|
+
readonly USE_TIMESTAMP: "USE_TIMESTAMP";
|
|
371
|
+
};
|
|
330
372
|
/**
|
|
331
373
|
* @public
|
|
332
374
|
*/
|
|
333
|
-
export
|
|
334
|
-
USE_INPUT_SEGMENTATION = "USE_INPUT_SEGMENTATION",
|
|
335
|
-
USE_SEGMENT_DURATION = "USE_SEGMENT_DURATION"
|
|
336
|
-
}
|
|
375
|
+
export type SmoothGroupEventIdMode = (typeof SmoothGroupEventIdMode)[keyof typeof SmoothGroupEventIdMode];
|
|
337
376
|
/**
|
|
338
377
|
* @public
|
|
378
|
+
* @enum
|
|
339
379
|
*/
|
|
340
|
-
export declare
|
|
341
|
-
NONE
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
}
|
|
380
|
+
export declare const SmoothGroupEventStopBehavior: {
|
|
381
|
+
readonly NONE: "NONE";
|
|
382
|
+
readonly SEND_EOS: "SEND_EOS";
|
|
383
|
+
};
|
|
345
384
|
/**
|
|
346
385
|
* @public
|
|
347
386
|
*/
|
|
348
|
-
export
|
|
349
|
-
DO_NOT_SEND = "DO_NOT_SEND",
|
|
350
|
-
SEND = "SEND"
|
|
351
|
-
}
|
|
387
|
+
export type SmoothGroupEventStopBehavior = (typeof SmoothGroupEventStopBehavior)[keyof typeof SmoothGroupEventStopBehavior];
|
|
352
388
|
/**
|
|
353
389
|
* @public
|
|
390
|
+
* @enum
|
|
354
391
|
*/
|
|
355
|
-
export declare
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
}
|
|
392
|
+
export declare const InputLossActionForMsSmoothOut: {
|
|
393
|
+
readonly EMIT_OUTPUT: "EMIT_OUTPUT";
|
|
394
|
+
readonly PAUSE_OUTPUT: "PAUSE_OUTPUT";
|
|
395
|
+
};
|
|
396
|
+
/**
|
|
397
|
+
* @public
|
|
398
|
+
*/
|
|
399
|
+
export type InputLossActionForMsSmoothOut = (typeof InputLossActionForMsSmoothOut)[keyof typeof InputLossActionForMsSmoothOut];
|
|
400
|
+
/**
|
|
401
|
+
* @public
|
|
402
|
+
* @enum
|
|
403
|
+
*/
|
|
404
|
+
export declare const SmoothGroupSegmentationMode: {
|
|
405
|
+
readonly USE_INPUT_SEGMENTATION: "USE_INPUT_SEGMENTATION";
|
|
406
|
+
readonly USE_SEGMENT_DURATION: "USE_SEGMENT_DURATION";
|
|
407
|
+
};
|
|
408
|
+
/**
|
|
409
|
+
* @public
|
|
410
|
+
*/
|
|
411
|
+
export type SmoothGroupSegmentationMode = (typeof SmoothGroupSegmentationMode)[keyof typeof SmoothGroupSegmentationMode];
|
|
412
|
+
/**
|
|
413
|
+
* @public
|
|
414
|
+
* @enum
|
|
415
|
+
*/
|
|
416
|
+
export declare const SmoothGroupSparseTrackType: {
|
|
417
|
+
readonly NONE: "NONE";
|
|
418
|
+
readonly SCTE_35: "SCTE_35";
|
|
419
|
+
readonly SCTE_35_WITHOUT_SEGMENTATION: "SCTE_35_WITHOUT_SEGMENTATION";
|
|
420
|
+
};
|
|
421
|
+
/**
|
|
422
|
+
* @public
|
|
423
|
+
*/
|
|
424
|
+
export type SmoothGroupSparseTrackType = (typeof SmoothGroupSparseTrackType)[keyof typeof SmoothGroupSparseTrackType];
|
|
425
|
+
/**
|
|
426
|
+
* @public
|
|
427
|
+
* @enum
|
|
428
|
+
*/
|
|
429
|
+
export declare const SmoothGroupStreamManifestBehavior: {
|
|
430
|
+
readonly DO_NOT_SEND: "DO_NOT_SEND";
|
|
431
|
+
readonly SEND: "SEND";
|
|
432
|
+
};
|
|
433
|
+
/**
|
|
434
|
+
* @public
|
|
435
|
+
*/
|
|
436
|
+
export type SmoothGroupStreamManifestBehavior = (typeof SmoothGroupStreamManifestBehavior)[keyof typeof SmoothGroupStreamManifestBehavior];
|
|
437
|
+
/**
|
|
438
|
+
* @public
|
|
439
|
+
* @enum
|
|
440
|
+
*/
|
|
441
|
+
export declare const SmoothGroupTimestampOffsetMode: {
|
|
442
|
+
readonly USE_CONFIGURED_OFFSET: "USE_CONFIGURED_OFFSET";
|
|
443
|
+
readonly USE_EVENT_START_DATE: "USE_EVENT_START_DATE";
|
|
444
|
+
};
|
|
445
|
+
/**
|
|
446
|
+
* @public
|
|
447
|
+
*/
|
|
448
|
+
export type SmoothGroupTimestampOffsetMode = (typeof SmoothGroupTimestampOffsetMode)[keyof typeof SmoothGroupTimestampOffsetMode];
|
|
359
449
|
/**
|
|
360
450
|
* @public
|
|
361
451
|
* Ms Smooth Group Settings
|
|
@@ -458,39 +548,64 @@ export interface MultiplexGroupSettings {
|
|
|
458
548
|
}
|
|
459
549
|
/**
|
|
460
550
|
* @public
|
|
551
|
+
* @enum
|
|
461
552
|
*/
|
|
462
|
-
export declare
|
|
463
|
-
ON_CUE_POINT_SCTE35
|
|
464
|
-
}
|
|
553
|
+
export declare const RtmpAdMarkers: {
|
|
554
|
+
readonly ON_CUE_POINT_SCTE35: "ON_CUE_POINT_SCTE35";
|
|
555
|
+
};
|
|
465
556
|
/**
|
|
466
557
|
* @public
|
|
467
558
|
*/
|
|
468
|
-
export
|
|
469
|
-
AKAMAI = "AKAMAI",
|
|
470
|
-
COMMON = "COMMON"
|
|
471
|
-
}
|
|
559
|
+
export type RtmpAdMarkers = (typeof RtmpAdMarkers)[keyof typeof RtmpAdMarkers];
|
|
472
560
|
/**
|
|
473
561
|
* @public
|
|
562
|
+
* @enum
|
|
474
563
|
*/
|
|
475
|
-
export declare
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
}
|
|
564
|
+
export declare const AuthenticationScheme: {
|
|
565
|
+
readonly AKAMAI: "AKAMAI";
|
|
566
|
+
readonly COMMON: "COMMON";
|
|
567
|
+
};
|
|
479
568
|
/**
|
|
480
569
|
* @public
|
|
481
570
|
*/
|
|
482
|
-
export
|
|
483
|
-
ALL = "ALL",
|
|
484
|
-
FIELD1_608 = "FIELD1_608",
|
|
485
|
-
FIELD1_AND_FIELD2_608 = "FIELD1_AND_FIELD2_608"
|
|
486
|
-
}
|
|
571
|
+
export type AuthenticationScheme = (typeof AuthenticationScheme)[keyof typeof AuthenticationScheme];
|
|
487
572
|
/**
|
|
488
573
|
* @public
|
|
574
|
+
* @enum
|
|
489
575
|
*/
|
|
490
|
-
export declare
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
}
|
|
576
|
+
export declare const RtmpCacheFullBehavior: {
|
|
577
|
+
readonly DISCONNECT_IMMEDIATELY: "DISCONNECT_IMMEDIATELY";
|
|
578
|
+
readonly WAIT_FOR_SERVER: "WAIT_FOR_SERVER";
|
|
579
|
+
};
|
|
580
|
+
/**
|
|
581
|
+
* @public
|
|
582
|
+
*/
|
|
583
|
+
export type RtmpCacheFullBehavior = (typeof RtmpCacheFullBehavior)[keyof typeof RtmpCacheFullBehavior];
|
|
584
|
+
/**
|
|
585
|
+
* @public
|
|
586
|
+
* @enum
|
|
587
|
+
*/
|
|
588
|
+
export declare const RtmpCaptionData: {
|
|
589
|
+
readonly ALL: "ALL";
|
|
590
|
+
readonly FIELD1_608: "FIELD1_608";
|
|
591
|
+
readonly FIELD1_AND_FIELD2_608: "FIELD1_AND_FIELD2_608";
|
|
592
|
+
};
|
|
593
|
+
/**
|
|
594
|
+
* @public
|
|
595
|
+
*/
|
|
596
|
+
export type RtmpCaptionData = (typeof RtmpCaptionData)[keyof typeof RtmpCaptionData];
|
|
597
|
+
/**
|
|
598
|
+
* @public
|
|
599
|
+
* @enum
|
|
600
|
+
*/
|
|
601
|
+
export declare const InputLossActionForRtmpOut: {
|
|
602
|
+
readonly EMIT_OUTPUT: "EMIT_OUTPUT";
|
|
603
|
+
readonly PAUSE_OUTPUT: "PAUSE_OUTPUT";
|
|
604
|
+
};
|
|
605
|
+
/**
|
|
606
|
+
* @public
|
|
607
|
+
*/
|
|
608
|
+
export type InputLossActionForRtmpOut = (typeof InputLossActionForRtmpOut)[keyof typeof InputLossActionForRtmpOut];
|
|
494
609
|
/**
|
|
495
610
|
* @public
|
|
496
611
|
* Rtmp Group Settings
|
|
@@ -530,20 +645,30 @@ export interface RtmpGroupSettings {
|
|
|
530
645
|
}
|
|
531
646
|
/**
|
|
532
647
|
* @public
|
|
648
|
+
* @enum
|
|
533
649
|
*/
|
|
534
|
-
export declare
|
|
535
|
-
DROP_PROGRAM
|
|
536
|
-
DROP_TS
|
|
537
|
-
EMIT_PROGRAM
|
|
538
|
-
}
|
|
650
|
+
export declare const InputLossActionForUdpOut: {
|
|
651
|
+
readonly DROP_PROGRAM: "DROP_PROGRAM";
|
|
652
|
+
readonly DROP_TS: "DROP_TS";
|
|
653
|
+
readonly EMIT_PROGRAM: "EMIT_PROGRAM";
|
|
654
|
+
};
|
|
539
655
|
/**
|
|
540
656
|
* @public
|
|
541
657
|
*/
|
|
542
|
-
export
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
658
|
+
export type InputLossActionForUdpOut = (typeof InputLossActionForUdpOut)[keyof typeof InputLossActionForUdpOut];
|
|
659
|
+
/**
|
|
660
|
+
* @public
|
|
661
|
+
* @enum
|
|
662
|
+
*/
|
|
663
|
+
export declare const UdpTimedMetadataId3Frame: {
|
|
664
|
+
readonly NONE: "NONE";
|
|
665
|
+
readonly PRIV: "PRIV";
|
|
666
|
+
readonly TDRL: "TDRL";
|
|
667
|
+
};
|
|
668
|
+
/**
|
|
669
|
+
* @public
|
|
670
|
+
*/
|
|
671
|
+
export type UdpTimedMetadataId3Frame = (typeof UdpTimedMetadataId3Frame)[keyof typeof UdpTimedMetadataId3Frame];
|
|
547
672
|
/**
|
|
548
673
|
* @public
|
|
549
674
|
* Udp Group Settings
|
|
@@ -646,11 +771,16 @@ export interface PipelineDetail {
|
|
|
646
771
|
}
|
|
647
772
|
/**
|
|
648
773
|
* @public
|
|
774
|
+
* @enum
|
|
649
775
|
*/
|
|
650
|
-
export declare
|
|
651
|
-
PIPELINE_0
|
|
652
|
-
PIPELINE_1
|
|
653
|
-
}
|
|
776
|
+
export declare const PipelineId: {
|
|
777
|
+
readonly PIPELINE_0: "PIPELINE_0";
|
|
778
|
+
readonly PIPELINE_1: "PIPELINE_1";
|
|
779
|
+
};
|
|
780
|
+
/**
|
|
781
|
+
* @public
|
|
782
|
+
*/
|
|
783
|
+
export type PipelineId = (typeof PipelineId)[keyof typeof PipelineId];
|
|
654
784
|
/**
|
|
655
785
|
* @public
|
|
656
786
|
* Settings for pausing a pipeline.
|
|
@@ -663,12 +793,17 @@ export interface PipelinePauseStateSettings {
|
|
|
663
793
|
}
|
|
664
794
|
/**
|
|
665
795
|
* @public
|
|
796
|
+
* @enum
|
|
666
797
|
*/
|
|
667
|
-
export declare
|
|
668
|
-
DISABLED
|
|
669
|
-
ENABLED
|
|
670
|
-
UNAVAILABLE
|
|
671
|
-
}
|
|
798
|
+
export declare const ReservationAutomaticRenewal: {
|
|
799
|
+
readonly DISABLED: "DISABLED";
|
|
800
|
+
readonly ENABLED: "ENABLED";
|
|
801
|
+
readonly UNAVAILABLE: "UNAVAILABLE";
|
|
802
|
+
};
|
|
803
|
+
/**
|
|
804
|
+
* @public
|
|
805
|
+
*/
|
|
806
|
+
export type ReservationAutomaticRenewal = (typeof ReservationAutomaticRenewal)[keyof typeof ReservationAutomaticRenewal];
|
|
672
807
|
/**
|
|
673
808
|
* @public
|
|
674
809
|
* The Renewal settings for Reservations
|
|
@@ -685,13 +820,18 @@ export interface RenewalSettings {
|
|
|
685
820
|
}
|
|
686
821
|
/**
|
|
687
822
|
* @public
|
|
823
|
+
* @enum
|
|
688
824
|
*/
|
|
689
|
-
export declare
|
|
690
|
-
ACTIVE
|
|
691
|
-
CANCELED
|
|
692
|
-
DELETED
|
|
693
|
-
EXPIRED
|
|
694
|
-
}
|
|
825
|
+
export declare const ReservationState: {
|
|
826
|
+
readonly ACTIVE: "ACTIVE";
|
|
827
|
+
readonly CANCELED: "CANCELED";
|
|
828
|
+
readonly DELETED: "DELETED";
|
|
829
|
+
readonly EXPIRED: "EXPIRED";
|
|
830
|
+
};
|
|
831
|
+
/**
|
|
832
|
+
* @public
|
|
833
|
+
*/
|
|
834
|
+
export type ReservationState = (typeof ReservationState)[keyof typeof ReservationState];
|
|
695
835
|
/**
|
|
696
836
|
* @public
|
|
697
837
|
* Reserved resources available to use
|
|
@@ -800,11 +940,16 @@ export interface HlsTimedMetadataScheduleActionSettings {
|
|
|
800
940
|
}
|
|
801
941
|
/**
|
|
802
942
|
* @public
|
|
943
|
+
* @enum
|
|
803
944
|
*/
|
|
804
|
-
export declare
|
|
805
|
-
EMBEDDED
|
|
806
|
-
ZEROBASED
|
|
807
|
-
}
|
|
945
|
+
export declare const InputTimecodeSource: {
|
|
946
|
+
readonly EMBEDDED: "EMBEDDED";
|
|
947
|
+
readonly ZEROBASED: "ZEROBASED";
|
|
948
|
+
};
|
|
949
|
+
/**
|
|
950
|
+
* @public
|
|
951
|
+
*/
|
|
952
|
+
export type InputTimecodeSource = (typeof InputTimecodeSource)[keyof typeof InputTimecodeSource];
|
|
808
953
|
/**
|
|
809
954
|
* @public
|
|
810
955
|
* Settings to identify the start of the clip.
|
|
@@ -817,11 +962,16 @@ export interface StartTimecode {
|
|
|
817
962
|
}
|
|
818
963
|
/**
|
|
819
964
|
* @public
|
|
965
|
+
* @enum
|
|
820
966
|
*/
|
|
821
|
-
export declare
|
|
822
|
-
EXCLUDE_LAST_FRAME
|
|
823
|
-
INCLUDE_LAST_FRAME
|
|
824
|
-
}
|
|
967
|
+
export declare const LastFrameClippingBehavior: {
|
|
968
|
+
readonly EXCLUDE_LAST_FRAME: "EXCLUDE_LAST_FRAME";
|
|
969
|
+
readonly INCLUDE_LAST_FRAME: "INCLUDE_LAST_FRAME";
|
|
970
|
+
};
|
|
971
|
+
/**
|
|
972
|
+
* @public
|
|
973
|
+
*/
|
|
974
|
+
export type LastFrameClippingBehavior = (typeof LastFrameClippingBehavior)[keyof typeof LastFrameClippingBehavior];
|
|
825
975
|
/**
|
|
826
976
|
* @public
|
|
827
977
|
* Settings to identify the end of the clip.
|
|
@@ -930,11 +1080,16 @@ export interface PauseStateScheduleActionSettings {
|
|
|
930
1080
|
}
|
|
931
1081
|
/**
|
|
932
1082
|
* @public
|
|
1083
|
+
* @enum
|
|
933
1084
|
*/
|
|
934
|
-
export declare
|
|
935
|
-
FIXED
|
|
936
|
-
FOLLOW_ACTIVE
|
|
937
|
-
}
|
|
1085
|
+
export declare const Scte35InputMode: {
|
|
1086
|
+
readonly FIXED: "FIXED";
|
|
1087
|
+
readonly FOLLOW_ACTIVE: "FOLLOW_ACTIVE";
|
|
1088
|
+
};
|
|
1089
|
+
/**
|
|
1090
|
+
* @public
|
|
1091
|
+
*/
|
|
1092
|
+
export type Scte35InputMode = (typeof Scte35InputMode)[keyof typeof Scte35InputMode];
|
|
938
1093
|
/**
|
|
939
1094
|
* @public
|
|
940
1095
|
* Scte35Input Schedule Action Settings
|
|
@@ -975,34 +1130,54 @@ export interface Scte35SpliceInsertScheduleActionSettings {
|
|
|
975
1130
|
}
|
|
976
1131
|
/**
|
|
977
1132
|
* @public
|
|
1133
|
+
* @enum
|
|
978
1134
|
*/
|
|
979
|
-
export declare
|
|
980
|
-
ARCHIVE_ALLOWED
|
|
981
|
-
ARCHIVE_NOT_ALLOWED
|
|
982
|
-
}
|
|
1135
|
+
export declare const Scte35ArchiveAllowedFlag: {
|
|
1136
|
+
readonly ARCHIVE_ALLOWED: "ARCHIVE_ALLOWED";
|
|
1137
|
+
readonly ARCHIVE_NOT_ALLOWED: "ARCHIVE_NOT_ALLOWED";
|
|
1138
|
+
};
|
|
983
1139
|
/**
|
|
984
1140
|
* @public
|
|
985
1141
|
*/
|
|
986
|
-
export
|
|
987
|
-
NONE = "NONE",
|
|
988
|
-
RESTRICT_GROUP0 = "RESTRICT_GROUP0",
|
|
989
|
-
RESTRICT_GROUP1 = "RESTRICT_GROUP1",
|
|
990
|
-
RESTRICT_GROUP2 = "RESTRICT_GROUP2"
|
|
991
|
-
}
|
|
1142
|
+
export type Scte35ArchiveAllowedFlag = (typeof Scte35ArchiveAllowedFlag)[keyof typeof Scte35ArchiveAllowedFlag];
|
|
992
1143
|
/**
|
|
993
1144
|
* @public
|
|
1145
|
+
* @enum
|
|
994
1146
|
*/
|
|
995
|
-
export declare
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
1147
|
+
export declare const Scte35DeviceRestrictions: {
|
|
1148
|
+
readonly NONE: "NONE";
|
|
1149
|
+
readonly RESTRICT_GROUP0: "RESTRICT_GROUP0";
|
|
1150
|
+
readonly RESTRICT_GROUP1: "RESTRICT_GROUP1";
|
|
1151
|
+
readonly RESTRICT_GROUP2: "RESTRICT_GROUP2";
|
|
1152
|
+
};
|
|
999
1153
|
/**
|
|
1000
1154
|
* @public
|
|
1001
1155
|
*/
|
|
1002
|
-
export
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1156
|
+
export type Scte35DeviceRestrictions = (typeof Scte35DeviceRestrictions)[keyof typeof Scte35DeviceRestrictions];
|
|
1157
|
+
/**
|
|
1158
|
+
* @public
|
|
1159
|
+
* @enum
|
|
1160
|
+
*/
|
|
1161
|
+
export declare const Scte35NoRegionalBlackoutFlag: {
|
|
1162
|
+
readonly NO_REGIONAL_BLACKOUT: "NO_REGIONAL_BLACKOUT";
|
|
1163
|
+
readonly REGIONAL_BLACKOUT: "REGIONAL_BLACKOUT";
|
|
1164
|
+
};
|
|
1165
|
+
/**
|
|
1166
|
+
* @public
|
|
1167
|
+
*/
|
|
1168
|
+
export type Scte35NoRegionalBlackoutFlag = (typeof Scte35NoRegionalBlackoutFlag)[keyof typeof Scte35NoRegionalBlackoutFlag];
|
|
1169
|
+
/**
|
|
1170
|
+
* @public
|
|
1171
|
+
* @enum
|
|
1172
|
+
*/
|
|
1173
|
+
export declare const Scte35WebDeliveryAllowedFlag: {
|
|
1174
|
+
readonly WEB_DELIVERY_ALLOWED: "WEB_DELIVERY_ALLOWED";
|
|
1175
|
+
readonly WEB_DELIVERY_NOT_ALLOWED: "WEB_DELIVERY_NOT_ALLOWED";
|
|
1176
|
+
};
|
|
1177
|
+
/**
|
|
1178
|
+
* @public
|
|
1179
|
+
*/
|
|
1180
|
+
export type Scte35WebDeliveryAllowedFlag = (typeof Scte35WebDeliveryAllowedFlag)[keyof typeof Scte35WebDeliveryAllowedFlag];
|
|
1006
1181
|
/**
|
|
1007
1182
|
* @public
|
|
1008
1183
|
* Corresponds to SCTE-35 delivery_not_restricted_flag parameter. To declare delivery restrictions, include this element and its four "restriction" flags. To declare that there are no restrictions, omit this element.
|
|
@@ -1027,11 +1202,16 @@ export interface Scte35DeliveryRestrictions {
|
|
|
1027
1202
|
}
|
|
1028
1203
|
/**
|
|
1029
1204
|
* @public
|
|
1205
|
+
* @enum
|
|
1030
1206
|
*/
|
|
1031
|
-
export declare
|
|
1032
|
-
SEGMENTATION_EVENT_CANCELED
|
|
1033
|
-
SEGMENTATION_EVENT_NOT_CANCELED
|
|
1034
|
-
}
|
|
1207
|
+
export declare const Scte35SegmentationCancelIndicator: {
|
|
1208
|
+
readonly SEGMENTATION_EVENT_CANCELED: "SEGMENTATION_EVENT_CANCELED";
|
|
1209
|
+
readonly SEGMENTATION_EVENT_NOT_CANCELED: "SEGMENTATION_EVENT_NOT_CANCELED";
|
|
1210
|
+
};
|
|
1211
|
+
/**
|
|
1212
|
+
* @public
|
|
1213
|
+
*/
|
|
1214
|
+
export type Scte35SegmentationCancelIndicator = (typeof Scte35SegmentationCancelIndicator)[keyof typeof Scte35SegmentationCancelIndicator];
|
|
1035
1215
|
/**
|
|
1036
1216
|
* @public
|
|
1037
1217
|
* Corresponds to SCTE-35 segmentation_descriptor.
|
|
@@ -1242,11 +1422,16 @@ export interface FixedModeScheduleActionStartSettings {
|
|
|
1242
1422
|
}
|
|
1243
1423
|
/**
|
|
1244
1424
|
* @public
|
|
1425
|
+
* @enum
|
|
1245
1426
|
*/
|
|
1246
|
-
export declare
|
|
1247
|
-
END
|
|
1248
|
-
START
|
|
1249
|
-
}
|
|
1427
|
+
export declare const FollowPoint: {
|
|
1428
|
+
readonly END: "END";
|
|
1429
|
+
readonly START: "START";
|
|
1430
|
+
};
|
|
1431
|
+
/**
|
|
1432
|
+
* @public
|
|
1433
|
+
*/
|
|
1434
|
+
export type FollowPoint = (typeof FollowPoint)[keyof typeof FollowPoint];
|
|
1250
1435
|
/**
|
|
1251
1436
|
* @public
|
|
1252
1437
|
* Settings to specify if an action follows another.
|
|
@@ -1305,11 +1490,16 @@ export interface ScheduleAction {
|
|
|
1305
1490
|
}
|
|
1306
1491
|
/**
|
|
1307
1492
|
* @public
|
|
1493
|
+
* @enum
|
|
1308
1494
|
*/
|
|
1309
|
-
export declare
|
|
1310
|
-
INCOMING
|
|
1311
|
-
OUTGOING
|
|
1312
|
-
}
|
|
1495
|
+
export declare const InputDeviceTransferType: {
|
|
1496
|
+
readonly INCOMING: "INCOMING";
|
|
1497
|
+
readonly OUTGOING: "OUTGOING";
|
|
1498
|
+
};
|
|
1499
|
+
/**
|
|
1500
|
+
* @public
|
|
1501
|
+
*/
|
|
1502
|
+
export type InputDeviceTransferType = (typeof InputDeviceTransferType)[keyof typeof InputDeviceTransferType];
|
|
1313
1503
|
/**
|
|
1314
1504
|
* @public
|
|
1315
1505
|
* Details about the input device that is being transferred.
|
|
@@ -1348,34 +1538,49 @@ export interface ValidationError {
|
|
|
1348
1538
|
}
|
|
1349
1539
|
/**
|
|
1350
1540
|
* @public
|
|
1541
|
+
* @enum
|
|
1351
1542
|
*/
|
|
1352
|
-
export declare
|
|
1353
|
-
MILLISECONDS
|
|
1354
|
-
SECONDS
|
|
1355
|
-
}
|
|
1543
|
+
export declare const FrameCaptureIntervalUnit: {
|
|
1544
|
+
readonly MILLISECONDS: "MILLISECONDS";
|
|
1545
|
+
readonly SECONDS: "SECONDS";
|
|
1546
|
+
};
|
|
1356
1547
|
/**
|
|
1357
1548
|
* @public
|
|
1358
1549
|
*/
|
|
1359
|
-
export
|
|
1360
|
-
EXTRA_SMALL_10 = "EXTRA_SMALL_10",
|
|
1361
|
-
LARGE_48 = "LARGE_48",
|
|
1362
|
-
MEDIUM_32 = "MEDIUM_32",
|
|
1363
|
-
SMALL_16 = "SMALL_16"
|
|
1364
|
-
}
|
|
1550
|
+
export type FrameCaptureIntervalUnit = (typeof FrameCaptureIntervalUnit)[keyof typeof FrameCaptureIntervalUnit];
|
|
1365
1551
|
/**
|
|
1366
1552
|
* @public
|
|
1553
|
+
* @enum
|
|
1367
1554
|
*/
|
|
1368
|
-
export declare
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1555
|
+
export declare const TimecodeBurninFontSize: {
|
|
1556
|
+
readonly EXTRA_SMALL_10: "EXTRA_SMALL_10";
|
|
1557
|
+
readonly LARGE_48: "LARGE_48";
|
|
1558
|
+
readonly MEDIUM_32: "MEDIUM_32";
|
|
1559
|
+
readonly SMALL_16: "SMALL_16";
|
|
1560
|
+
};
|
|
1561
|
+
/**
|
|
1562
|
+
* @public
|
|
1563
|
+
*/
|
|
1564
|
+
export type TimecodeBurninFontSize = (typeof TimecodeBurninFontSize)[keyof typeof TimecodeBurninFontSize];
|
|
1565
|
+
/**
|
|
1566
|
+
* @public
|
|
1567
|
+
* @enum
|
|
1568
|
+
*/
|
|
1569
|
+
export declare const TimecodeBurninPosition: {
|
|
1570
|
+
readonly BOTTOM_CENTER: "BOTTOM_CENTER";
|
|
1571
|
+
readonly BOTTOM_LEFT: "BOTTOM_LEFT";
|
|
1572
|
+
readonly BOTTOM_RIGHT: "BOTTOM_RIGHT";
|
|
1573
|
+
readonly MIDDLE_CENTER: "MIDDLE_CENTER";
|
|
1574
|
+
readonly MIDDLE_LEFT: "MIDDLE_LEFT";
|
|
1575
|
+
readonly MIDDLE_RIGHT: "MIDDLE_RIGHT";
|
|
1576
|
+
readonly TOP_CENTER: "TOP_CENTER";
|
|
1577
|
+
readonly TOP_LEFT: "TOP_LEFT";
|
|
1578
|
+
readonly TOP_RIGHT: "TOP_RIGHT";
|
|
1579
|
+
};
|
|
1580
|
+
/**
|
|
1581
|
+
* @public
|
|
1582
|
+
*/
|
|
1583
|
+
export type TimecodeBurninPosition = (typeof TimecodeBurninPosition)[keyof typeof TimecodeBurninPosition];
|
|
1379
1584
|
/**
|
|
1380
1585
|
* @public
|
|
1381
1586
|
* Timecode Burnin Settings
|
|
@@ -1414,31 +1619,46 @@ export interface FrameCaptureSettings {
|
|
|
1414
1619
|
}
|
|
1415
1620
|
/**
|
|
1416
1621
|
* @public
|
|
1622
|
+
* @enum
|
|
1417
1623
|
*/
|
|
1418
|
-
export declare
|
|
1419
|
-
AUTO
|
|
1420
|
-
HIGH
|
|
1421
|
-
HIGHER
|
|
1422
|
-
LOW
|
|
1423
|
-
MAX
|
|
1424
|
-
MEDIUM
|
|
1425
|
-
OFF
|
|
1426
|
-
}
|
|
1624
|
+
export declare const H264AdaptiveQuantization: {
|
|
1625
|
+
readonly AUTO: "AUTO";
|
|
1626
|
+
readonly HIGH: "HIGH";
|
|
1627
|
+
readonly HIGHER: "HIGHER";
|
|
1628
|
+
readonly LOW: "LOW";
|
|
1629
|
+
readonly MAX: "MAX";
|
|
1630
|
+
readonly MEDIUM: "MEDIUM";
|
|
1631
|
+
readonly OFF: "OFF";
|
|
1632
|
+
};
|
|
1427
1633
|
/**
|
|
1428
1634
|
* @public
|
|
1429
1635
|
*/
|
|
1430
|
-
export
|
|
1431
|
-
AUTO = "AUTO",
|
|
1432
|
-
FIXED = "FIXED",
|
|
1433
|
-
NONE = "NONE"
|
|
1434
|
-
}
|
|
1636
|
+
export type H264AdaptiveQuantization = (typeof H264AdaptiveQuantization)[keyof typeof H264AdaptiveQuantization];
|
|
1435
1637
|
/**
|
|
1436
1638
|
* @public
|
|
1639
|
+
* @enum
|
|
1437
1640
|
*/
|
|
1438
|
-
export declare
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1641
|
+
export declare const AfdSignaling: {
|
|
1642
|
+
readonly AUTO: "AUTO";
|
|
1643
|
+
readonly FIXED: "FIXED";
|
|
1644
|
+
readonly NONE: "NONE";
|
|
1645
|
+
};
|
|
1646
|
+
/**
|
|
1647
|
+
* @public
|
|
1648
|
+
*/
|
|
1649
|
+
export type AfdSignaling = (typeof AfdSignaling)[keyof typeof AfdSignaling];
|
|
1650
|
+
/**
|
|
1651
|
+
* @public
|
|
1652
|
+
* @enum
|
|
1653
|
+
*/
|
|
1654
|
+
export declare const H264ColorMetadata: {
|
|
1655
|
+
readonly IGNORE: "IGNORE";
|
|
1656
|
+
readonly INSERT: "INSERT";
|
|
1657
|
+
};
|
|
1658
|
+
/**
|
|
1659
|
+
* @public
|
|
1660
|
+
*/
|
|
1661
|
+
export type H264ColorMetadata = (typeof H264ColorMetadata)[keyof typeof H264ColorMetadata];
|
|
1442
1662
|
/**
|
|
1443
1663
|
* @public
|
|
1444
1664
|
* Passthrough applies no color space conversion to the output
|
|
@@ -1477,41 +1697,56 @@ export interface H264ColorSpaceSettings {
|
|
|
1477
1697
|
}
|
|
1478
1698
|
/**
|
|
1479
1699
|
* @public
|
|
1700
|
+
* @enum
|
|
1480
1701
|
*/
|
|
1481
|
-
export declare
|
|
1482
|
-
CABAC
|
|
1483
|
-
CAVLC
|
|
1484
|
-
}
|
|
1702
|
+
export declare const H264EntropyEncoding: {
|
|
1703
|
+
readonly CABAC: "CABAC";
|
|
1704
|
+
readonly CAVLC: "CAVLC";
|
|
1705
|
+
};
|
|
1485
1706
|
/**
|
|
1486
1707
|
* @public
|
|
1487
1708
|
*/
|
|
1488
|
-
export
|
|
1489
|
-
AUTO = "AUTO",
|
|
1490
|
-
DISABLED = "DISABLED",
|
|
1491
|
-
ENABLED = "ENABLED"
|
|
1492
|
-
}
|
|
1709
|
+
export type H264EntropyEncoding = (typeof H264EntropyEncoding)[keyof typeof H264EntropyEncoding];
|
|
1493
1710
|
/**
|
|
1494
1711
|
* @public
|
|
1712
|
+
* @enum
|
|
1495
1713
|
*/
|
|
1496
|
-
export declare
|
|
1497
|
-
AUTO
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1714
|
+
export declare const TemporalFilterPostFilterSharpening: {
|
|
1715
|
+
readonly AUTO: "AUTO";
|
|
1716
|
+
readonly DISABLED: "DISABLED";
|
|
1717
|
+
readonly ENABLED: "ENABLED";
|
|
1718
|
+
};
|
|
1719
|
+
/**
|
|
1720
|
+
* @public
|
|
1721
|
+
*/
|
|
1722
|
+
export type TemporalFilterPostFilterSharpening = (typeof TemporalFilterPostFilterSharpening)[keyof typeof TemporalFilterPostFilterSharpening];
|
|
1723
|
+
/**
|
|
1724
|
+
* @public
|
|
1725
|
+
* @enum
|
|
1726
|
+
*/
|
|
1727
|
+
export declare const TemporalFilterStrength: {
|
|
1728
|
+
readonly AUTO: "AUTO";
|
|
1729
|
+
readonly STRENGTH_1: "STRENGTH_1";
|
|
1730
|
+
readonly STRENGTH_10: "STRENGTH_10";
|
|
1731
|
+
readonly STRENGTH_11: "STRENGTH_11";
|
|
1732
|
+
readonly STRENGTH_12: "STRENGTH_12";
|
|
1733
|
+
readonly STRENGTH_13: "STRENGTH_13";
|
|
1734
|
+
readonly STRENGTH_14: "STRENGTH_14";
|
|
1735
|
+
readonly STRENGTH_15: "STRENGTH_15";
|
|
1736
|
+
readonly STRENGTH_16: "STRENGTH_16";
|
|
1737
|
+
readonly STRENGTH_2: "STRENGTH_2";
|
|
1738
|
+
readonly STRENGTH_3: "STRENGTH_3";
|
|
1739
|
+
readonly STRENGTH_4: "STRENGTH_4";
|
|
1740
|
+
readonly STRENGTH_5: "STRENGTH_5";
|
|
1741
|
+
readonly STRENGTH_6: "STRENGTH_6";
|
|
1742
|
+
readonly STRENGTH_7: "STRENGTH_7";
|
|
1743
|
+
readonly STRENGTH_8: "STRENGTH_8";
|
|
1744
|
+
readonly STRENGTH_9: "STRENGTH_9";
|
|
1745
|
+
};
|
|
1746
|
+
/**
|
|
1747
|
+
* @public
|
|
1748
|
+
*/
|
|
1749
|
+
export type TemporalFilterStrength = (typeof TemporalFilterStrength)[keyof typeof TemporalFilterStrength];
|
|
1515
1750
|
/**
|
|
1516
1751
|
* @public
|
|
1517
1752
|
* Temporal Filter Settings
|
|
@@ -1540,168 +1775,263 @@ export interface H264FilterSettings {
|
|
|
1540
1775
|
}
|
|
1541
1776
|
/**
|
|
1542
1777
|
* @public
|
|
1778
|
+
* @enum
|
|
1543
1779
|
*/
|
|
1544
|
-
export declare
|
|
1545
|
-
AFD_0000
|
|
1546
|
-
AFD_0010
|
|
1547
|
-
AFD_0011
|
|
1548
|
-
AFD_0100
|
|
1549
|
-
AFD_1000
|
|
1550
|
-
AFD_1001
|
|
1551
|
-
AFD_1010
|
|
1552
|
-
AFD_1011
|
|
1553
|
-
AFD_1101
|
|
1554
|
-
AFD_1110
|
|
1555
|
-
AFD_1111
|
|
1556
|
-
}
|
|
1780
|
+
export declare const FixedAfd: {
|
|
1781
|
+
readonly AFD_0000: "AFD_0000";
|
|
1782
|
+
readonly AFD_0010: "AFD_0010";
|
|
1783
|
+
readonly AFD_0011: "AFD_0011";
|
|
1784
|
+
readonly AFD_0100: "AFD_0100";
|
|
1785
|
+
readonly AFD_1000: "AFD_1000";
|
|
1786
|
+
readonly AFD_1001: "AFD_1001";
|
|
1787
|
+
readonly AFD_1010: "AFD_1010";
|
|
1788
|
+
readonly AFD_1011: "AFD_1011";
|
|
1789
|
+
readonly AFD_1101: "AFD_1101";
|
|
1790
|
+
readonly AFD_1110: "AFD_1110";
|
|
1791
|
+
readonly AFD_1111: "AFD_1111";
|
|
1792
|
+
};
|
|
1557
1793
|
/**
|
|
1558
1794
|
* @public
|
|
1559
1795
|
*/
|
|
1560
|
-
export
|
|
1561
|
-
DISABLED = "DISABLED",
|
|
1562
|
-
ENABLED = "ENABLED"
|
|
1563
|
-
}
|
|
1796
|
+
export type FixedAfd = (typeof FixedAfd)[keyof typeof FixedAfd];
|
|
1564
1797
|
/**
|
|
1565
1798
|
* @public
|
|
1799
|
+
* @enum
|
|
1566
1800
|
*/
|
|
1567
|
-
export declare
|
|
1568
|
-
DISABLED
|
|
1569
|
-
ENABLED
|
|
1570
|
-
}
|
|
1801
|
+
export declare const H264FlickerAq: {
|
|
1802
|
+
readonly DISABLED: "DISABLED";
|
|
1803
|
+
readonly ENABLED: "ENABLED";
|
|
1804
|
+
};
|
|
1571
1805
|
/**
|
|
1572
1806
|
* @public
|
|
1573
1807
|
*/
|
|
1574
|
-
export
|
|
1575
|
-
INITIALIZE_FROM_SOURCE = "INITIALIZE_FROM_SOURCE",
|
|
1576
|
-
SPECIFIED = "SPECIFIED"
|
|
1577
|
-
}
|
|
1808
|
+
export type H264FlickerAq = (typeof H264FlickerAq)[keyof typeof H264FlickerAq];
|
|
1578
1809
|
/**
|
|
1579
1810
|
* @public
|
|
1811
|
+
* @enum
|
|
1580
1812
|
*/
|
|
1581
|
-
export declare
|
|
1582
|
-
DISABLED
|
|
1583
|
-
ENABLED
|
|
1584
|
-
}
|
|
1813
|
+
export declare const H264ForceFieldPictures: {
|
|
1814
|
+
readonly DISABLED: "DISABLED";
|
|
1815
|
+
readonly ENABLED: "ENABLED";
|
|
1816
|
+
};
|
|
1585
1817
|
/**
|
|
1586
1818
|
* @public
|
|
1587
1819
|
*/
|
|
1588
|
-
export
|
|
1589
|
-
FRAMES = "FRAMES",
|
|
1590
|
-
SECONDS = "SECONDS"
|
|
1591
|
-
}
|
|
1820
|
+
export type H264ForceFieldPictures = (typeof H264ForceFieldPictures)[keyof typeof H264ForceFieldPictures];
|
|
1592
1821
|
/**
|
|
1593
1822
|
* @public
|
|
1823
|
+
* @enum
|
|
1594
1824
|
*/
|
|
1595
|
-
export declare
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
H264_LEVEL_1_3 = "H264_LEVEL_1_3",
|
|
1600
|
-
H264_LEVEL_2 = "H264_LEVEL_2",
|
|
1601
|
-
H264_LEVEL_2_1 = "H264_LEVEL_2_1",
|
|
1602
|
-
H264_LEVEL_2_2 = "H264_LEVEL_2_2",
|
|
1603
|
-
H264_LEVEL_3 = "H264_LEVEL_3",
|
|
1604
|
-
H264_LEVEL_3_1 = "H264_LEVEL_3_1",
|
|
1605
|
-
H264_LEVEL_3_2 = "H264_LEVEL_3_2",
|
|
1606
|
-
H264_LEVEL_4 = "H264_LEVEL_4",
|
|
1607
|
-
H264_LEVEL_4_1 = "H264_LEVEL_4_1",
|
|
1608
|
-
H264_LEVEL_4_2 = "H264_LEVEL_4_2",
|
|
1609
|
-
H264_LEVEL_5 = "H264_LEVEL_5",
|
|
1610
|
-
H264_LEVEL_5_1 = "H264_LEVEL_5_1",
|
|
1611
|
-
H264_LEVEL_5_2 = "H264_LEVEL_5_2",
|
|
1612
|
-
H264_LEVEL_AUTO = "H264_LEVEL_AUTO"
|
|
1613
|
-
}
|
|
1825
|
+
export declare const H264FramerateControl: {
|
|
1826
|
+
readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
|
|
1827
|
+
readonly SPECIFIED: "SPECIFIED";
|
|
1828
|
+
};
|
|
1614
1829
|
/**
|
|
1615
1830
|
* @public
|
|
1616
1831
|
*/
|
|
1617
|
-
export
|
|
1618
|
-
HIGH = "HIGH",
|
|
1619
|
-
LOW = "LOW",
|
|
1620
|
-
MEDIUM = "MEDIUM"
|
|
1621
|
-
}
|
|
1832
|
+
export type H264FramerateControl = (typeof H264FramerateControl)[keyof typeof H264FramerateControl];
|
|
1622
1833
|
/**
|
|
1623
1834
|
* @public
|
|
1835
|
+
* @enum
|
|
1624
1836
|
*/
|
|
1625
|
-
export declare
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
}
|
|
1837
|
+
export declare const H264GopBReference: {
|
|
1838
|
+
readonly DISABLED: "DISABLED";
|
|
1839
|
+
readonly ENABLED: "ENABLED";
|
|
1840
|
+
};
|
|
1629
1841
|
/**
|
|
1630
1842
|
* @public
|
|
1631
1843
|
*/
|
|
1632
|
-
export
|
|
1633
|
-
BASELINE = "BASELINE",
|
|
1634
|
-
HIGH = "HIGH",
|
|
1635
|
-
HIGH_10BIT = "HIGH_10BIT",
|
|
1636
|
-
HIGH_422 = "HIGH_422",
|
|
1637
|
-
HIGH_422_10BIT = "HIGH_422_10BIT",
|
|
1638
|
-
MAIN = "MAIN"
|
|
1639
|
-
}
|
|
1844
|
+
export type H264GopBReference = (typeof H264GopBReference)[keyof typeof H264GopBReference];
|
|
1640
1845
|
/**
|
|
1641
1846
|
* @public
|
|
1847
|
+
* @enum
|
|
1642
1848
|
*/
|
|
1643
|
-
export declare
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
}
|
|
1849
|
+
export declare const H264GopSizeUnits: {
|
|
1850
|
+
readonly FRAMES: "FRAMES";
|
|
1851
|
+
readonly SECONDS: "SECONDS";
|
|
1852
|
+
};
|
|
1647
1853
|
/**
|
|
1648
1854
|
* @public
|
|
1649
1855
|
*/
|
|
1650
|
-
export
|
|
1651
|
-
CBR = "CBR",
|
|
1652
|
-
MULTIPLEX = "MULTIPLEX",
|
|
1653
|
-
QVBR = "QVBR",
|
|
1654
|
-
VBR = "VBR"
|
|
1655
|
-
}
|
|
1856
|
+
export type H264GopSizeUnits = (typeof H264GopSizeUnits)[keyof typeof H264GopSizeUnits];
|
|
1656
1857
|
/**
|
|
1657
1858
|
* @public
|
|
1859
|
+
* @enum
|
|
1658
1860
|
*/
|
|
1659
|
-
export declare
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1861
|
+
export declare const H264Level: {
|
|
1862
|
+
readonly H264_LEVEL_1: "H264_LEVEL_1";
|
|
1863
|
+
readonly H264_LEVEL_1_1: "H264_LEVEL_1_1";
|
|
1864
|
+
readonly H264_LEVEL_1_2: "H264_LEVEL_1_2";
|
|
1865
|
+
readonly H264_LEVEL_1_3: "H264_LEVEL_1_3";
|
|
1866
|
+
readonly H264_LEVEL_2: "H264_LEVEL_2";
|
|
1867
|
+
readonly H264_LEVEL_2_1: "H264_LEVEL_2_1";
|
|
1868
|
+
readonly H264_LEVEL_2_2: "H264_LEVEL_2_2";
|
|
1869
|
+
readonly H264_LEVEL_3: "H264_LEVEL_3";
|
|
1870
|
+
readonly H264_LEVEL_3_1: "H264_LEVEL_3_1";
|
|
1871
|
+
readonly H264_LEVEL_3_2: "H264_LEVEL_3_2";
|
|
1872
|
+
readonly H264_LEVEL_4: "H264_LEVEL_4";
|
|
1873
|
+
readonly H264_LEVEL_4_1: "H264_LEVEL_4_1";
|
|
1874
|
+
readonly H264_LEVEL_4_2: "H264_LEVEL_4_2";
|
|
1875
|
+
readonly H264_LEVEL_5: "H264_LEVEL_5";
|
|
1876
|
+
readonly H264_LEVEL_5_1: "H264_LEVEL_5_1";
|
|
1877
|
+
readonly H264_LEVEL_5_2: "H264_LEVEL_5_2";
|
|
1878
|
+
readonly H264_LEVEL_AUTO: "H264_LEVEL_AUTO";
|
|
1879
|
+
};
|
|
1663
1880
|
/**
|
|
1664
1881
|
* @public
|
|
1665
1882
|
*/
|
|
1666
|
-
export
|
|
1667
|
-
DISABLED = "DISABLED",
|
|
1668
|
-
ENABLED = "ENABLED"
|
|
1669
|
-
}
|
|
1883
|
+
export type H264Level = (typeof H264Level)[keyof typeof H264Level];
|
|
1670
1884
|
/**
|
|
1671
1885
|
* @public
|
|
1886
|
+
* @enum
|
|
1672
1887
|
*/
|
|
1673
|
-
export declare
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1888
|
+
export declare const H264LookAheadRateControl: {
|
|
1889
|
+
readonly HIGH: "HIGH";
|
|
1890
|
+
readonly LOW: "LOW";
|
|
1891
|
+
readonly MEDIUM: "MEDIUM";
|
|
1892
|
+
};
|
|
1677
1893
|
/**
|
|
1678
1894
|
* @public
|
|
1679
1895
|
*/
|
|
1680
|
-
export
|
|
1681
|
-
DYNAMIC = "DYNAMIC",
|
|
1682
|
-
FIXED = "FIXED"
|
|
1683
|
-
}
|
|
1896
|
+
export type H264LookAheadRateControl = (typeof H264LookAheadRateControl)[keyof typeof H264LookAheadRateControl];
|
|
1684
1897
|
/**
|
|
1685
1898
|
* @public
|
|
1899
|
+
* @enum
|
|
1686
1900
|
*/
|
|
1687
|
-
export declare
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
}
|
|
1901
|
+
export declare const H264ParControl: {
|
|
1902
|
+
readonly INITIALIZE_FROM_SOURCE: "INITIALIZE_FROM_SOURCE";
|
|
1903
|
+
readonly SPECIFIED: "SPECIFIED";
|
|
1904
|
+
};
|
|
1691
1905
|
/**
|
|
1692
1906
|
* @public
|
|
1693
1907
|
*/
|
|
1694
|
-
export
|
|
1695
|
-
DISABLED = "DISABLED",
|
|
1696
|
-
ENABLED = "ENABLED"
|
|
1697
|
-
}
|
|
1908
|
+
export type H264ParControl = (typeof H264ParControl)[keyof typeof H264ParControl];
|
|
1698
1909
|
/**
|
|
1699
1910
|
* @public
|
|
1911
|
+
* @enum
|
|
1700
1912
|
*/
|
|
1701
|
-
export declare
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1913
|
+
export declare const H264Profile: {
|
|
1914
|
+
readonly BASELINE: "BASELINE";
|
|
1915
|
+
readonly HIGH: "HIGH";
|
|
1916
|
+
readonly HIGH_10BIT: "HIGH_10BIT";
|
|
1917
|
+
readonly HIGH_422: "HIGH_422";
|
|
1918
|
+
readonly HIGH_422_10BIT: "HIGH_422_10BIT";
|
|
1919
|
+
readonly MAIN: "MAIN";
|
|
1920
|
+
};
|
|
1921
|
+
/**
|
|
1922
|
+
* @public
|
|
1923
|
+
*/
|
|
1924
|
+
export type H264Profile = (typeof H264Profile)[keyof typeof H264Profile];
|
|
1925
|
+
/**
|
|
1926
|
+
* @public
|
|
1927
|
+
* @enum
|
|
1928
|
+
*/
|
|
1929
|
+
export declare const H264QualityLevel: {
|
|
1930
|
+
readonly ENHANCED_QUALITY: "ENHANCED_QUALITY";
|
|
1931
|
+
readonly STANDARD_QUALITY: "STANDARD_QUALITY";
|
|
1932
|
+
};
|
|
1933
|
+
/**
|
|
1934
|
+
* @public
|
|
1935
|
+
*/
|
|
1936
|
+
export type H264QualityLevel = (typeof H264QualityLevel)[keyof typeof H264QualityLevel];
|
|
1937
|
+
/**
|
|
1938
|
+
* @public
|
|
1939
|
+
* @enum
|
|
1940
|
+
*/
|
|
1941
|
+
export declare const H264RateControlMode: {
|
|
1942
|
+
readonly CBR: "CBR";
|
|
1943
|
+
readonly MULTIPLEX: "MULTIPLEX";
|
|
1944
|
+
readonly QVBR: "QVBR";
|
|
1945
|
+
readonly VBR: "VBR";
|
|
1946
|
+
};
|
|
1947
|
+
/**
|
|
1948
|
+
* @public
|
|
1949
|
+
*/
|
|
1950
|
+
export type H264RateControlMode = (typeof H264RateControlMode)[keyof typeof H264RateControlMode];
|
|
1951
|
+
/**
|
|
1952
|
+
* @public
|
|
1953
|
+
* @enum
|
|
1954
|
+
*/
|
|
1955
|
+
export declare const H264ScanType: {
|
|
1956
|
+
readonly INTERLACED: "INTERLACED";
|
|
1957
|
+
readonly PROGRESSIVE: "PROGRESSIVE";
|
|
1958
|
+
};
|
|
1959
|
+
/**
|
|
1960
|
+
* @public
|
|
1961
|
+
*/
|
|
1962
|
+
export type H264ScanType = (typeof H264ScanType)[keyof typeof H264ScanType];
|
|
1963
|
+
/**
|
|
1964
|
+
* @public
|
|
1965
|
+
* @enum
|
|
1966
|
+
*/
|
|
1967
|
+
export declare const H264SceneChangeDetect: {
|
|
1968
|
+
readonly DISABLED: "DISABLED";
|
|
1969
|
+
readonly ENABLED: "ENABLED";
|
|
1970
|
+
};
|
|
1971
|
+
/**
|
|
1972
|
+
* @public
|
|
1973
|
+
*/
|
|
1974
|
+
export type H264SceneChangeDetect = (typeof H264SceneChangeDetect)[keyof typeof H264SceneChangeDetect];
|
|
1975
|
+
/**
|
|
1976
|
+
* @public
|
|
1977
|
+
* @enum
|
|
1978
|
+
*/
|
|
1979
|
+
export declare const H264SpatialAq: {
|
|
1980
|
+
readonly DISABLED: "DISABLED";
|
|
1981
|
+
readonly ENABLED: "ENABLED";
|
|
1982
|
+
};
|
|
1983
|
+
/**
|
|
1984
|
+
* @public
|
|
1985
|
+
*/
|
|
1986
|
+
export type H264SpatialAq = (typeof H264SpatialAq)[keyof typeof H264SpatialAq];
|
|
1987
|
+
/**
|
|
1988
|
+
* @public
|
|
1989
|
+
* @enum
|
|
1990
|
+
*/
|
|
1991
|
+
export declare const H264SubGopLength: {
|
|
1992
|
+
readonly DYNAMIC: "DYNAMIC";
|
|
1993
|
+
readonly FIXED: "FIXED";
|
|
1994
|
+
};
|
|
1995
|
+
/**
|
|
1996
|
+
* @public
|
|
1997
|
+
*/
|
|
1998
|
+
export type H264SubGopLength = (typeof H264SubGopLength)[keyof typeof H264SubGopLength];
|
|
1999
|
+
/**
|
|
2000
|
+
* @public
|
|
2001
|
+
* @enum
|
|
2002
|
+
*/
|
|
2003
|
+
export declare const H264Syntax: {
|
|
2004
|
+
readonly DEFAULT: "DEFAULT";
|
|
2005
|
+
readonly RP2027: "RP2027";
|
|
2006
|
+
};
|
|
2007
|
+
/**
|
|
2008
|
+
* @public
|
|
2009
|
+
*/
|
|
2010
|
+
export type H264Syntax = (typeof H264Syntax)[keyof typeof H264Syntax];
|
|
2011
|
+
/**
|
|
2012
|
+
* @public
|
|
2013
|
+
* @enum
|
|
2014
|
+
*/
|
|
2015
|
+
export declare const H264TemporalAq: {
|
|
2016
|
+
readonly DISABLED: "DISABLED";
|
|
2017
|
+
readonly ENABLED: "ENABLED";
|
|
2018
|
+
};
|
|
2019
|
+
/**
|
|
2020
|
+
* @public
|
|
2021
|
+
*/
|
|
2022
|
+
export type H264TemporalAq = (typeof H264TemporalAq)[keyof typeof H264TemporalAq];
|
|
2023
|
+
/**
|
|
2024
|
+
* @public
|
|
2025
|
+
* @enum
|
|
2026
|
+
*/
|
|
2027
|
+
export declare const H264TimecodeInsertionBehavior: {
|
|
2028
|
+
readonly DISABLED: "DISABLED";
|
|
2029
|
+
readonly PIC_TIMING_SEI: "PIC_TIMING_SEI";
|
|
2030
|
+
};
|
|
2031
|
+
/**
|
|
2032
|
+
* @public
|
|
2033
|
+
*/
|
|
2034
|
+
export type H264TimecodeInsertionBehavior = (typeof H264TimecodeInsertionBehavior)[keyof typeof H264TimecodeInsertionBehavior];
|
|
1705
2035
|
/**
|
|
1706
2036
|
* @public
|
|
1707
2037
|
* H264 Settings
|
|
@@ -1909,30 +2239,45 @@ export interface H264Settings {
|
|
|
1909
2239
|
}
|
|
1910
2240
|
/**
|
|
1911
2241
|
* @public
|
|
2242
|
+
* @enum
|
|
1912
2243
|
*/
|
|
1913
|
-
export declare
|
|
1914
|
-
AUTO
|
|
1915
|
-
HIGH
|
|
1916
|
-
HIGHER
|
|
1917
|
-
LOW
|
|
1918
|
-
MAX
|
|
1919
|
-
MEDIUM
|
|
1920
|
-
OFF
|
|
1921
|
-
}
|
|
2244
|
+
export declare const H265AdaptiveQuantization: {
|
|
2245
|
+
readonly AUTO: "AUTO";
|
|
2246
|
+
readonly HIGH: "HIGH";
|
|
2247
|
+
readonly HIGHER: "HIGHER";
|
|
2248
|
+
readonly LOW: "LOW";
|
|
2249
|
+
readonly MAX: "MAX";
|
|
2250
|
+
readonly MEDIUM: "MEDIUM";
|
|
2251
|
+
readonly OFF: "OFF";
|
|
2252
|
+
};
|
|
1922
2253
|
/**
|
|
1923
2254
|
* @public
|
|
1924
2255
|
*/
|
|
1925
|
-
export
|
|
1926
|
-
INSERT = "INSERT",
|
|
1927
|
-
OMIT = "OMIT"
|
|
1928
|
-
}
|
|
2256
|
+
export type H265AdaptiveQuantization = (typeof H265AdaptiveQuantization)[keyof typeof H265AdaptiveQuantization];
|
|
1929
2257
|
/**
|
|
1930
2258
|
* @public
|
|
2259
|
+
* @enum
|
|
1931
2260
|
*/
|
|
1932
|
-
export declare
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
}
|
|
2261
|
+
export declare const H265AlternativeTransferFunction: {
|
|
2262
|
+
readonly INSERT: "INSERT";
|
|
2263
|
+
readonly OMIT: "OMIT";
|
|
2264
|
+
};
|
|
2265
|
+
/**
|
|
2266
|
+
* @public
|
|
2267
|
+
*/
|
|
2268
|
+
export type H265AlternativeTransferFunction = (typeof H265AlternativeTransferFunction)[keyof typeof H265AlternativeTransferFunction];
|
|
2269
|
+
/**
|
|
2270
|
+
* @public
|
|
2271
|
+
* @enum
|
|
2272
|
+
*/
|
|
2273
|
+
export declare const H265ColorMetadata: {
|
|
2274
|
+
readonly IGNORE: "IGNORE";
|
|
2275
|
+
readonly INSERT: "INSERT";
|
|
2276
|
+
};
|
|
2277
|
+
/**
|
|
2278
|
+
* @public
|
|
2279
|
+
*/
|
|
2280
|
+
export type H265ColorMetadata = (typeof H265ColorMetadata)[keyof typeof H265ColorMetadata];
|
|
1936
2281
|
/**
|
|
1937
2282
|
* @public
|
|
1938
2283
|
* Dolby Vision81 Settings
|
|
@@ -1977,88 +2322,138 @@ export interface H265FilterSettings {
|
|
|
1977
2322
|
}
|
|
1978
2323
|
/**
|
|
1979
2324
|
* @public
|
|
2325
|
+
* @enum
|
|
1980
2326
|
*/
|
|
1981
|
-
export declare
|
|
1982
|
-
DISABLED
|
|
1983
|
-
ENABLED
|
|
1984
|
-
}
|
|
2327
|
+
export declare const H265FlickerAq: {
|
|
2328
|
+
readonly DISABLED: "DISABLED";
|
|
2329
|
+
readonly ENABLED: "ENABLED";
|
|
2330
|
+
};
|
|
1985
2331
|
/**
|
|
1986
2332
|
* @public
|
|
1987
2333
|
*/
|
|
1988
|
-
export
|
|
1989
|
-
FRAMES = "FRAMES",
|
|
1990
|
-
SECONDS = "SECONDS"
|
|
1991
|
-
}
|
|
2334
|
+
export type H265FlickerAq = (typeof H265FlickerAq)[keyof typeof H265FlickerAq];
|
|
1992
2335
|
/**
|
|
1993
2336
|
* @public
|
|
2337
|
+
* @enum
|
|
1994
2338
|
*/
|
|
1995
|
-
export declare
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
H265_LEVEL_3 = "H265_LEVEL_3",
|
|
2000
|
-
H265_LEVEL_3_1 = "H265_LEVEL_3_1",
|
|
2001
|
-
H265_LEVEL_4 = "H265_LEVEL_4",
|
|
2002
|
-
H265_LEVEL_4_1 = "H265_LEVEL_4_1",
|
|
2003
|
-
H265_LEVEL_5 = "H265_LEVEL_5",
|
|
2004
|
-
H265_LEVEL_5_1 = "H265_LEVEL_5_1",
|
|
2005
|
-
H265_LEVEL_5_2 = "H265_LEVEL_5_2",
|
|
2006
|
-
H265_LEVEL_6 = "H265_LEVEL_6",
|
|
2007
|
-
H265_LEVEL_6_1 = "H265_LEVEL_6_1",
|
|
2008
|
-
H265_LEVEL_6_2 = "H265_LEVEL_6_2",
|
|
2009
|
-
H265_LEVEL_AUTO = "H265_LEVEL_AUTO"
|
|
2010
|
-
}
|
|
2339
|
+
export declare const H265GopSizeUnits: {
|
|
2340
|
+
readonly FRAMES: "FRAMES";
|
|
2341
|
+
readonly SECONDS: "SECONDS";
|
|
2342
|
+
};
|
|
2011
2343
|
/**
|
|
2012
2344
|
* @public
|
|
2013
2345
|
*/
|
|
2014
|
-
export
|
|
2015
|
-
HIGH = "HIGH",
|
|
2016
|
-
LOW = "LOW",
|
|
2017
|
-
MEDIUM = "MEDIUM"
|
|
2018
|
-
}
|
|
2346
|
+
export type H265GopSizeUnits = (typeof H265GopSizeUnits)[keyof typeof H265GopSizeUnits];
|
|
2019
2347
|
/**
|
|
2020
2348
|
* @public
|
|
2349
|
+
* @enum
|
|
2021
2350
|
*/
|
|
2022
|
-
export declare
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2351
|
+
export declare const H265Level: {
|
|
2352
|
+
readonly H265_LEVEL_1: "H265_LEVEL_1";
|
|
2353
|
+
readonly H265_LEVEL_2: "H265_LEVEL_2";
|
|
2354
|
+
readonly H265_LEVEL_2_1: "H265_LEVEL_2_1";
|
|
2355
|
+
readonly H265_LEVEL_3: "H265_LEVEL_3";
|
|
2356
|
+
readonly H265_LEVEL_3_1: "H265_LEVEL_3_1";
|
|
2357
|
+
readonly H265_LEVEL_4: "H265_LEVEL_4";
|
|
2358
|
+
readonly H265_LEVEL_4_1: "H265_LEVEL_4_1";
|
|
2359
|
+
readonly H265_LEVEL_5: "H265_LEVEL_5";
|
|
2360
|
+
readonly H265_LEVEL_5_1: "H265_LEVEL_5_1";
|
|
2361
|
+
readonly H265_LEVEL_5_2: "H265_LEVEL_5_2";
|
|
2362
|
+
readonly H265_LEVEL_6: "H265_LEVEL_6";
|
|
2363
|
+
readonly H265_LEVEL_6_1: "H265_LEVEL_6_1";
|
|
2364
|
+
readonly H265_LEVEL_6_2: "H265_LEVEL_6_2";
|
|
2365
|
+
readonly H265_LEVEL_AUTO: "H265_LEVEL_AUTO";
|
|
2366
|
+
};
|
|
2026
2367
|
/**
|
|
2027
2368
|
* @public
|
|
2028
2369
|
*/
|
|
2029
|
-
export
|
|
2030
|
-
CBR = "CBR",
|
|
2031
|
-
MULTIPLEX = "MULTIPLEX",
|
|
2032
|
-
QVBR = "QVBR"
|
|
2033
|
-
}
|
|
2370
|
+
export type H265Level = (typeof H265Level)[keyof typeof H265Level];
|
|
2034
2371
|
/**
|
|
2035
2372
|
* @public
|
|
2373
|
+
* @enum
|
|
2036
2374
|
*/
|
|
2037
|
-
export declare
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2375
|
+
export declare const H265LookAheadRateControl: {
|
|
2376
|
+
readonly HIGH: "HIGH";
|
|
2377
|
+
readonly LOW: "LOW";
|
|
2378
|
+
readonly MEDIUM: "MEDIUM";
|
|
2379
|
+
};
|
|
2041
2380
|
/**
|
|
2042
2381
|
* @public
|
|
2043
2382
|
*/
|
|
2044
|
-
export
|
|
2045
|
-
DISABLED = "DISABLED",
|
|
2046
|
-
ENABLED = "ENABLED"
|
|
2047
|
-
}
|
|
2383
|
+
export type H265LookAheadRateControl = (typeof H265LookAheadRateControl)[keyof typeof H265LookAheadRateControl];
|
|
2048
2384
|
/**
|
|
2049
2385
|
* @public
|
|
2386
|
+
* @enum
|
|
2050
2387
|
*/
|
|
2051
|
-
export declare
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
}
|
|
2388
|
+
export declare const H265Profile: {
|
|
2389
|
+
readonly MAIN: "MAIN";
|
|
2390
|
+
readonly MAIN_10BIT: "MAIN_10BIT";
|
|
2391
|
+
};
|
|
2055
2392
|
/**
|
|
2056
2393
|
* @public
|
|
2057
2394
|
*/
|
|
2058
|
-
export
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2395
|
+
export type H265Profile = (typeof H265Profile)[keyof typeof H265Profile];
|
|
2396
|
+
/**
|
|
2397
|
+
* @public
|
|
2398
|
+
* @enum
|
|
2399
|
+
*/
|
|
2400
|
+
export declare const H265RateControlMode: {
|
|
2401
|
+
readonly CBR: "CBR";
|
|
2402
|
+
readonly MULTIPLEX: "MULTIPLEX";
|
|
2403
|
+
readonly QVBR: "QVBR";
|
|
2404
|
+
};
|
|
2405
|
+
/**
|
|
2406
|
+
* @public
|
|
2407
|
+
*/
|
|
2408
|
+
export type H265RateControlMode = (typeof H265RateControlMode)[keyof typeof H265RateControlMode];
|
|
2409
|
+
/**
|
|
2410
|
+
* @public
|
|
2411
|
+
* @enum
|
|
2412
|
+
*/
|
|
2413
|
+
export declare const H265ScanType: {
|
|
2414
|
+
readonly INTERLACED: "INTERLACED";
|
|
2415
|
+
readonly PROGRESSIVE: "PROGRESSIVE";
|
|
2416
|
+
};
|
|
2417
|
+
/**
|
|
2418
|
+
* @public
|
|
2419
|
+
*/
|
|
2420
|
+
export type H265ScanType = (typeof H265ScanType)[keyof typeof H265ScanType];
|
|
2421
|
+
/**
|
|
2422
|
+
* @public
|
|
2423
|
+
* @enum
|
|
2424
|
+
*/
|
|
2425
|
+
export declare const H265SceneChangeDetect: {
|
|
2426
|
+
readonly DISABLED: "DISABLED";
|
|
2427
|
+
readonly ENABLED: "ENABLED";
|
|
2428
|
+
};
|
|
2429
|
+
/**
|
|
2430
|
+
* @public
|
|
2431
|
+
*/
|
|
2432
|
+
export type H265SceneChangeDetect = (typeof H265SceneChangeDetect)[keyof typeof H265SceneChangeDetect];
|
|
2433
|
+
/**
|
|
2434
|
+
* @public
|
|
2435
|
+
* @enum
|
|
2436
|
+
*/
|
|
2437
|
+
export declare const H265Tier: {
|
|
2438
|
+
readonly HIGH: "HIGH";
|
|
2439
|
+
readonly MAIN: "MAIN";
|
|
2440
|
+
};
|
|
2441
|
+
/**
|
|
2442
|
+
* @public
|
|
2443
|
+
*/
|
|
2444
|
+
export type H265Tier = (typeof H265Tier)[keyof typeof H265Tier];
|
|
2445
|
+
/**
|
|
2446
|
+
* @public
|
|
2447
|
+
* @enum
|
|
2448
|
+
*/
|
|
2449
|
+
export declare const H265TimecodeInsertionBehavior: {
|
|
2450
|
+
readonly DISABLED: "DISABLED";
|
|
2451
|
+
readonly PIC_TIMING_SEI: "PIC_TIMING_SEI";
|
|
2452
|
+
};
|
|
2453
|
+
/**
|
|
2454
|
+
* @public
|
|
2455
|
+
*/
|
|
2456
|
+
export type H265TimecodeInsertionBehavior = (typeof H265TimecodeInsertionBehavior)[keyof typeof H265TimecodeInsertionBehavior];
|
|
2062
2457
|
/**
|
|
2063
2458
|
* @public
|
|
2064
2459
|
* H265 Settings
|
|
@@ -2205,35 +2600,55 @@ export interface H265Settings {
|
|
|
2205
2600
|
}
|
|
2206
2601
|
/**
|
|
2207
2602
|
* @public
|
|
2603
|
+
* @enum
|
|
2208
2604
|
*/
|
|
2209
|
-
export declare
|
|
2210
|
-
AUTO
|
|
2211
|
-
HIGH
|
|
2212
|
-
LOW
|
|
2213
|
-
MEDIUM
|
|
2214
|
-
OFF
|
|
2215
|
-
}
|
|
2605
|
+
export declare const Mpeg2AdaptiveQuantization: {
|
|
2606
|
+
readonly AUTO: "AUTO";
|
|
2607
|
+
readonly HIGH: "HIGH";
|
|
2608
|
+
readonly LOW: "LOW";
|
|
2609
|
+
readonly MEDIUM: "MEDIUM";
|
|
2610
|
+
readonly OFF: "OFF";
|
|
2611
|
+
};
|
|
2216
2612
|
/**
|
|
2217
2613
|
* @public
|
|
2218
2614
|
*/
|
|
2219
|
-
export
|
|
2220
|
-
IGNORE = "IGNORE",
|
|
2221
|
-
INSERT = "INSERT"
|
|
2222
|
-
}
|
|
2615
|
+
export type Mpeg2AdaptiveQuantization = (typeof Mpeg2AdaptiveQuantization)[keyof typeof Mpeg2AdaptiveQuantization];
|
|
2223
2616
|
/**
|
|
2224
2617
|
* @public
|
|
2618
|
+
* @enum
|
|
2225
2619
|
*/
|
|
2226
|
-
export declare
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
}
|
|
2620
|
+
export declare const Mpeg2ColorMetadata: {
|
|
2621
|
+
readonly IGNORE: "IGNORE";
|
|
2622
|
+
readonly INSERT: "INSERT";
|
|
2623
|
+
};
|
|
2230
2624
|
/**
|
|
2231
2625
|
* @public
|
|
2232
2626
|
*/
|
|
2233
|
-
export
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2627
|
+
export type Mpeg2ColorMetadata = (typeof Mpeg2ColorMetadata)[keyof typeof Mpeg2ColorMetadata];
|
|
2628
|
+
/**
|
|
2629
|
+
* @public
|
|
2630
|
+
* @enum
|
|
2631
|
+
*/
|
|
2632
|
+
export declare const Mpeg2ColorSpace: {
|
|
2633
|
+
readonly AUTO: "AUTO";
|
|
2634
|
+
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
2635
|
+
};
|
|
2636
|
+
/**
|
|
2637
|
+
* @public
|
|
2638
|
+
*/
|
|
2639
|
+
export type Mpeg2ColorSpace = (typeof Mpeg2ColorSpace)[keyof typeof Mpeg2ColorSpace];
|
|
2640
|
+
/**
|
|
2641
|
+
* @public
|
|
2642
|
+
* @enum
|
|
2643
|
+
*/
|
|
2644
|
+
export declare const Mpeg2DisplayRatio: {
|
|
2645
|
+
readonly DISPLAYRATIO16X9: "DISPLAYRATIO16X9";
|
|
2646
|
+
readonly DISPLAYRATIO4X3: "DISPLAYRATIO4X3";
|
|
2647
|
+
};
|
|
2648
|
+
/**
|
|
2649
|
+
* @public
|
|
2650
|
+
*/
|
|
2651
|
+
export type Mpeg2DisplayRatio = (typeof Mpeg2DisplayRatio)[keyof typeof Mpeg2DisplayRatio];
|
|
2237
2652
|
/**
|
|
2238
2653
|
* @public
|
|
2239
2654
|
* Mpeg2 Filter Settings
|
|
@@ -2246,32 +2661,52 @@ export interface Mpeg2FilterSettings {
|
|
|
2246
2661
|
}
|
|
2247
2662
|
/**
|
|
2248
2663
|
* @public
|
|
2664
|
+
* @enum
|
|
2249
2665
|
*/
|
|
2250
|
-
export declare
|
|
2251
|
-
FRAMES
|
|
2252
|
-
SECONDS
|
|
2253
|
-
}
|
|
2666
|
+
export declare const Mpeg2GopSizeUnits: {
|
|
2667
|
+
readonly FRAMES: "FRAMES";
|
|
2668
|
+
readonly SECONDS: "SECONDS";
|
|
2669
|
+
};
|
|
2254
2670
|
/**
|
|
2255
2671
|
* @public
|
|
2256
2672
|
*/
|
|
2257
|
-
export
|
|
2258
|
-
INTERLACED = "INTERLACED",
|
|
2259
|
-
PROGRESSIVE = "PROGRESSIVE"
|
|
2260
|
-
}
|
|
2673
|
+
export type Mpeg2GopSizeUnits = (typeof Mpeg2GopSizeUnits)[keyof typeof Mpeg2GopSizeUnits];
|
|
2261
2674
|
/**
|
|
2262
2675
|
* @public
|
|
2676
|
+
* @enum
|
|
2263
2677
|
*/
|
|
2264
|
-
export declare
|
|
2265
|
-
|
|
2266
|
-
|
|
2267
|
-
}
|
|
2678
|
+
export declare const Mpeg2ScanType: {
|
|
2679
|
+
readonly INTERLACED: "INTERLACED";
|
|
2680
|
+
readonly PROGRESSIVE: "PROGRESSIVE";
|
|
2681
|
+
};
|
|
2268
2682
|
/**
|
|
2269
2683
|
* @public
|
|
2270
2684
|
*/
|
|
2271
|
-
export
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2685
|
+
export type Mpeg2ScanType = (typeof Mpeg2ScanType)[keyof typeof Mpeg2ScanType];
|
|
2686
|
+
/**
|
|
2687
|
+
* @public
|
|
2688
|
+
* @enum
|
|
2689
|
+
*/
|
|
2690
|
+
export declare const Mpeg2SubGopLength: {
|
|
2691
|
+
readonly DYNAMIC: "DYNAMIC";
|
|
2692
|
+
readonly FIXED: "FIXED";
|
|
2693
|
+
};
|
|
2694
|
+
/**
|
|
2695
|
+
* @public
|
|
2696
|
+
*/
|
|
2697
|
+
export type Mpeg2SubGopLength = (typeof Mpeg2SubGopLength)[keyof typeof Mpeg2SubGopLength];
|
|
2698
|
+
/**
|
|
2699
|
+
* @public
|
|
2700
|
+
* @enum
|
|
2701
|
+
*/
|
|
2702
|
+
export declare const Mpeg2TimecodeInsertionBehavior: {
|
|
2703
|
+
readonly DISABLED: "DISABLED";
|
|
2704
|
+
readonly GOP_TIMECODE: "GOP_TIMECODE";
|
|
2705
|
+
};
|
|
2706
|
+
/**
|
|
2707
|
+
* @public
|
|
2708
|
+
*/
|
|
2709
|
+
export type Mpeg2TimecodeInsertionBehavior = (typeof Mpeg2TimecodeInsertionBehavior)[keyof typeof Mpeg2TimecodeInsertionBehavior];
|
|
2275
2710
|
/**
|
|
2276
2711
|
* @public
|
|
2277
2712
|
* Mpeg2 Settings
|
|
@@ -2383,19 +2818,29 @@ export interface VideoCodecSettings {
|
|
|
2383
2818
|
}
|
|
2384
2819
|
/**
|
|
2385
2820
|
* @public
|
|
2821
|
+
* @enum
|
|
2386
2822
|
*/
|
|
2387
|
-
export declare
|
|
2388
|
-
NONE
|
|
2389
|
-
PASSTHROUGH
|
|
2390
|
-
RESPOND
|
|
2391
|
-
}
|
|
2823
|
+
export declare const VideoDescriptionRespondToAfd: {
|
|
2824
|
+
readonly NONE: "NONE";
|
|
2825
|
+
readonly PASSTHROUGH: "PASSTHROUGH";
|
|
2826
|
+
readonly RESPOND: "RESPOND";
|
|
2827
|
+
};
|
|
2392
2828
|
/**
|
|
2393
2829
|
* @public
|
|
2394
2830
|
*/
|
|
2395
|
-
export
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2831
|
+
export type VideoDescriptionRespondToAfd = (typeof VideoDescriptionRespondToAfd)[keyof typeof VideoDescriptionRespondToAfd];
|
|
2832
|
+
/**
|
|
2833
|
+
* @public
|
|
2834
|
+
* @enum
|
|
2835
|
+
*/
|
|
2836
|
+
export declare const VideoDescriptionScalingBehavior: {
|
|
2837
|
+
readonly DEFAULT: "DEFAULT";
|
|
2838
|
+
readonly STRETCH_TO_OUTPUT: "STRETCH_TO_OUTPUT";
|
|
2839
|
+
};
|
|
2840
|
+
/**
|
|
2841
|
+
* @public
|
|
2842
|
+
*/
|
|
2843
|
+
export type VideoDescriptionScalingBehavior = (typeof VideoDescriptionScalingBehavior)[keyof typeof VideoDescriptionScalingBehavior];
|
|
2399
2844
|
/**
|
|
2400
2845
|
* @public
|
|
2401
2846
|
* Video settings for this stream.
|
|
@@ -2435,10 +2880,15 @@ export interface VideoDescription {
|
|
|
2435
2880
|
}
|
|
2436
2881
|
/**
|
|
2437
2882
|
* @public
|
|
2883
|
+
* @enum
|
|
2438
2884
|
*/
|
|
2439
|
-
export declare
|
|
2440
|
-
image_jpeg
|
|
2441
|
-
}
|
|
2885
|
+
export declare const AcceptHeader: {
|
|
2886
|
+
readonly image_jpeg: "image/jpeg";
|
|
2887
|
+
};
|
|
2888
|
+
/**
|
|
2889
|
+
* @public
|
|
2890
|
+
*/
|
|
2891
|
+
export type AcceptHeader = (typeof AcceptHeader)[keyof typeof AcceptHeader];
|
|
2442
2892
|
/**
|
|
2443
2893
|
* @public
|
|
2444
2894
|
* Placeholder documentation for AcceptInputDeviceTransferRequest
|
|
@@ -2605,11 +3055,16 @@ export declare class UnprocessableEntityException extends __BaseException {
|
|
|
2605
3055
|
}
|
|
2606
3056
|
/**
|
|
2607
3057
|
* @public
|
|
3058
|
+
* @enum
|
|
2608
3059
|
*/
|
|
2609
|
-
export declare
|
|
2610
|
-
DISABLED
|
|
2611
|
-
ENABLED
|
|
2612
|
-
}
|
|
3060
|
+
export declare const AvailBlankingState: {
|
|
3061
|
+
readonly DISABLED: "DISABLED";
|
|
3062
|
+
readonly ENABLED: "ENABLED";
|
|
3063
|
+
};
|
|
3064
|
+
/**
|
|
3065
|
+
* @public
|
|
3066
|
+
*/
|
|
3067
|
+
export type AvailBlankingState = (typeof AvailBlankingState)[keyof typeof AvailBlankingState];
|
|
2613
3068
|
/**
|
|
2614
3069
|
* @public
|
|
2615
3070
|
* Avail Blanking
|
|
@@ -2656,18 +3111,28 @@ export interface Esam {
|
|
|
2656
3111
|
}
|
|
2657
3112
|
/**
|
|
2658
3113
|
* @public
|
|
3114
|
+
* @enum
|
|
2659
3115
|
*/
|
|
2660
|
-
export declare
|
|
2661
|
-
FOLLOW
|
|
2662
|
-
IGNORE
|
|
2663
|
-
}
|
|
3116
|
+
export declare const Scte35SpliceInsertNoRegionalBlackoutBehavior: {
|
|
3117
|
+
readonly FOLLOW: "FOLLOW";
|
|
3118
|
+
readonly IGNORE: "IGNORE";
|
|
3119
|
+
};
|
|
2664
3120
|
/**
|
|
2665
3121
|
* @public
|
|
2666
3122
|
*/
|
|
2667
|
-
export
|
|
2668
|
-
|
|
2669
|
-
|
|
2670
|
-
|
|
3123
|
+
export type Scte35SpliceInsertNoRegionalBlackoutBehavior = (typeof Scte35SpliceInsertNoRegionalBlackoutBehavior)[keyof typeof Scte35SpliceInsertNoRegionalBlackoutBehavior];
|
|
3124
|
+
/**
|
|
3125
|
+
* @public
|
|
3126
|
+
* @enum
|
|
3127
|
+
*/
|
|
3128
|
+
export declare const Scte35SpliceInsertWebDeliveryAllowedBehavior: {
|
|
3129
|
+
readonly FOLLOW: "FOLLOW";
|
|
3130
|
+
readonly IGNORE: "IGNORE";
|
|
3131
|
+
};
|
|
3132
|
+
/**
|
|
3133
|
+
* @public
|
|
3134
|
+
*/
|
|
3135
|
+
export type Scte35SpliceInsertWebDeliveryAllowedBehavior = (typeof Scte35SpliceInsertWebDeliveryAllowedBehavior)[keyof typeof Scte35SpliceInsertWebDeliveryAllowedBehavior];
|
|
2671
3136
|
/**
|
|
2672
3137
|
* @public
|
|
2673
3138
|
* Typical configuration that applies breaks on splice inserts in addition to time signal placement opportunities, breaks, and advertisements.
|
|
@@ -2688,18 +3153,28 @@ export interface Scte35SpliceInsert {
|
|
|
2688
3153
|
}
|
|
2689
3154
|
/**
|
|
2690
3155
|
* @public
|
|
3156
|
+
* @enum
|
|
2691
3157
|
*/
|
|
2692
|
-
export declare
|
|
2693
|
-
FOLLOW
|
|
2694
|
-
IGNORE
|
|
2695
|
-
}
|
|
3158
|
+
export declare const Scte35AposNoRegionalBlackoutBehavior: {
|
|
3159
|
+
readonly FOLLOW: "FOLLOW";
|
|
3160
|
+
readonly IGNORE: "IGNORE";
|
|
3161
|
+
};
|
|
2696
3162
|
/**
|
|
2697
3163
|
* @public
|
|
2698
3164
|
*/
|
|
2699
|
-
export
|
|
2700
|
-
|
|
2701
|
-
|
|
2702
|
-
|
|
3165
|
+
export type Scte35AposNoRegionalBlackoutBehavior = (typeof Scte35AposNoRegionalBlackoutBehavior)[keyof typeof Scte35AposNoRegionalBlackoutBehavior];
|
|
3166
|
+
/**
|
|
3167
|
+
* @public
|
|
3168
|
+
* @enum
|
|
3169
|
+
*/
|
|
3170
|
+
export declare const Scte35AposWebDeliveryAllowedBehavior: {
|
|
3171
|
+
readonly FOLLOW: "FOLLOW";
|
|
3172
|
+
readonly IGNORE: "IGNORE";
|
|
3173
|
+
};
|
|
3174
|
+
/**
|
|
3175
|
+
* @public
|
|
3176
|
+
*/
|
|
3177
|
+
export type Scte35AposWebDeliveryAllowedBehavior = (typeof Scte35AposWebDeliveryAllowedBehavior)[keyof typeof Scte35AposWebDeliveryAllowedBehavior];
|
|
2703
3178
|
/**
|
|
2704
3179
|
* @public
|
|
2705
3180
|
* Atypical configuration that applies segment breaks only on SCTE-35 time signal placement opportunities and breaks.
|
|
@@ -2912,18 +3387,28 @@ export interface BatchUpdateScheduleResponse {
|
|
|
2912
3387
|
}
|
|
2913
3388
|
/**
|
|
2914
3389
|
* @public
|
|
3390
|
+
* @enum
|
|
2915
3391
|
*/
|
|
2916
|
-
export declare
|
|
2917
|
-
DISABLED
|
|
2918
|
-
ENABLED
|
|
2919
|
-
}
|
|
3392
|
+
export declare const BlackoutSlateNetworkEndBlackout: {
|
|
3393
|
+
readonly DISABLED: "DISABLED";
|
|
3394
|
+
readonly ENABLED: "ENABLED";
|
|
3395
|
+
};
|
|
2920
3396
|
/**
|
|
2921
3397
|
* @public
|
|
2922
3398
|
*/
|
|
2923
|
-
export
|
|
2924
|
-
|
|
2925
|
-
|
|
2926
|
-
|
|
3399
|
+
export type BlackoutSlateNetworkEndBlackout = (typeof BlackoutSlateNetworkEndBlackout)[keyof typeof BlackoutSlateNetworkEndBlackout];
|
|
3400
|
+
/**
|
|
3401
|
+
* @public
|
|
3402
|
+
* @enum
|
|
3403
|
+
*/
|
|
3404
|
+
export declare const BlackoutSlateState: {
|
|
3405
|
+
readonly DISABLED: "DISABLED";
|
|
3406
|
+
readonly ENABLED: "ENABLED";
|
|
3407
|
+
};
|
|
3408
|
+
/**
|
|
3409
|
+
* @public
|
|
3410
|
+
*/
|
|
3411
|
+
export type BlackoutSlateState = (typeof BlackoutSlateState)[keyof typeof BlackoutSlateState];
|
|
2927
3412
|
/**
|
|
2928
3413
|
* @public
|
|
2929
3414
|
* Blackout Slate
|
|
@@ -2968,11 +3453,16 @@ export interface CancelInputDeviceTransferResponse {
|
|
|
2968
3453
|
}
|
|
2969
3454
|
/**
|
|
2970
3455
|
* @public
|
|
3456
|
+
* @enum
|
|
2971
3457
|
*/
|
|
2972
|
-
export declare
|
|
2973
|
-
DISABLED
|
|
2974
|
-
ENABLED
|
|
2975
|
-
}
|
|
3458
|
+
export declare const FeatureActivationsInputPrepareScheduleActions: {
|
|
3459
|
+
readonly DISABLED: "DISABLED";
|
|
3460
|
+
readonly ENABLED: "ENABLED";
|
|
3461
|
+
};
|
|
3462
|
+
/**
|
|
3463
|
+
* @public
|
|
3464
|
+
*/
|
|
3465
|
+
export type FeatureActivationsInputPrepareScheduleActions = (typeof FeatureActivationsInputPrepareScheduleActions)[keyof typeof FeatureActivationsInputPrepareScheduleActions];
|
|
2976
3466
|
/**
|
|
2977
3467
|
* @public
|
|
2978
3468
|
* Feature Activations
|
|
@@ -2986,18 +3476,28 @@ export interface FeatureActivations {
|
|
|
2986
3476
|
}
|
|
2987
3477
|
/**
|
|
2988
3478
|
* @public
|
|
3479
|
+
* @enum
|
|
2989
3480
|
*/
|
|
2990
|
-
export declare
|
|
2991
|
-
NONE
|
|
2992
|
-
SWITCH_AND_LOOP_INPUTS
|
|
2993
|
-
}
|
|
3481
|
+
export declare const GlobalConfigurationInputEndAction: {
|
|
3482
|
+
readonly NONE: "NONE";
|
|
3483
|
+
readonly SWITCH_AND_LOOP_INPUTS: "SWITCH_AND_LOOP_INPUTS";
|
|
3484
|
+
};
|
|
2994
3485
|
/**
|
|
2995
3486
|
* @public
|
|
2996
3487
|
*/
|
|
2997
|
-
export
|
|
2998
|
-
|
|
2999
|
-
|
|
3000
|
-
|
|
3488
|
+
export type GlobalConfigurationInputEndAction = (typeof GlobalConfigurationInputEndAction)[keyof typeof GlobalConfigurationInputEndAction];
|
|
3489
|
+
/**
|
|
3490
|
+
* @public
|
|
3491
|
+
* @enum
|
|
3492
|
+
*/
|
|
3493
|
+
export declare const InputLossImageType: {
|
|
3494
|
+
readonly COLOR: "COLOR";
|
|
3495
|
+
readonly SLATE: "SLATE";
|
|
3496
|
+
};
|
|
3497
|
+
/**
|
|
3498
|
+
* @public
|
|
3499
|
+
*/
|
|
3500
|
+
export type InputLossImageType = (typeof InputLossImageType)[keyof typeof InputLossImageType];
|
|
3001
3501
|
/**
|
|
3002
3502
|
* @public
|
|
3003
3503
|
* Input Loss Behavior
|
|
@@ -3026,25 +3526,40 @@ export interface InputLossBehavior {
|
|
|
3026
3526
|
}
|
|
3027
3527
|
/**
|
|
3028
3528
|
* @public
|
|
3529
|
+
* @enum
|
|
3029
3530
|
*/
|
|
3030
|
-
export declare
|
|
3031
|
-
EPOCH_LOCKING
|
|
3032
|
-
PIPELINE_LOCKING
|
|
3033
|
-
}
|
|
3531
|
+
export declare const GlobalConfigurationOutputLockingMode: {
|
|
3532
|
+
readonly EPOCH_LOCKING: "EPOCH_LOCKING";
|
|
3533
|
+
readonly PIPELINE_LOCKING: "PIPELINE_LOCKING";
|
|
3534
|
+
};
|
|
3034
3535
|
/**
|
|
3035
3536
|
* @public
|
|
3036
3537
|
*/
|
|
3037
|
-
export
|
|
3038
|
-
INPUT_CLOCK = "INPUT_CLOCK",
|
|
3039
|
-
SYSTEM_CLOCK = "SYSTEM_CLOCK"
|
|
3040
|
-
}
|
|
3538
|
+
export type GlobalConfigurationOutputLockingMode = (typeof GlobalConfigurationOutputLockingMode)[keyof typeof GlobalConfigurationOutputLockingMode];
|
|
3041
3539
|
/**
|
|
3042
3540
|
* @public
|
|
3541
|
+
* @enum
|
|
3043
3542
|
*/
|
|
3044
|
-
export declare
|
|
3045
|
-
|
|
3046
|
-
|
|
3047
|
-
}
|
|
3543
|
+
export declare const GlobalConfigurationOutputTimingSource: {
|
|
3544
|
+
readonly INPUT_CLOCK: "INPUT_CLOCK";
|
|
3545
|
+
readonly SYSTEM_CLOCK: "SYSTEM_CLOCK";
|
|
3546
|
+
};
|
|
3547
|
+
/**
|
|
3548
|
+
* @public
|
|
3549
|
+
*/
|
|
3550
|
+
export type GlobalConfigurationOutputTimingSource = (typeof GlobalConfigurationOutputTimingSource)[keyof typeof GlobalConfigurationOutputTimingSource];
|
|
3551
|
+
/**
|
|
3552
|
+
* @public
|
|
3553
|
+
* @enum
|
|
3554
|
+
*/
|
|
3555
|
+
export declare const GlobalConfigurationLowFramerateInputs: {
|
|
3556
|
+
readonly DISABLED: "DISABLED";
|
|
3557
|
+
readonly ENABLED: "ENABLED";
|
|
3558
|
+
};
|
|
3559
|
+
/**
|
|
3560
|
+
* @public
|
|
3561
|
+
*/
|
|
3562
|
+
export type GlobalConfigurationLowFramerateInputs = (typeof GlobalConfigurationLowFramerateInputs)[keyof typeof GlobalConfigurationLowFramerateInputs];
|
|
3048
3563
|
/**
|
|
3049
3564
|
* @public
|
|
3050
3565
|
* Global Configuration
|
|
@@ -3080,11 +3595,16 @@ export interface GlobalConfiguration {
|
|
|
3080
3595
|
}
|
|
3081
3596
|
/**
|
|
3082
3597
|
* @public
|
|
3598
|
+
* @enum
|
|
3083
3599
|
*/
|
|
3084
|
-
export declare
|
|
3085
|
-
DISABLED
|
|
3086
|
-
ENABLED
|
|
3087
|
-
}
|
|
3600
|
+
export declare const MotionGraphicsInsertion: {
|
|
3601
|
+
readonly DISABLED: "DISABLED";
|
|
3602
|
+
readonly ENABLED: "ENABLED";
|
|
3603
|
+
};
|
|
3604
|
+
/**
|
|
3605
|
+
* @public
|
|
3606
|
+
*/
|
|
3607
|
+
export type MotionGraphicsInsertion = (typeof MotionGraphicsInsertion)[keyof typeof MotionGraphicsInsertion];
|
|
3088
3608
|
/**
|
|
3089
3609
|
* @public
|
|
3090
3610
|
* Html Motion Graphics Settings
|
|
@@ -3117,11 +3637,16 @@ export interface MotionGraphicsConfiguration {
|
|
|
3117
3637
|
}
|
|
3118
3638
|
/**
|
|
3119
3639
|
* @public
|
|
3640
|
+
* @enum
|
|
3120
3641
|
*/
|
|
3121
|
-
export declare
|
|
3122
|
-
DISABLED
|
|
3123
|
-
ENABLED
|
|
3124
|
-
}
|
|
3642
|
+
export declare const NielsenPcmToId3TaggingState: {
|
|
3643
|
+
readonly DISABLED: "DISABLED";
|
|
3644
|
+
readonly ENABLED: "ENABLED";
|
|
3645
|
+
};
|
|
3646
|
+
/**
|
|
3647
|
+
* @public
|
|
3648
|
+
*/
|
|
3649
|
+
export type NielsenPcmToId3TaggingState = (typeof NielsenPcmToId3TaggingState)[keyof typeof NielsenPcmToId3TaggingState];
|
|
3125
3650
|
/**
|
|
3126
3651
|
* @public
|
|
3127
3652
|
* Nielsen Configuration
|
|
@@ -3138,12 +3663,17 @@ export interface NielsenConfiguration {
|
|
|
3138
3663
|
}
|
|
3139
3664
|
/**
|
|
3140
3665
|
* @public
|
|
3666
|
+
* @enum
|
|
3141
3667
|
*/
|
|
3142
|
-
export declare
|
|
3143
|
-
EMBEDDED
|
|
3144
|
-
SYSTEMCLOCK
|
|
3145
|
-
ZEROBASED
|
|
3146
|
-
}
|
|
3668
|
+
export declare const TimecodeConfigSource: {
|
|
3669
|
+
readonly EMBEDDED: "EMBEDDED";
|
|
3670
|
+
readonly SYSTEMCLOCK: "SYSTEMCLOCK";
|
|
3671
|
+
readonly ZEROBASED: "ZEROBASED";
|
|
3672
|
+
};
|
|
3673
|
+
/**
|
|
3674
|
+
* @public
|
|
3675
|
+
*/
|
|
3676
|
+
export type TimecodeConfigSource = (typeof TimecodeConfigSource)[keyof typeof TimecodeConfigSource];
|
|
3147
3677
|
/**
|
|
3148
3678
|
* @public
|
|
3149
3679
|
* Timecode Config
|
|
@@ -3313,10 +3843,15 @@ export interface ClaimDeviceResponse {
|
|
|
3313
3843
|
}
|
|
3314
3844
|
/**
|
|
3315
3845
|
* @public
|
|
3846
|
+
* @enum
|
|
3316
3847
|
*/
|
|
3317
|
-
export declare
|
|
3318
|
-
image_jpeg
|
|
3319
|
-
}
|
|
3848
|
+
export declare const ContentType: {
|
|
3849
|
+
readonly image_jpeg: "image/jpeg";
|
|
3850
|
+
};
|
|
3851
|
+
/**
|
|
3852
|
+
* @public
|
|
3853
|
+
*/
|
|
3854
|
+
export type ContentType = (typeof ContentType)[keyof typeof ContentType];
|
|
3320
3855
|
/**
|
|
3321
3856
|
* @public
|
|
3322
3857
|
* Placeholder documentation for MaintenanceCreateSettings
|
|
@@ -3646,12 +4181,17 @@ export interface CreateMultiplexResponse {
|
|
|
3646
4181
|
}
|
|
3647
4182
|
/**
|
|
3648
4183
|
* @public
|
|
4184
|
+
* @enum
|
|
3649
4185
|
*/
|
|
3650
|
-
export declare
|
|
3651
|
-
CURRENTLY_ACTIVE
|
|
3652
|
-
PIPELINE_0
|
|
3653
|
-
PIPELINE_1
|
|
3654
|
-
}
|
|
4186
|
+
export declare const PreferredChannelPipeline: {
|
|
4187
|
+
readonly CURRENTLY_ACTIVE: "CURRENTLY_ACTIVE";
|
|
4188
|
+
readonly PIPELINE_0: "PIPELINE_0";
|
|
4189
|
+
readonly PIPELINE_1: "PIPELINE_1";
|
|
4190
|
+
};
|
|
4191
|
+
/**
|
|
4192
|
+
* @public
|
|
4193
|
+
*/
|
|
4194
|
+
export type PreferredChannelPipeline = (typeof PreferredChannelPipeline)[keyof typeof PreferredChannelPipeline];
|
|
3655
4195
|
/**
|
|
3656
4196
|
* @public
|
|
3657
4197
|
* Transport stream service descriptor configuration for the Multiplex program.
|
|
@@ -5256,11 +5796,16 @@ export interface PurchaseOfferingResponse {
|
|
|
5256
5796
|
}
|
|
5257
5797
|
/**
|
|
5258
5798
|
* @public
|
|
5799
|
+
* @enum
|
|
5259
5800
|
*/
|
|
5260
|
-
export declare
|
|
5261
|
-
NO
|
|
5262
|
-
YES
|
|
5263
|
-
}
|
|
5801
|
+
export declare const RebootInputDeviceForce: {
|
|
5802
|
+
readonly NO: "NO";
|
|
5803
|
+
readonly YES: "YES";
|
|
5804
|
+
};
|
|
5805
|
+
/**
|
|
5806
|
+
* @public
|
|
5807
|
+
*/
|
|
5808
|
+
export type RebootInputDeviceForce = (typeof RebootInputDeviceForce)[keyof typeof RebootInputDeviceForce];
|
|
5264
5809
|
/**
|
|
5265
5810
|
* @public
|
|
5266
5811
|
* A request to reboot an AWS Elemental device.
|