@aws-sdk/client-medialive 3.427.0 → 3.429.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.
@@ -184,7 +184,7 @@ export interface HlsGroupSettings {
184
184
  * @public
185
185
  * Choose one or more ad marker types to pass SCTE35 signals through to this group of Apple HLS outputs.
186
186
  */
187
- AdMarkers?: (HlsAdMarkers | string)[];
187
+ AdMarkers?: HlsAdMarkers[];
188
188
  /**
189
189
  * @public
190
190
  * A partial URI prefix that will be prepended to each output in the media .m3u8 file. Can be used if base manifest is delivered from a different URL than the main .m3u8 file.
@@ -221,17 +221,17 @@ export interface HlsGroupSettings {
221
221
  * none: Include CLOSED-CAPTIONS=NONE line in the manifest.
222
222
  * omit: Omit any CLOSED-CAPTIONS line from the manifest.
223
223
  */
224
- CaptionLanguageSetting?: HlsCaptionLanguageSetting | string;
224
+ CaptionLanguageSetting?: HlsCaptionLanguageSetting;
225
225
  /**
226
226
  * @public
227
227
  * When set to "disabled", sets the #EXT-X-ALLOW-CACHE:no tag in the manifest, which prevents clients from saving media segments for later replay.
228
228
  */
229
- ClientCache?: HlsClientCache | string;
229
+ ClientCache?: HlsClientCache;
230
230
  /**
231
231
  * @public
232
232
  * Specification to use (RFC-6381 or the default RFC-4281) during m3u8 playlist generation.
233
233
  */
234
- CodecSpecification?: HlsCodecSpecification | string;
234
+ CodecSpecification?: HlsCodecSpecification;
235
235
  /**
236
236
  * @public
237
237
  * For use with encryptionType. This is a 128-bit, 16-byte hex value represented by a 32-character text string. If ivSource is set to "explicit" then this parameter is required and is used as the IV for encryption.
@@ -246,19 +246,19 @@ export interface HlsGroupSettings {
246
246
  * @public
247
247
  * Place segments in subdirectories.
248
248
  */
249
- DirectoryStructure?: HlsDirectoryStructure | string;
249
+ DirectoryStructure?: HlsDirectoryStructure;
250
250
  /**
251
251
  * @public
252
252
  * Specifies whether to insert EXT-X-DISCONTINUITY tags in the HLS child manifests for this output group.
253
253
  * Typically, choose Insert because these tags are required in the manifest (according to the HLS specification) and serve an important purpose.
254
254
  * Choose Never Insert only if the downstream system is doing real-time failover (without using the MediaLive automatic failover feature) and only if that downstream system has advised you to exclude the tags.
255
255
  */
256
- DiscontinuityTags?: HlsDiscontinuityTags | string;
256
+ DiscontinuityTags?: HlsDiscontinuityTags;
257
257
  /**
258
258
  * @public
259
259
  * Encrypts the segments with the given encryption scheme. Exclude this parameter if no encryption is desired.
260
260
  */
261
- EncryptionType?: HlsEncryptionType | string;
261
+ EncryptionType?: HlsEncryptionType;
262
262
  /**
263
263
  * @public
264
264
  * Parameters that control interactions with the CDN.
@@ -268,21 +268,21 @@ export interface HlsGroupSettings {
268
268
  * @public
269
269
  * State of HLS ID3 Segment Tagging
270
270
  */
271
- HlsId3SegmentTagging?: HlsId3SegmentTaggingState | string;
271
+ HlsId3SegmentTagging?: HlsId3SegmentTaggingState;
272
272
  /**
273
273
  * @public
274
274
  * DISABLED: Do not create an I-frame-only manifest, but do create the master and media manifests (according to the Output Selection field).
275
275
  *
276
276
  * STANDARD: Create an I-frame-only manifest for each output that contains video, as well as the other manifests (according to the Output Selection field). The I-frame manifest contains a #EXT-X-I-FRAMES-ONLY tag to indicate it is I-frame only, and one or more #EXT-X-BYTERANGE entries identifying the I-frame position. For example, #EXT-X-BYTERANGE:160364@1461888"
277
277
  */
278
- IFrameOnlyPlaylists?: IFrameOnlyPlaylistType | string;
278
+ IFrameOnlyPlaylists?: IFrameOnlyPlaylistType;
279
279
  /**
280
280
  * @public
281
281
  * Specifies whether to include the final (incomplete) segment in the media output when the pipeline stops producing output because of a channel stop, a channel pause or a loss of input to the pipeline.
282
282
  * Auto means that MediaLive decides whether to include the final segment, depending on the channel class and the types of output groups.
283
283
  * Suppress means to never include the incomplete segment. We recommend you choose Auto and let MediaLive control the behavior.
284
284
  */
285
- IncompleteSegmentBehavior?: HlsIncompleteSegmentBehavior | string;
285
+ IncompleteSegmentBehavior?: HlsIncompleteSegmentBehavior;
286
286
  /**
287
287
  * @public
288
288
  * Applies only if Mode field is LIVE.
@@ -294,17 +294,17 @@ export interface HlsGroupSettings {
294
294
  * @public
295
295
  * Parameter that control output group behavior on input loss.
296
296
  */
297
- InputLossAction?: InputLossActionForHlsOut | string;
297
+ InputLossAction?: InputLossActionForHlsOut;
298
298
  /**
299
299
  * @public
300
300
  * For use with encryptionType. The IV (Initialization Vector) is a 128-bit number used in conjunction with the key for encrypting blocks. If set to "include", IV is listed in the manifest, otherwise the IV is not in the manifest.
301
301
  */
302
- IvInManifest?: HlsIvInManifest | string;
302
+ IvInManifest?: HlsIvInManifest;
303
303
  /**
304
304
  * @public
305
305
  * For use with encryptionType. The IV (Initialization Vector) is a 128-bit number used in conjunction with the key for encrypting blocks. If this setting is "followsSegmentNumber", it will cause the IV to change every segment (to match the segment number). If this is set to "explicit", you must enter a constantIv value.
306
306
  */
307
- IvSource?: HlsIvSource | string;
307
+ IvSource?: HlsIvSource;
308
308
  /**
309
309
  * @public
310
310
  * Applies only if Mode field is LIVE.
@@ -333,12 +333,12 @@ export interface HlsGroupSettings {
333
333
  * @public
334
334
  * When set to gzip, compresses HLS playlist.
335
335
  */
336
- ManifestCompression?: HlsManifestCompression | string;
336
+ ManifestCompression?: HlsManifestCompression;
337
337
  /**
338
338
  * @public
339
339
  * Indicates whether the output manifest should use floating point or integer values for segment duration.
340
340
  */
341
- ManifestDurationFormat?: HlsManifestDurationFormat | string;
341
+ ManifestDurationFormat?: HlsManifestDurationFormat;
342
342
  /**
343
343
  * @public
344
344
  * Minimum length of MPEG-2 Transport Stream segments in seconds. When set, minimum segment length is enforced by looking ahead and back within the specified range for a nearby avail and extending the segment size if needed.
@@ -350,7 +350,7 @@ export interface HlsGroupSettings {
350
350
  *
351
351
  * VOD mode uses HLS EXT-X-PLAYLIST-TYPE of EVENT while the channel is running, converting it to a "VOD" type manifest on completion of the stream.
352
352
  */
353
- Mode?: HlsMode | string;
353
+ Mode?: HlsMode;
354
354
  /**
355
355
  * @public
356
356
  * MANIFESTS_AND_SEGMENTS: Generates manifests (master manifest, if applicable, and media manifests) for this output group.
@@ -359,12 +359,12 @@ export interface HlsGroupSettings {
359
359
  *
360
360
  * SEGMENTS_ONLY: Does not generate any manifests for this output group.
361
361
  */
362
- OutputSelection?: HlsOutputSelection | string;
362
+ OutputSelection?: HlsOutputSelection;
363
363
  /**
364
364
  * @public
365
365
  * Includes or excludes EXT-X-PROGRAM-DATE-TIME tag in .m3u8 manifest files. The value is calculated using the program date time clock.
366
366
  */
367
- ProgramDateTime?: HlsProgramDateTime | string;
367
+ ProgramDateTime?: HlsProgramDateTime;
368
368
  /**
369
369
  * @public
370
370
  * Specifies the algorithm used to drive the HLS EXT-X-PROGRAM-DATE-TIME clock. Options include:
@@ -373,7 +373,7 @@ export interface HlsGroupSettings {
373
373
  *
374
374
  * SYSTEM_CLOCK: The PDT clock is initialized as a function of the UTC wall clock, then incremented by the EXTINF duration of each encoded segment. If the PDT clock diverges from the wall clock by more than 500ms, it is resynchronized to the wall clock.
375
375
  */
376
- ProgramDateTimeClock?: HlsProgramDateTimeClock | string;
376
+ ProgramDateTimeClock?: HlsProgramDateTimeClock;
377
377
  /**
378
378
  * @public
379
379
  * Period of insertion of EXT-X-PROGRAM-DATE-TIME entry, in seconds.
@@ -387,7 +387,7 @@ export interface HlsGroupSettings {
387
387
  *
388
388
  * For an HLS output group with MediaPackage as the destination, the DISABLED behavior is always followed. MediaPackage regenerates the manifests it serves to players so a redundant manifest from MediaLive is irrelevant.
389
389
  */
390
- RedundantManifest?: HlsRedundantManifest | string;
390
+ RedundantManifest?: HlsRedundantManifest;
391
391
  /**
392
392
  * @public
393
393
  * Length of MPEG-2 Transport Stream segments to create in seconds. Note that segments will end on the next keyframe after this duration, so actual segment length may be longer.
@@ -397,7 +397,7 @@ export interface HlsGroupSettings {
397
397
  * @public
398
398
  * useInputSegmentation has been deprecated. The configured segment size is always used.
399
399
  */
400
- SegmentationMode?: HlsSegmentationMode | string;
400
+ SegmentationMode?: HlsSegmentationMode;
401
401
  /**
402
402
  * @public
403
403
  * Number of segments to write to a subdirectory before starting a new one. directoryStructure must be subdirectoryPerStream for this setting to have an effect.
@@ -407,12 +407,12 @@ export interface HlsGroupSettings {
407
407
  * @public
408
408
  * Include or exclude RESOLUTION attribute for video in EXT-X-STREAM-INF tag of variant manifest.
409
409
  */
410
- StreamInfResolution?: HlsStreamInfResolution | string;
410
+ StreamInfResolution?: HlsStreamInfResolution;
411
411
  /**
412
412
  * @public
413
413
  * Indicates ID3 frame that has the timecode.
414
414
  */
415
- TimedMetadataId3Frame?: HlsTimedMetadataId3Frame | string;
415
+ TimedMetadataId3Frame?: HlsTimedMetadataId3Frame;
416
416
  /**
417
417
  * @public
418
418
  * Timed Metadata interval in seconds.
@@ -429,7 +429,7 @@ export interface HlsGroupSettings {
429
429
  *
430
430
  * SINGLE_FILE: Applies only if Mode field is VOD. Emit the program as a single .ts media file. The media manifest includes #EXT-X-BYTERANGE tags to index segments for playback. A typical use for this value is when sending the output to AWS Elemental MediaConvert, which can accept only a single media file. Playback while the channel is running is not guaranteed due to HTTP server caching.
431
431
  */
432
- TsFileMode?: HlsTsFileMode | string;
432
+ TsFileMode?: HlsTsFileMode;
433
433
  }
434
434
  /**
435
435
  * @public
@@ -566,12 +566,12 @@ export interface MsSmoothGroupSettings {
566
566
  * @public
567
567
  * If set to passthrough for an audio-only MS Smooth output, the fragment absolute time will be set to the current timecode. This option does not write timecodes to the audio elementary stream.
568
568
  */
569
- AudioOnlyTimecodeControl?: SmoothGroupAudioOnlyTimecodeControl | string;
569
+ AudioOnlyTimecodeControl?: SmoothGroupAudioOnlyTimecodeControl;
570
570
  /**
571
571
  * @public
572
572
  * If set to verifyAuthenticity, verify the https certificate chain to a trusted Certificate Authority (CA). This will cause https outputs to self-signed certificates to fail.
573
573
  */
574
- CertificateMode?: SmoothGroupCertificateMode | string;
574
+ CertificateMode?: SmoothGroupCertificateMode;
575
575
  /**
576
576
  * @public
577
577
  * Number of seconds to wait before retrying connection to the IIS server if the connection is lost. Content will be cached during this time and the cache will be be delivered to the IIS server once the connection is re-established.
@@ -598,12 +598,12 @@ export interface MsSmoothGroupSettings {
598
598
  * - "useTimestamp" - generate and send an event ID based on the current timestamp
599
599
  * - "noEventId" - do not send an event ID to the IIS server.
600
600
  */
601
- EventIdMode?: SmoothGroupEventIdMode | string;
601
+ EventIdMode?: SmoothGroupEventIdMode;
602
602
  /**
603
603
  * @public
604
604
  * When set to sendEos, send EOS signal to IIS server when stopping the event
605
605
  */
606
- EventStopBehavior?: SmoothGroupEventStopBehavior | string;
606
+ EventStopBehavior?: SmoothGroupEventStopBehavior;
607
607
  /**
608
608
  * @public
609
609
  * Size in seconds of file cache for streaming outputs.
@@ -618,7 +618,7 @@ export interface MsSmoothGroupSettings {
618
618
  * @public
619
619
  * Parameter that control output group behavior on input loss.
620
620
  */
621
- InputLossAction?: InputLossActionForMsSmoothOut | string;
621
+ InputLossAction?: InputLossActionForMsSmoothOut;
622
622
  /**
623
623
  * @public
624
624
  * Number of retry attempts.
@@ -633,7 +633,7 @@ export interface MsSmoothGroupSettings {
633
633
  * @public
634
634
  * useInputSegmentation has been deprecated. The configured segment size is always used.
635
635
  */
636
- SegmentationMode?: SmoothGroupSegmentationMode | string;
636
+ SegmentationMode?: SmoothGroupSegmentationMode;
637
637
  /**
638
638
  * @public
639
639
  * Number of milliseconds to delay the output from the second pipeline.
@@ -646,12 +646,12 @@ export interface MsSmoothGroupSettings {
646
646
  * - SCTE35_WITHOUT_SEGMENTATION: Insert SCTE-35 messages from the source content. With each message, insert an IDR frame but don't start a new segment.
647
647
  * - NONE: Don't generate a sparse track for any outputs in this output group.
648
648
  */
649
- SparseTrackType?: SmoothGroupSparseTrackType | string;
649
+ SparseTrackType?: SmoothGroupSparseTrackType;
650
650
  /**
651
651
  * @public
652
652
  * When set to send, send stream manifest so publishing point doesn't start until all streams start.
653
653
  */
654
- StreamManifestBehavior?: SmoothGroupStreamManifestBehavior | string;
654
+ StreamManifestBehavior?: SmoothGroupStreamManifestBehavior;
655
655
  /**
656
656
  * @public
657
657
  * Timestamp offset for the event. Only used if timestampOffsetMode is set to useConfiguredOffset.
@@ -663,7 +663,7 @@ export interface MsSmoothGroupSettings {
663
663
  * - useEventStartDate: Use the date the event was started as the offset
664
664
  * - useConfiguredOffset: Use an explicitly configured date as the offset
665
665
  */
666
- TimestampOffsetMode?: SmoothGroupTimestampOffsetMode | string;
666
+ TimestampOffsetMode?: SmoothGroupTimestampOffsetMode;
667
667
  }
668
668
  /**
669
669
  * @public
@@ -753,17 +753,17 @@ export interface RtmpGroupSettings {
753
753
  * @public
754
754
  * Choose the ad marker type for this output group. MediaLive will create a message based on the content of each SCTE-35 message, format it for that marker type, and insert it in the datastream.
755
755
  */
756
- AdMarkers?: (RtmpAdMarkers | string)[];
756
+ AdMarkers?: RtmpAdMarkers[];
757
757
  /**
758
758
  * @public
759
759
  * Authentication scheme to use when connecting with CDN
760
760
  */
761
- AuthenticationScheme?: AuthenticationScheme | string;
761
+ AuthenticationScheme?: AuthenticationScheme;
762
762
  /**
763
763
  * @public
764
764
  * Controls behavior when content cache fills up. If remote origin server stalls the RTMP connection and does not accept content fast enough the 'Media Cache' will fill up. When the cache reaches the duration specified by cacheLength the cache will stop accepting new content. If set to disconnectImmediately, the RTMP output will force a disconnect. Clear the media cache, and reconnect after restartDelay seconds. If set to waitForServer, the RTMP output will wait up to 5 minutes to allow the origin server to begin accepting data again.
765
765
  */
766
- CacheFullBehavior?: RtmpCacheFullBehavior | string;
766
+ CacheFullBehavior?: RtmpCacheFullBehavior;
767
767
  /**
768
768
  * @public
769
769
  * Cache length, in seconds, is used to calculate buffer size.
@@ -773,7 +773,7 @@ export interface RtmpGroupSettings {
773
773
  * @public
774
774
  * Controls the types of data that passes to onCaptionInfo outputs. If set to 'all' then 608 and 708 carried DTVCC data will be passed. If set to 'field1AndField2608' then DTVCC data will be stripped out, but 608 data from both fields will be passed. If set to 'field1608' then only the data carried in 608 from field 1 video will be passed.
775
775
  */
776
- CaptionData?: RtmpCaptionData | string;
776
+ CaptionData?: RtmpCaptionData;
777
777
  /**
778
778
  * @public
779
779
  * Controls the behavior of this RTMP group if input becomes unavailable.
@@ -781,7 +781,7 @@ export interface RtmpGroupSettings {
781
781
  * - emitOutput: Emit a slate until input returns.
782
782
  * - pauseOutput: Stop transmitting data until input returns. This does not close the underlying RTMP connection.
783
783
  */
784
- InputLossAction?: InputLossActionForRtmpOut | string;
784
+ InputLossAction?: InputLossActionForRtmpOut;
785
785
  /**
786
786
  * @public
787
787
  * If a streaming output fails, number of seconds to wait until a restart is initiated. A value of 0 means never restart.
@@ -791,7 +791,7 @@ export interface RtmpGroupSettings {
791
791
  * @public
792
792
  * Applies only when the rate control mode (in the codec settings) is CBR (constant bit rate). Controls whether the RTMP output stream is padded (with FILL NAL units) in order to achieve a constant bit rate that is truly constant. When there is no padding, the bandwidth varies (up to the bitrate value in the codec settings). We recommend that you choose Auto.
793
793
  */
794
- IncludeFillerNalUnits?: IncludeFillerNalUnits | string;
794
+ IncludeFillerNalUnits?: IncludeFillerNalUnits;
795
795
  }
796
796
  /**
797
797
  * @public
@@ -828,12 +828,12 @@ export interface UdpGroupSettings {
828
828
  * @public
829
829
  * Specifies behavior of last resort when input video is lost, and no more backup inputs are available. When dropTs is selected the entire transport stream will stop being emitted. When dropProgram is selected the program can be dropped from the transport stream (and replaced with null packets to meet the TS bitrate requirement). Or, when emitProgram is chosen the transport stream will continue to be produced normally with repeat frames, black frames, or slate frames substituted for the absent input video.
830
830
  */
831
- InputLossAction?: InputLossActionForUdpOut | string;
831
+ InputLossAction?: InputLossActionForUdpOut;
832
832
  /**
833
833
  * @public
834
834
  * Indicates ID3 frame that has the timecode.
835
835
  */
836
- TimedMetadataId3Frame?: UdpTimedMetadataId3Frame | string;
836
+ TimedMetadataId3Frame?: UdpTimedMetadataId3Frame;
837
837
  /**
838
838
  * @public
839
839
  * Timed Metadata interval in seconds.
@@ -959,7 +959,7 @@ export interface PipelinePauseStateSettings {
959
959
  * @public
960
960
  * Pipeline ID to pause ("PIPELINE_0" or "PIPELINE_1").
961
961
  */
962
- PipelineId: PipelineId | string | undefined;
962
+ PipelineId: PipelineId | undefined;
963
963
  }
964
964
  /**
965
965
  * @public
@@ -983,7 +983,7 @@ export interface RenewalSettings {
983
983
  * @public
984
984
  * Automatic renewal status for the reservation
985
985
  */
986
- AutomaticRenewal?: ReservationAutomaticRenewal | string;
986
+ AutomaticRenewal?: ReservationAutomaticRenewal;
987
987
  /**
988
988
  * @public
989
989
  * Count for the reservation renewal
@@ -1033,7 +1033,7 @@ export interface Reservation {
1033
1033
  * @public
1034
1034
  * Units for duration, e.g. 'MONTHS'
1035
1035
  */
1036
- DurationUnits?: OfferingDurationUnits | string;
1036
+ DurationUnits?: OfferingDurationUnits;
1037
1037
  /**
1038
1038
  * @public
1039
1039
  * Reservation UTC end date and time in ISO-8601 format, e.g. '2019-03-01T00:00:00'
@@ -1063,7 +1063,7 @@ export interface Reservation {
1063
1063
  * @public
1064
1064
  * Offering type, e.g. 'NO_UPFRONT'
1065
1065
  */
1066
- OfferingType?: OfferingType | string;
1066
+ OfferingType?: OfferingType;
1067
1067
  /**
1068
1068
  * @public
1069
1069
  * AWS region, e.g. 'us-west-2'
@@ -1093,7 +1093,7 @@ export interface Reservation {
1093
1093
  * @public
1094
1094
  * Current state of reservation, e.g. 'ACTIVE'
1095
1095
  */
1096
- State?: ReservationState | string;
1096
+ State?: ReservationState;
1097
1097
  /**
1098
1098
  * @public
1099
1099
  * A collection of key-value pairs
@@ -1176,7 +1176,7 @@ export interface StopTimecode {
1176
1176
  * @public
1177
1177
  * If you specify a StopTimecode in an input (in order to clip the file), you can specify if you want the clip to exclude (the default) or include the frame specified by the timecode.
1178
1178
  */
1179
- LastFrameClippingBehavior?: LastFrameClippingBehavior | string;
1179
+ LastFrameClippingBehavior?: LastFrameClippingBehavior;
1180
1180
  /**
1181
1181
  * @public
1182
1182
  * The timecode for the frame where you want to stop the clip. Optional; if not specified, the clip continues to the end of the file. Enter the timecode as HH:MM:SS:FF or HH:MM:SS;FF.
@@ -1192,7 +1192,7 @@ export interface InputClippingSettings {
1192
1192
  * @public
1193
1193
  * The source of the timecodes in the source being clipped.
1194
1194
  */
1195
- InputTimecodeSource: InputTimecodeSource | string | undefined;
1195
+ InputTimecodeSource: InputTimecodeSource | undefined;
1196
1196
  /**
1197
1197
  * @public
1198
1198
  * Settings to identify the start of the clip.
@@ -1315,7 +1315,7 @@ export interface Scte35InputScheduleActionSettings {
1315
1315
  * @public
1316
1316
  * Whether the SCTE-35 input should be the active input or a fixed input.
1317
1317
  */
1318
- Mode: Scte35InputMode | string | undefined;
1318
+ Mode: Scte35InputMode | undefined;
1319
1319
  }
1320
1320
  /**
1321
1321
  * @public
@@ -1403,22 +1403,22 @@ export interface Scte35DeliveryRestrictions {
1403
1403
  * @public
1404
1404
  * Corresponds to SCTE-35 archive_allowed_flag.
1405
1405
  */
1406
- ArchiveAllowedFlag: Scte35ArchiveAllowedFlag | string | undefined;
1406
+ ArchiveAllowedFlag: Scte35ArchiveAllowedFlag | undefined;
1407
1407
  /**
1408
1408
  * @public
1409
1409
  * Corresponds to SCTE-35 device_restrictions parameter.
1410
1410
  */
1411
- DeviceRestrictions: Scte35DeviceRestrictions | string | undefined;
1411
+ DeviceRestrictions: Scte35DeviceRestrictions | undefined;
1412
1412
  /**
1413
1413
  * @public
1414
1414
  * Corresponds to SCTE-35 no_regional_blackout_flag parameter.
1415
1415
  */
1416
- NoRegionalBlackoutFlag: Scte35NoRegionalBlackoutFlag | string | undefined;
1416
+ NoRegionalBlackoutFlag: Scte35NoRegionalBlackoutFlag | undefined;
1417
1417
  /**
1418
1418
  * @public
1419
1419
  * Corresponds to SCTE-35 web_delivery_allowed_flag parameter.
1420
1420
  */
1421
- WebDeliveryAllowedFlag: Scte35WebDeliveryAllowedFlag | string | undefined;
1421
+ WebDeliveryAllowedFlag: Scte35WebDeliveryAllowedFlag | undefined;
1422
1422
  }
1423
1423
  /**
1424
1424
  * @public
@@ -1451,7 +1451,7 @@ export interface Scte35SegmentationDescriptor {
1451
1451
  * @public
1452
1452
  * Corresponds to SCTE-35 segmentation_event_cancel_indicator.
1453
1453
  */
1454
- SegmentationCancelIndicator: Scte35SegmentationCancelIndicator | string | undefined;
1454
+ SegmentationCancelIndicator: Scte35SegmentationCancelIndicator | undefined;
1455
1455
  /**
1456
1456
  * @public
1457
1457
  * Corresponds to SCTE-35 segmentation_duration. Optional. The duration for the time_signal, in 90 KHz ticks. To convert seconds to ticks, multiple the seconds by 90,000. Enter time in 90 KHz clock ticks. If you do not enter a duration, the time_signal will continue until you insert a cancellation message.
@@ -1701,7 +1701,7 @@ export interface FollowModeScheduleActionStartSettings {
1701
1701
  * @public
1702
1702
  * Identifies whether this action starts relative to the start or relative to the end of the reference action.
1703
1703
  */
1704
- FollowPoint: FollowPoint | string | undefined;
1704
+ FollowPoint: FollowPoint | undefined;
1705
1705
  /**
1706
1706
  * @public
1707
1707
  * The action name of another action that this one refers to.
@@ -1787,7 +1787,7 @@ export interface Thumbnail {
1787
1787
  * @public
1788
1788
  * Thumbnail Type
1789
1789
  */
1790
- ThumbnailType?: ThumbnailType | string;
1790
+ ThumbnailType?: ThumbnailType;
1791
1791
  /**
1792
1792
  * @public
1793
1793
  * Time stamp for the latest thumbnail.
@@ -1846,7 +1846,7 @@ export interface TransferringInputDeviceSummary {
1846
1846
  * @public
1847
1847
  * The type (direction) of the input device transfer.
1848
1848
  */
1849
- TransferType?: InputDeviceTransferType | string;
1849
+ TransferType?: InputDeviceTransferType;
1850
1850
  }
1851
1851
  /**
1852
1852
  * @public
@@ -1918,12 +1918,12 @@ export interface TimecodeBurninSettings {
1918
1918
  * @public
1919
1919
  * Choose a timecode burn-in font size
1920
1920
  */
1921
- FontSize: TimecodeBurninFontSize | string | undefined;
1921
+ FontSize: TimecodeBurninFontSize | undefined;
1922
1922
  /**
1923
1923
  * @public
1924
1924
  * Choose a timecode burn-in output position
1925
1925
  */
1926
- Position: TimecodeBurninPosition | string | undefined;
1926
+ Position: TimecodeBurninPosition | undefined;
1927
1927
  /**
1928
1928
  * @public
1929
1929
  * Create a timecode burn-in prefix (optional)
@@ -1944,7 +1944,7 @@ export interface FrameCaptureSettings {
1944
1944
  * @public
1945
1945
  * Unit for the frame capture interval.
1946
1946
  */
1947
- CaptureIntervalUnits?: FrameCaptureIntervalUnit | string;
1947
+ CaptureIntervalUnits?: FrameCaptureIntervalUnit;
1948
1948
  /**
1949
1949
  * @public
1950
1950
  * Timecode burn-in settings
@@ -2095,12 +2095,12 @@ export interface TemporalFilterSettings {
2095
2095
  * - If the source content is noisy (it contains excessive digital artifacts), the filter cleans up the source.
2096
2096
  * - If the source content is already clean, the filter tends to decrease the bitrate, especially when the rate control mode is QVBR.
2097
2097
  */
2098
- PostFilterSharpening?: TemporalFilterPostFilterSharpening | string;
2098
+ PostFilterSharpening?: TemporalFilterPostFilterSharpening;
2099
2099
  /**
2100
2100
  * @public
2101
2101
  * Choose a filter strength. We recommend a strength of 1 or 2. A higher strength might take out good information, resulting in an image that is overly soft.
2102
2102
  */
2103
- Strength?: TemporalFilterStrength | string;
2103
+ Strength?: TemporalFilterStrength;
2104
2104
  }
2105
2105
  /**
2106
2106
  * @public
@@ -2381,12 +2381,12 @@ export interface H264Settings {
2381
2381
  * @public
2382
2382
  * Enables or disables adaptive quantization, which is a technique MediaLive can apply to video on a frame-by-frame basis to produce more compression without losing quality. There are three types of adaptive quantization: flicker, spatial, and temporal. Set the field in one of these ways: Set to Auto. Recommended. For each type of AQ, MediaLive will determine if AQ is needed, and if so, the appropriate strength. Set a strength (a value other than Auto or Disable). This strength will apply to any of the AQ fields that you choose to enable. Set to Disabled to disable all types of adaptive quantization.
2383
2383
  */
2384
- AdaptiveQuantization?: H264AdaptiveQuantization | string;
2384
+ AdaptiveQuantization?: H264AdaptiveQuantization;
2385
2385
  /**
2386
2386
  * @public
2387
2387
  * Indicates that AFD values will be written into the output stream. If afdSignaling is "auto", the system will try to preserve the input AFD value (in cases where multiple AFD values are valid). If set to "fixed", the AFD value will be the value configured in the fixedAfd parameter.
2388
2388
  */
2389
- AfdSignaling?: AfdSignaling | string;
2389
+ AfdSignaling?: AfdSignaling;
2390
2390
  /**
2391
2391
  * @public
2392
2392
  * Average bitrate in bits/second. Required when the rate control mode is VBR or CBR. Not used for QVBR. In an MS Smooth output group, each output must have a unique value when its bitrate is rounded down to the nearest multiple of 1000.
@@ -2406,7 +2406,7 @@ export interface H264Settings {
2406
2406
  * @public
2407
2407
  * Includes colorspace metadata in the output.
2408
2408
  */
2409
- ColorMetadata?: H264ColorMetadata | string;
2409
+ ColorMetadata?: H264ColorMetadata;
2410
2410
  /**
2411
2411
  * @public
2412
2412
  * Color Space settings
@@ -2416,7 +2416,7 @@ export interface H264Settings {
2416
2416
  * @public
2417
2417
  * Entropy encoding mode. Use cabac (must be in Main or High profile) or cavlc.
2418
2418
  */
2419
- EntropyEncoding?: H264EntropyEncoding | string;
2419
+ EntropyEncoding?: H264EntropyEncoding;
2420
2420
  /**
2421
2421
  * @public
2422
2422
  * Optional filters that you can apply to an encode.
@@ -2426,24 +2426,24 @@ export interface H264Settings {
2426
2426
  * @public
2427
2427
  * Four bit AFD value to write on all frames of video in the output stream. Only valid when afdSignaling is set to 'Fixed'.
2428
2428
  */
2429
- FixedAfd?: FixedAfd | string;
2429
+ FixedAfd?: FixedAfd;
2430
2430
  /**
2431
2431
  * @public
2432
2432
  * Flicker AQ makes adjustments within each frame to reduce flicker or 'pop' on I-frames. The value to enter in this field depends on the value in the Adaptive quantization field: If you have set the Adaptive quantization field to Auto, MediaLive ignores any value in this field. MediaLive will determine if flicker AQ is appropriate and will apply the appropriate strength. If you have set the Adaptive quantization field to a strength, you can set this field to Enabled or Disabled. Enabled: MediaLive will apply flicker AQ using the specified strength. Disabled: MediaLive won't apply flicker AQ. If you have set the Adaptive quantization to Disabled, MediaLive ignores any value in this field and doesn't apply flicker AQ.
2433
2433
  */
2434
- FlickerAq?: H264FlickerAq | string;
2434
+ FlickerAq?: H264FlickerAq;
2435
2435
  /**
2436
2436
  * @public
2437
2437
  * This setting applies only when scan type is "interlaced." It controls whether coding is performed on a field basis or on a frame basis. (When the video is progressive, the coding is always performed on a frame basis.)
2438
2438
  * enabled: Force MediaLive to code on a field basis, so that odd and even sets of fields are coded separately.
2439
2439
  * disabled: Code the two sets of fields separately (on a field basis) or together (on a frame basis using PAFF), depending on what is most appropriate for the content.
2440
2440
  */
2441
- ForceFieldPictures?: H264ForceFieldPictures | string;
2441
+ ForceFieldPictures?: H264ForceFieldPictures;
2442
2442
  /**
2443
2443
  * @public
2444
2444
  * This field indicates how the output video frame rate is specified. If "specified" is selected then the output video frame rate is determined by framerateNumerator and framerateDenominator, else if "initializeFromSource" is selected then the output video frame rate will be set equal to the input video frame rate of the first input.
2445
2445
  */
2446
- FramerateControl?: H264FramerateControl | string;
2446
+ FramerateControl?: H264FramerateControl;
2447
2447
  /**
2448
2448
  * @public
2449
2449
  * Framerate denominator.
@@ -2458,7 +2458,7 @@ export interface H264Settings {
2458
2458
  * @public
2459
2459
  * Documentation update needed
2460
2460
  */
2461
- GopBReference?: H264GopBReference | string;
2461
+ GopBReference?: H264GopBReference;
2462
2462
  /**
2463
2463
  * @public
2464
2464
  * Frequency of closed GOPs. In streaming applications, it is recommended that this be set to 1 so a decoder joining mid-stream will receive an IDR frame as quickly as possible. Setting this value to 0 will break output segmenting.
@@ -2480,17 +2480,17 @@ export interface H264Settings {
2480
2480
  * @public
2481
2481
  * Indicates if the gopSize is specified in frames or seconds. If seconds the system will convert the gopSize into a frame count at run time.
2482
2482
  */
2483
- GopSizeUnits?: H264GopSizeUnits | string;
2483
+ GopSizeUnits?: H264GopSizeUnits;
2484
2484
  /**
2485
2485
  * @public
2486
2486
  * H.264 Level.
2487
2487
  */
2488
- Level?: H264Level | string;
2488
+ Level?: H264Level;
2489
2489
  /**
2490
2490
  * @public
2491
2491
  * Amount of lookahead. A value of low can decrease latency and memory usage, while high can produce better quality for certain content.
2492
2492
  */
2493
- LookAheadRateControl?: H264LookAheadRateControl | string;
2493
+ LookAheadRateControl?: H264LookAheadRateControl;
2494
2494
  /**
2495
2495
  * @public
2496
2496
  * For QVBR: See the tooltip for Quality level
@@ -2512,7 +2512,7 @@ export interface H264Settings {
2512
2512
  * @public
2513
2513
  * This field indicates how the output pixel aspect ratio is specified. If "specified" is selected then the output video pixel aspect ratio is determined by parNumerator and parDenominator, else if "initializeFromSource" is selected then the output pixsel aspect ratio will be set equal to the input video pixel aspect ratio of the first input.
2514
2514
  */
2515
- ParControl?: H264ParControl | string;
2515
+ ParControl?: H264ParControl;
2516
2516
  /**
2517
2517
  * @public
2518
2518
  * Pixel Aspect Ratio denominator.
@@ -2527,14 +2527,14 @@ export interface H264Settings {
2527
2527
  * @public
2528
2528
  * H.264 Profile.
2529
2529
  */
2530
- Profile?: H264Profile | string;
2530
+ Profile?: H264Profile;
2531
2531
  /**
2532
2532
  * @public
2533
2533
  * Leave as STANDARD_QUALITY or choose a different value (which might result in additional costs to run the channel).
2534
2534
  * - ENHANCED_QUALITY: Produces a slightly better video quality without an increase in the bitrate. Has an effect only when the Rate control mode is QVBR or CBR. If this channel is in a MediaLive multiplex, the value must be ENHANCED_QUALITY.
2535
2535
  * - STANDARD_QUALITY: Valid for any Rate control mode.
2536
2536
  */
2537
- QualityLevel?: H264QualityLevel | string;
2537
+ QualityLevel?: H264QualityLevel;
2538
2538
  /**
2539
2539
  * @public
2540
2540
  * Controls the target quality for the video encode. Applies only when the rate control mode is QVBR. You can set a target quality or you can let MediaLive determine the best quality. To set a target quality, enter values in the QVBR quality level field and the Max bitrate field. Enter values that suit your most important viewing devices. Recommended values are:
@@ -2561,12 +2561,12 @@ export interface H264Settings {
2561
2561
  * delivered to a MediaLive Multiplex in which case the rate control configuration is controlled
2562
2562
  * by the properties within the Multiplex Program.
2563
2563
  */
2564
- RateControlMode?: H264RateControlMode | string;
2564
+ RateControlMode?: H264RateControlMode;
2565
2565
  /**
2566
2566
  * @public
2567
2567
  * Sets the scan type of the output to progressive or top-field-first interlaced.
2568
2568
  */
2569
- ScanType?: H264ScanType | string;
2569
+ ScanType?: H264ScanType;
2570
2570
  /**
2571
2571
  * @public
2572
2572
  * Scene change detection.
@@ -2574,7 +2574,7 @@ export interface H264Settings {
2574
2574
  * - On: inserts I-frames when scene change is detected.
2575
2575
  * - Off: does not force an I-frame when scene change is detected.
2576
2576
  */
2577
- SceneChangeDetect?: H264SceneChangeDetect | string;
2577
+ SceneChangeDetect?: H264SceneChangeDetect;
2578
2578
  /**
2579
2579
  * @public
2580
2580
  * Number of slices per picture. Must be less than or equal to the number of macroblock rows for progressive pictures, and less than or equal to half the number of macroblock rows for interlaced pictures.
@@ -2590,29 +2590,29 @@ export interface H264Settings {
2590
2590
  * @public
2591
2591
  * Spatial AQ makes adjustments within each frame based on spatial variation of content complexity. The value to enter in this field depends on the value in the Adaptive quantization field: If you have set the Adaptive quantization field to Auto, MediaLive ignores any value in this field. MediaLive will determine if spatial AQ is appropriate and will apply the appropriate strength. If you have set the Adaptive quantization field to a strength, you can set this field to Enabled or Disabled. Enabled: MediaLive will apply spatial AQ using the specified strength. Disabled: MediaLive won't apply spatial AQ. If you have set the Adaptive quantization to Disabled, MediaLive ignores any value in this field and doesn't apply spatial AQ.
2592
2592
  */
2593
- SpatialAq?: H264SpatialAq | string;
2593
+ SpatialAq?: H264SpatialAq;
2594
2594
  /**
2595
2595
  * @public
2596
2596
  * If set to fixed, use gopNumBFrames B-frames per sub-GOP. If set to dynamic, optimize the number of B-frames used for each sub-GOP to improve visual quality.
2597
2597
  */
2598
- SubgopLength?: H264SubGopLength | string;
2598
+ SubgopLength?: H264SubGopLength;
2599
2599
  /**
2600
2600
  * @public
2601
2601
  * Produces a bitstream compliant with SMPTE RP-2027.
2602
2602
  */
2603
- Syntax?: H264Syntax | string;
2603
+ Syntax?: H264Syntax;
2604
2604
  /**
2605
2605
  * @public
2606
2606
  * Temporal makes adjustments within each frame based on temporal variation of content complexity. The value to enter in this field depends on the value in the Adaptive quantization field: If you have set the Adaptive quantization field to Auto, MediaLive ignores any value in this field. MediaLive will determine if temporal AQ is appropriate and will apply the appropriate strength. If you have set the Adaptive quantization field to a strength, you can set this field to Enabled or Disabled. Enabled: MediaLive will apply temporal AQ using the specified strength. Disabled: MediaLive won't apply temporal AQ. If you have set the Adaptive quantization to Disabled, MediaLive ignores any value in this field and doesn't apply temporal AQ.
2607
2607
  */
2608
- TemporalAq?: H264TemporalAq | string;
2608
+ TemporalAq?: H264TemporalAq;
2609
2609
  /**
2610
2610
  * @public
2611
2611
  * Determines how timecodes should be inserted into the video elementary stream.
2612
2612
  * - 'disabled': Do not include timecodes
2613
2613
  * - 'picTimingSei': Pass through picture timing SEI messages from the source specified in Timecode Config
2614
2614
  */
2615
- TimecodeInsertion?: H264TimecodeInsertionBehavior | string;
2615
+ TimecodeInsertion?: H264TimecodeInsertionBehavior;
2616
2616
  /**
2617
2617
  * @public
2618
2618
  * Timecode burn-in settings
@@ -2851,17 +2851,17 @@ export interface H265Settings {
2851
2851
  * @public
2852
2852
  * Adaptive quantization. Allows intra-frame quantizers to vary to improve visual quality.
2853
2853
  */
2854
- AdaptiveQuantization?: H265AdaptiveQuantization | string;
2854
+ AdaptiveQuantization?: H265AdaptiveQuantization;
2855
2855
  /**
2856
2856
  * @public
2857
2857
  * Indicates that AFD values will be written into the output stream. If afdSignaling is "auto", the system will try to preserve the input AFD value (in cases where multiple AFD values are valid). If set to "fixed", the AFD value will be the value configured in the fixedAfd parameter.
2858
2858
  */
2859
- AfdSignaling?: AfdSignaling | string;
2859
+ AfdSignaling?: AfdSignaling;
2860
2860
  /**
2861
2861
  * @public
2862
2862
  * Whether or not EML should insert an Alternative Transfer Function SEI message to support backwards compatibility with non-HDR decoders and displays.
2863
2863
  */
2864
- AlternativeTransferFunction?: H265AlternativeTransferFunction | string;
2864
+ AlternativeTransferFunction?: H265AlternativeTransferFunction;
2865
2865
  /**
2866
2866
  * @public
2867
2867
  * Average bitrate in bits/second. Required when the rate control mode is VBR or CBR. Not used for QVBR. In an MS Smooth output group, each output must have a unique value when its bitrate is rounded down to the nearest multiple of 1000.
@@ -2876,7 +2876,7 @@ export interface H265Settings {
2876
2876
  * @public
2877
2877
  * Includes colorspace metadata in the output.
2878
2878
  */
2879
- ColorMetadata?: H265ColorMetadata | string;
2879
+ ColorMetadata?: H265ColorMetadata;
2880
2880
  /**
2881
2881
  * @public
2882
2882
  * Color Space settings
@@ -2891,12 +2891,12 @@ export interface H265Settings {
2891
2891
  * @public
2892
2892
  * Four bit AFD value to write on all frames of video in the output stream. Only valid when afdSignaling is set to 'Fixed'.
2893
2893
  */
2894
- FixedAfd?: FixedAfd | string;
2894
+ FixedAfd?: FixedAfd;
2895
2895
  /**
2896
2896
  * @public
2897
2897
  * If set to enabled, adjust quantization within each frame to reduce flicker or 'pop' on I-frames.
2898
2898
  */
2899
- FlickerAq?: H265FlickerAq | string;
2899
+ FlickerAq?: H265FlickerAq;
2900
2900
  /**
2901
2901
  * @public
2902
2902
  * Framerate denominator.
@@ -2923,17 +2923,17 @@ export interface H265Settings {
2923
2923
  * @public
2924
2924
  * Indicates if the gopSize is specified in frames or seconds. If seconds the system will convert the gopSize into a frame count at run time.
2925
2925
  */
2926
- GopSizeUnits?: H265GopSizeUnits | string;
2926
+ GopSizeUnits?: H265GopSizeUnits;
2927
2927
  /**
2928
2928
  * @public
2929
2929
  * H.265 Level.
2930
2930
  */
2931
- Level?: H265Level | string;
2931
+ Level?: H265Level;
2932
2932
  /**
2933
2933
  * @public
2934
2934
  * Amount of lookahead. A value of low can decrease latency and memory usage, while high can produce better quality for certain content.
2935
2935
  */
2936
- LookAheadRateControl?: H265LookAheadRateControl | string;
2936
+ LookAheadRateControl?: H265LookAheadRateControl;
2937
2937
  /**
2938
2938
  * @public
2939
2939
  * For QVBR: See the tooltip for Quality level
@@ -2958,7 +2958,7 @@ export interface H265Settings {
2958
2958
  * @public
2959
2959
  * H.265 Profile.
2960
2960
  */
2961
- Profile?: H265Profile | string;
2961
+ Profile?: H265Profile;
2962
2962
  /**
2963
2963
  * @public
2964
2964
  * Controls the target quality for the video encode. Applies only when the rate control mode is QVBR. Set values for the QVBR quality level field and Max bitrate field that suit your most important viewing devices. Recommended values are:
@@ -2981,17 +2981,17 @@ export interface H265Settings {
2981
2981
  * delivered to a MediaLive Multiplex in which case the rate control configuration is controlled
2982
2982
  * by the properties within the Multiplex Program.
2983
2983
  */
2984
- RateControlMode?: H265RateControlMode | string;
2984
+ RateControlMode?: H265RateControlMode;
2985
2985
  /**
2986
2986
  * @public
2987
2987
  * Sets the scan type of the output to progressive or top-field-first interlaced.
2988
2988
  */
2989
- ScanType?: H265ScanType | string;
2989
+ ScanType?: H265ScanType;
2990
2990
  /**
2991
2991
  * @public
2992
2992
  * Scene change detection.
2993
2993
  */
2994
- SceneChangeDetect?: H265SceneChangeDetect | string;
2994
+ SceneChangeDetect?: H265SceneChangeDetect;
2995
2995
  /**
2996
2996
  * @public
2997
2997
  * Number of slices per picture. Must be less than or equal to the number of macroblock rows for progressive pictures, and less than or equal to half the number of macroblock rows for interlaced pictures.
@@ -3002,14 +3002,14 @@ export interface H265Settings {
3002
3002
  * @public
3003
3003
  * H.265 Tier.
3004
3004
  */
3005
- Tier?: H265Tier | string;
3005
+ Tier?: H265Tier;
3006
3006
  /**
3007
3007
  * @public
3008
3008
  * Determines how timecodes should be inserted into the video elementary stream.
3009
3009
  * - 'disabled': Do not include timecodes
3010
3010
  * - 'picTimingSei': Pass through picture timing SEI messages from the source specified in Timecode Config
3011
3011
  */
3012
- TimecodeInsertion?: H265TimecodeInsertionBehavior | string;
3012
+ TimecodeInsertion?: H265TimecodeInsertionBehavior;
3013
3013
  /**
3014
3014
  * @public
3015
3015
  * Timecode burn-in settings
@@ -3135,31 +3135,31 @@ export interface Mpeg2Settings {
3135
3135
  * @public
3136
3136
  * Choose Off to disable adaptive quantization. Or choose another value to enable the quantizer and set its strength. The strengths are: Auto, Off, Low, Medium, High. When you enable this field, MediaLive allows intra-frame quantizers to vary, which might improve visual quality.
3137
3137
  */
3138
- AdaptiveQuantization?: Mpeg2AdaptiveQuantization | string;
3138
+ AdaptiveQuantization?: Mpeg2AdaptiveQuantization;
3139
3139
  /**
3140
3140
  * @public
3141
3141
  * Indicates the AFD values that MediaLive will write into the video encode. If you do not know what AFD signaling is, or if your downstream system has not given you guidance, choose AUTO.
3142
3142
  * AUTO: MediaLive will try to preserve the input AFD value (in cases where multiple AFD values are valid).
3143
3143
  * FIXED: MediaLive will use the value you specify in fixedAFD.
3144
3144
  */
3145
- AfdSignaling?: AfdSignaling | string;
3145
+ AfdSignaling?: AfdSignaling;
3146
3146
  /**
3147
3147
  * @public
3148
3148
  * Specifies whether to include the color space metadata. The metadata describes the color space that applies to the video (the colorSpace field). We recommend that you insert the metadata.
3149
3149
  */
3150
- ColorMetadata?: Mpeg2ColorMetadata | string;
3150
+ ColorMetadata?: Mpeg2ColorMetadata;
3151
3151
  /**
3152
3152
  * @public
3153
3153
  * Choose the type of color space conversion to apply to the output. For detailed information on setting up both the input and the output to obtain the desired color space in the output, see the section on \"MediaLive Features - Video - color space\" in the MediaLive User Guide.
3154
3154
  * PASSTHROUGH: Keep the color space of the input content - do not convert it.
3155
3155
  * AUTO:Convert all content that is SD to rec 601, and convert all content that is HD to rec 709.
3156
3156
  */
3157
- ColorSpace?: Mpeg2ColorSpace | string;
3157
+ ColorSpace?: Mpeg2ColorSpace;
3158
3158
  /**
3159
3159
  * @public
3160
3160
  * Sets the pixel aspect ratio for the encode.
3161
3161
  */
3162
- DisplayAspectRatio?: Mpeg2DisplayRatio | string;
3162
+ DisplayAspectRatio?: Mpeg2DisplayRatio;
3163
3163
  /**
3164
3164
  * @public
3165
3165
  * Optionally specify a noise reduction filter, which can improve quality of compressed content. If you do not choose a filter, no filter will be applied.
@@ -3172,7 +3172,7 @@ export interface Mpeg2Settings {
3172
3172
  * @public
3173
3173
  * Complete this field only when afdSignaling is set to FIXED. Enter the AFD value (4 bits) to write on all frames of the video encode.
3174
3174
  */
3175
- FixedAfd?: FixedAfd | string;
3175
+ FixedAfd?: FixedAfd;
3176
3176
  /**
3177
3177
  * @public
3178
3178
  * description": "The framerate denominator. For example, 1001. The framerate is the numerator divided by the denominator. For example, 24000 / 1001 = 23.976 FPS.
@@ -3204,26 +3204,26 @@ export interface Mpeg2Settings {
3204
3204
  * @public
3205
3205
  * Relates to the GOP structure. Specifies whether the gopSize is specified in frames or seconds. If you do not plan to change the default gopSize, leave the default. If you specify SECONDS, MediaLive will internally convert the gop size to a frame count.
3206
3206
  */
3207
- GopSizeUnits?: Mpeg2GopSizeUnits | string;
3207
+ GopSizeUnits?: Mpeg2GopSizeUnits;
3208
3208
  /**
3209
3209
  * @public
3210
3210
  * Set the scan type of the output to PROGRESSIVE or INTERLACED (top field first).
3211
3211
  */
3212
- ScanType?: Mpeg2ScanType | string;
3212
+ ScanType?: Mpeg2ScanType;
3213
3213
  /**
3214
3214
  * @public
3215
3215
  * Relates to the GOP structure. If you do not know what GOP is, use the default.
3216
3216
  * FIXED: Set the number of B-frames in each sub-GOP to the value in gopNumBFrames.
3217
3217
  * DYNAMIC: Let MediaLive optimize the number of B-frames in each sub-GOP, to improve visual quality.
3218
3218
  */
3219
- SubgopLength?: Mpeg2SubGopLength | string;
3219
+ SubgopLength?: Mpeg2SubGopLength;
3220
3220
  /**
3221
3221
  * @public
3222
3222
  * Determines how MediaLive inserts timecodes in the output video. For detailed information about setting up the input and the output for a timecode, see the section on \"MediaLive Features - Timecode configuration\" in the MediaLive User Guide.
3223
3223
  * DISABLED: do not include timecodes.
3224
3224
  * GOP_TIMECODE: Include timecode metadata in the GOP header.
3225
3225
  */
3226
- TimecodeInsertion?: Mpeg2TimecodeInsertionBehavior | string;
3226
+ TimecodeInsertion?: Mpeg2TimecodeInsertionBehavior;
3227
3227
  /**
3228
3228
  * @public
3229
3229
  * Timecode burn-in settings
@@ -3308,12 +3308,12 @@ export interface VideoDescription {
3308
3308
  * PASSTHROUGH: MediaLive ignores the AFD values and does not clip the video. But MediaLive does include the values in the output.
3309
3309
  * NONE: MediaLive does not clip the input video and does not include the AFD values in the output
3310
3310
  */
3311
- RespondToAfd?: VideoDescriptionRespondToAfd | string;
3311
+ RespondToAfd?: VideoDescriptionRespondToAfd;
3312
3312
  /**
3313
3313
  * @public
3314
3314
  * STRETCH_TO_OUTPUT configures the output position to stretch the video to the specified output resolution (height and width). This option will override any position value. DEFAULT may insert black boxes (pillar boxes or letter boxes) around the video to provide the specified output resolution.
3315
3315
  */
3316
- ScalingBehavior?: VideoDescriptionScalingBehavior | string;
3316
+ ScalingBehavior?: VideoDescriptionScalingBehavior;
3317
3317
  /**
3318
3318
  * @public
3319
3319
  * Changes the strength of the anti-alias filter used for scaling. 0 is the softest setting, 100 is the sharpest. A setting of 50 is recommended for most content.
@@ -3548,7 +3548,7 @@ export interface AvailBlanking {
3548
3548
  * @public
3549
3549
  * When set to enabled, causes video, audio and captions to be blanked when insertion metadata is added.
3550
3550
  */
3551
- State?: AvailBlankingState | string;
3551
+ State?: AvailBlankingState;
3552
3552
  }
3553
3553
  /**
3554
3554
  * @public
@@ -3624,12 +3624,12 @@ export interface Scte35SpliceInsert {
3624
3624
  * @public
3625
3625
  * When set to ignore, Segment Descriptors with noRegionalBlackoutFlag set to 0 will no longer trigger blackouts or Ad Avail slates
3626
3626
  */
3627
- NoRegionalBlackoutFlag?: Scte35SpliceInsertNoRegionalBlackoutBehavior | string;
3627
+ NoRegionalBlackoutFlag?: Scte35SpliceInsertNoRegionalBlackoutBehavior;
3628
3628
  /**
3629
3629
  * @public
3630
3630
  * When set to ignore, Segment Descriptors with webDeliveryAllowedFlag set to 0 will no longer trigger blackouts or Ad Avail slates
3631
3631
  */
3632
- WebDeliveryAllowedFlag?: Scte35SpliceInsertWebDeliveryAllowedBehavior | string;
3632
+ WebDeliveryAllowedFlag?: Scte35SpliceInsertWebDeliveryAllowedBehavior;
3633
3633
  }
3634
3634
  /**
3635
3635
  * @public
@@ -3669,12 +3669,12 @@ export interface Scte35TimeSignalApos {
3669
3669
  * @public
3670
3670
  * When set to ignore, Segment Descriptors with noRegionalBlackoutFlag set to 0 will no longer trigger blackouts or Ad Avail slates
3671
3671
  */
3672
- NoRegionalBlackoutFlag?: Scte35AposNoRegionalBlackoutBehavior | string;
3672
+ NoRegionalBlackoutFlag?: Scte35AposNoRegionalBlackoutBehavior;
3673
3673
  /**
3674
3674
  * @public
3675
3675
  * When set to ignore, Segment Descriptors with webDeliveryAllowedFlag set to 0 will no longer trigger blackouts or Ad Avail slates
3676
3676
  */
3677
- WebDeliveryAllowedFlag?: Scte35AposWebDeliveryAllowedBehavior | string;
3677
+ WebDeliveryAllowedFlag?: Scte35AposWebDeliveryAllowedBehavior;
3678
3678
  }
3679
3679
  /**
3680
3680
  * @public
@@ -3933,7 +3933,7 @@ export interface BlackoutSlate {
3933
3933
  * @public
3934
3934
  * Setting to enabled causes the encoder to blackout the video, audio, and captions, and raise the "Network Blackout Image" slate when an SCTE104/35 Network End Segmentation Descriptor is encountered. The blackout will be lifted when the Network Start Segmentation Descriptor is encountered. The Network End and Network Start descriptors must contain a network ID that matches the value entered in "Network ID".
3935
3935
  */
3936
- NetworkEndBlackout?: BlackoutSlateNetworkEndBlackout | string;
3936
+ NetworkEndBlackout?: BlackoutSlateNetworkEndBlackout;
3937
3937
  /**
3938
3938
  * @public
3939
3939
  * Path to local file to use as Network End Blackout image. Image will be scaled to fill the entire output raster.
@@ -3948,7 +3948,7 @@ export interface BlackoutSlate {
3948
3948
  * @public
3949
3949
  * When set to enabled, causes video, audio and captions to be blanked when indicated by program metadata.
3950
3950
  */
3951
- State?: BlackoutSlateState | string;
3951
+ State?: BlackoutSlateState;
3952
3952
  }
3953
3953
  /**
3954
3954
  * @public
@@ -3989,7 +3989,7 @@ export interface FeatureActivations {
3989
3989
  * Enables the Input Prepare feature. You can create Input Prepare actions in the schedule only if this feature is enabled.
3990
3990
  * If you disable the feature on an existing schedule, make sure that you first delete all input prepare actions from the schedule.
3991
3991
  */
3992
- InputPrepareScheduleActions?: FeatureActivationsInputPrepareScheduleActions | string;
3992
+ InputPrepareScheduleActions?: FeatureActivationsInputPrepareScheduleActions;
3993
3993
  }
3994
3994
  /**
3995
3995
  * @public
@@ -4039,7 +4039,7 @@ export interface InputLossBehavior {
4039
4039
  * @public
4040
4040
  * Indicates whether to substitute a solid color or a slate into the output after input loss exceeds blackFrameMsec.
4041
4041
  */
4042
- InputLossImageType?: InputLossImageType | string;
4042
+ InputLossImageType?: InputLossImageType;
4043
4043
  /**
4044
4044
  * @public
4045
4045
  * Documentation update needed
@@ -4134,7 +4134,7 @@ export interface GlobalConfiguration {
4134
4134
  * @public
4135
4135
  * Indicates the action to take when the current input completes (e.g. end-of-file). When switchAndLoopInputs is configured the encoder will restart at the beginning of the first input. When "none" is configured the encoder will transcode either black, a solid color, or a user specified slate images per the "Input Loss Behavior" configuration until the next input switch occurs (which is controlled through the Channel Schedule API).
4136
4136
  */
4137
- InputEndAction?: GlobalConfigurationInputEndAction | string;
4137
+ InputEndAction?: GlobalConfigurationInputEndAction;
4138
4138
  /**
4139
4139
  * @public
4140
4140
  * Settings for system actions when input is lost.
@@ -4147,17 +4147,17 @@ export interface GlobalConfiguration {
4147
4147
  * PIPELINE_LOCKING - MediaLive will attempt to synchronize the output of each pipeline to the other.
4148
4148
  * EPOCH_LOCKING - MediaLive will attempt to synchronize the output of each pipeline to the Unix epoch.
4149
4149
  */
4150
- OutputLockingMode?: GlobalConfigurationOutputLockingMode | string;
4150
+ OutputLockingMode?: GlobalConfigurationOutputLockingMode;
4151
4151
  /**
4152
4152
  * @public
4153
4153
  * Indicates whether the rate of frames emitted by the Live encoder should be paced by its system clock (which optionally may be locked to another source via NTP) or should be locked to the clock of the source that is providing the input stream.
4154
4154
  */
4155
- OutputTimingSource?: GlobalConfigurationOutputTimingSource | string;
4155
+ OutputTimingSource?: GlobalConfigurationOutputTimingSource;
4156
4156
  /**
4157
4157
  * @public
4158
4158
  * Adjusts video input buffer for streams with very low video framerates. This is commonly set to enabled for music channels with less than one video frame per second.
4159
4159
  */
4160
- SupportLowFramerateInputs?: GlobalConfigurationLowFramerateInputs | string;
4160
+ SupportLowFramerateInputs?: GlobalConfigurationLowFramerateInputs;
4161
4161
  /**
4162
4162
  * @public
4163
4163
  * Advanced output locking settings
@@ -4202,7 +4202,7 @@ export interface MotionGraphicsConfiguration {
4202
4202
  * @public
4203
4203
  * Motion Graphics Insertion
4204
4204
  */
4205
- MotionGraphicsInsertion?: MotionGraphicsInsertion | string;
4205
+ MotionGraphicsInsertion?: MotionGraphicsInsertion;
4206
4206
  /**
4207
4207
  * @public
4208
4208
  * Motion Graphics Settings
@@ -4235,7 +4235,7 @@ export interface NielsenConfiguration {
4235
4235
  * @public
4236
4236
  * Enables Nielsen PCM to ID3 tagging
4237
4237
  */
4238
- NielsenPcmToId3Tagging?: NielsenPcmToId3TaggingState | string;
4238
+ NielsenPcmToId3Tagging?: NielsenPcmToId3TaggingState;
4239
4239
  }
4240
4240
  /**
4241
4241
  * @public
@@ -4258,7 +4258,7 @@ export interface ThumbnailConfiguration {
4258
4258
  * @public
4259
4259
  * Whether Thumbnail is enabled.
4260
4260
  */
4261
- State: ThumbnailState | string | undefined;
4261
+ State: ThumbnailState | undefined;
4262
4262
  }
4263
4263
  /**
4264
4264
  * @public
@@ -4285,7 +4285,7 @@ export interface TimecodeConfig {
4285
4285
  * -System Clock (systemclock): Use the UTC time.
4286
4286
  * -Start at 0 (zerobased): The time of the first frame of the event will be 00:00:00:00.
4287
4287
  */
4288
- Source: TimecodeConfigSource | string | undefined;
4288
+ Source: TimecodeConfigSource | undefined;
4289
4289
  /**
4290
4290
  * @public
4291
4291
  * Threshold in frames beyond which output timecode is resynchronized to the input timecode. Discrepancies below this threshold are permitted to avoid unnecessary discontinuities in the output timecode. No timecode sync when this is not specified.
@@ -4382,7 +4382,7 @@ export interface Channel {
4382
4382
  * @public
4383
4383
  * The class for this channel. STANDARD for a channel with two pipelines or SINGLE_PIPELINE for a channel with one pipeline.
4384
4384
  */
4385
- ChannelClass?: ChannelClass | string;
4385
+ ChannelClass?: ChannelClass;
4386
4386
  /**
4387
4387
  * @public
4388
4388
  * A list of destinations of the channel. For UDP outputs, there is one
@@ -4419,7 +4419,7 @@ export interface Channel {
4419
4419
  * @public
4420
4420
  * The log level being written to CloudWatch Logs.
4421
4421
  */
4422
- LogLevel?: LogLevel | string;
4422
+ LogLevel?: LogLevel;
4423
4423
  /**
4424
4424
  * @public
4425
4425
  * Maintenance settings for this channel.
@@ -4449,7 +4449,7 @@ export interface Channel {
4449
4449
  * @public
4450
4450
  * Placeholder documentation for ChannelState
4451
4451
  */
4452
- State?: ChannelState | string;
4452
+ State?: ChannelState;
4453
4453
  /**
4454
4454
  * @public
4455
4455
  * A collection of key-value pairs.
@@ -4498,7 +4498,7 @@ export interface MaintenanceCreateSettings {
4498
4498
  * @public
4499
4499
  * Choose one day of the week for maintenance. The chosen day is used for all future maintenance windows.
4500
4500
  */
4501
- MaintenanceDay?: MaintenanceDay | string;
4501
+ MaintenanceDay?: MaintenanceDay;
4502
4502
  /**
4503
4503
  * @public
4504
4504
  * Choose the hour that maintenance will start. The chosen time is used for all future maintenance windows.
@@ -4544,7 +4544,7 @@ export interface CreateChannelRequest {
4544
4544
  * @public
4545
4545
  * The class for this channel. STANDARD for a channel with two pipelines or SINGLE_PIPELINE for a channel with one pipeline.
4546
4546
  */
4547
- ChannelClass?: ChannelClass | string;
4547
+ ChannelClass?: ChannelClass;
4548
4548
  /**
4549
4549
  * @public
4550
4550
  * Placeholder documentation for __listOfOutputDestination
@@ -4569,7 +4569,7 @@ export interface CreateChannelRequest {
4569
4569
  * @public
4570
4570
  * The log level to write to CloudWatch Logs.
4571
4571
  */
4572
- LogLevel?: LogLevel | string;
4572
+ LogLevel?: LogLevel;
4573
4573
  /**
4574
4574
  * @public
4575
4575
  * Maintenance settings for this channel.
@@ -4700,7 +4700,7 @@ export interface CreateInputRequest {
4700
4700
  * @public
4701
4701
  * The different types of inputs that AWS Elemental MediaLive supports.
4702
4702
  */
4703
- Type?: InputType | string;
4703
+ Type?: InputType;
4704
4704
  /**
4705
4705
  * @public
4706
4706
  * Settings for a private VPC Input.
@@ -4855,7 +4855,7 @@ export interface Multiplex {
4855
4855
  * @public
4856
4856
  * The current state of the multiplex.
4857
4857
  */
4858
- State?: MultiplexState | string;
4858
+ State?: MultiplexState;
4859
4859
  /**
4860
4860
  * @public
4861
4861
  * A collection of key-value pairs.
@@ -4950,7 +4950,7 @@ export interface MultiplexProgramSettings {
4950
4950
  * @public
4951
4951
  * Indicates which pipeline is preferred by the multiplex for program ingest.
4952
4952
  */
4953
- PreferredChannelPipeline?: PreferredChannelPipeline | string;
4953
+ PreferredChannelPipeline?: PreferredChannelPipeline;
4954
4954
  /**
4955
4955
  * @public
4956
4956
  * Unique program number.
@@ -5186,7 +5186,7 @@ export interface DeleteChannelResponse {
5186
5186
  * @public
5187
5187
  * The class for this channel. STANDARD for a channel with two pipelines or SINGLE_PIPELINE for a channel with one pipeline.
5188
5188
  */
5189
- ChannelClass?: ChannelClass | string;
5189
+ ChannelClass?: ChannelClass;
5190
5190
  /**
5191
5191
  * @public
5192
5192
  * A list of destinations of the channel. For UDP outputs, there is one
@@ -5223,7 +5223,7 @@ export interface DeleteChannelResponse {
5223
5223
  * @public
5224
5224
  * The log level being written to CloudWatch Logs.
5225
5225
  */
5226
- LogLevel?: LogLevel | string;
5226
+ LogLevel?: LogLevel;
5227
5227
  /**
5228
5228
  * @public
5229
5229
  * Maintenance settings for this channel.
@@ -5253,7 +5253,7 @@ export interface DeleteChannelResponse {
5253
5253
  * @public
5254
5254
  * Placeholder documentation for ChannelState
5255
5255
  */
5256
- State?: ChannelState | string;
5256
+ State?: ChannelState;
5257
5257
  /**
5258
5258
  * @public
5259
5259
  * A collection of key-value pairs.
@@ -5359,7 +5359,7 @@ export interface DeleteMultiplexResponse {
5359
5359
  * @public
5360
5360
  * The current state of the multiplex.
5361
5361
  */
5362
- State?: MultiplexState | string;
5362
+ State?: MultiplexState;
5363
5363
  /**
5364
5364
  * @public
5365
5365
  * A collection of key-value pairs.
@@ -5453,7 +5453,7 @@ export interface DeleteReservationResponse {
5453
5453
  * @public
5454
5454
  * Units for duration, e.g. 'MONTHS'
5455
5455
  */
5456
- DurationUnits?: OfferingDurationUnits | string;
5456
+ DurationUnits?: OfferingDurationUnits;
5457
5457
  /**
5458
5458
  * @public
5459
5459
  * Reservation UTC end date and time in ISO-8601 format, e.g. '2019-03-01T00:00:00'
@@ -5483,7 +5483,7 @@ export interface DeleteReservationResponse {
5483
5483
  * @public
5484
5484
  * Offering type, e.g. 'NO_UPFRONT'
5485
5485
  */
5486
- OfferingType?: OfferingType | string;
5486
+ OfferingType?: OfferingType;
5487
5487
  /**
5488
5488
  * @public
5489
5489
  * AWS region, e.g. 'us-west-2'
@@ -5513,7 +5513,7 @@ export interface DeleteReservationResponse {
5513
5513
  * @public
5514
5514
  * Current state of reservation, e.g. 'ACTIVE'
5515
5515
  */
5516
- State?: ReservationState | string;
5516
+ State?: ReservationState;
5517
5517
  /**
5518
5518
  * @public
5519
5519
  * A collection of key-value pairs
@@ -5605,7 +5605,7 @@ export interface DescribeChannelResponse {
5605
5605
  * @public
5606
5606
  * The class for this channel. STANDARD for a channel with two pipelines or SINGLE_PIPELINE for a channel with one pipeline.
5607
5607
  */
5608
- ChannelClass?: ChannelClass | string;
5608
+ ChannelClass?: ChannelClass;
5609
5609
  /**
5610
5610
  * @public
5611
5611
  * A list of destinations of the channel. For UDP outputs, there is one
@@ -5642,7 +5642,7 @@ export interface DescribeChannelResponse {
5642
5642
  * @public
5643
5643
  * The log level being written to CloudWatch Logs.
5644
5644
  */
5645
- LogLevel?: LogLevel | string;
5645
+ LogLevel?: LogLevel;
5646
5646
  /**
5647
5647
  * @public
5648
5648
  * Maintenance settings for this channel.
@@ -5672,7 +5672,7 @@ export interface DescribeChannelResponse {
5672
5672
  * @public
5673
5673
  * Placeholder documentation for ChannelState
5674
5674
  */
5675
- State?: ChannelState | string;
5675
+ State?: ChannelState;
5676
5676
  /**
5677
5677
  * @public
5678
5678
  * A collection of key-value pairs.
@@ -5725,7 +5725,7 @@ export interface DescribeInputResponse {
5725
5725
  * STANDARD - MediaLive expects two sources to be connected to this input. If the channel is also STANDARD, both sources will be ingested. If the channel is SINGLE_PIPELINE, only the first source will be ingested; the second source will always be ignored, even if the first source fails.
5726
5726
  * SINGLE_PIPELINE - You can connect only one source to this input. If the ChannelClass is also SINGLE_PIPELINE, this value is valid. If the ChannelClass is STANDARD, this value is not valid because the channel requires two sources in the input.
5727
5727
  */
5728
- InputClass?: InputClass | string;
5728
+ InputClass?: InputClass;
5729
5729
  /**
5730
5730
  * @public
5731
5731
  * Settings for the input devices.
@@ -5741,7 +5741,7 @@ export interface DescribeInputResponse {
5741
5741
  * Certain pull input sources can be dynamic, meaning that they can have their URL's dynamically changes
5742
5742
  * during input switch actions. Presently, this functionality only works with MP4_FILE and TS_FILE inputs.
5743
5743
  */
5744
- InputSourceType?: InputSourceType | string;
5744
+ InputSourceType?: InputSourceType;
5745
5745
  /**
5746
5746
  * @public
5747
5747
  * A list of MediaConnect Flows for this input.
@@ -5771,7 +5771,7 @@ export interface DescribeInputResponse {
5771
5771
  * @public
5772
5772
  * Placeholder documentation for InputState
5773
5773
  */
5774
- State?: InputState | string;
5774
+ State?: InputState;
5775
5775
  /**
5776
5776
  * @public
5777
5777
  * A collection of key-value pairs.
@@ -5781,7 +5781,7 @@ export interface DescribeInputResponse {
5781
5781
  * @public
5782
5782
  * The different types of inputs that AWS Elemental MediaLive supports.
5783
5783
  */
5784
- Type?: InputType | string;
5784
+ Type?: InputType;
5785
5785
  }
5786
5786
  /**
5787
5787
  * @public
@@ -5808,17 +5808,17 @@ export interface DescribeInputDeviceResponse {
5808
5808
  * @public
5809
5809
  * The state of the connection between the input device and AWS.
5810
5810
  */
5811
- ConnectionState?: InputDeviceConnectionState | string;
5811
+ ConnectionState?: InputDeviceConnectionState;
5812
5812
  /**
5813
5813
  * @public
5814
5814
  * The status of the action to synchronize the device configuration. If you change the configuration of the input device (for example, the maximum bitrate), MediaLive sends the new data to the device. The device might not update itself immediately. SYNCED means the device has updated its configuration. SYNCING means that it has not updated its configuration.
5815
5815
  */
5816
- DeviceSettingsSyncState?: DeviceSettingsSyncState | string;
5816
+ DeviceSettingsSyncState?: DeviceSettingsSyncState;
5817
5817
  /**
5818
5818
  * @public
5819
5819
  * The status of software on the input device.
5820
5820
  */
5821
- DeviceUpdateStatus?: DeviceUpdateStatus | string;
5821
+ DeviceUpdateStatus?: DeviceUpdateStatus;
5822
5822
  /**
5823
5823
  * @public
5824
5824
  * Settings that describe an input device that is type HD.
@@ -5853,7 +5853,7 @@ export interface DescribeInputDeviceResponse {
5853
5853
  * @public
5854
5854
  * The type of the input device.
5855
5855
  */
5856
- Type?: InputDeviceType | string;
5856
+ Type?: InputDeviceType;
5857
5857
  /**
5858
5858
  * @public
5859
5859
  * Settings that describe an input device that is type UHD.
@@ -5878,7 +5878,7 @@ export interface DescribeInputDeviceResponse {
5878
5878
  * @public
5879
5879
  * The output attachment type of the input device. Specifies MEDIACONNECT_FLOW if this device is the source for a MediaConnect flow. Specifies MEDIALIVE_INPUT if this device is the source for a MediaLive input.
5880
5880
  */
5881
- OutputType?: InputDeviceOutputType | string;
5881
+ OutputType?: InputDeviceOutputType;
5882
5882
  }
5883
5883
  /**
5884
5884
  * @public
@@ -5894,7 +5894,7 @@ export interface DescribeInputDeviceThumbnailRequest {
5894
5894
  * @public
5895
5895
  * The HTTP Accept header. Indicates the requested type for the thumbnail.
5896
5896
  */
5897
- Accept: AcceptHeader | string | undefined;
5897
+ Accept: AcceptHeader | undefined;
5898
5898
  }
5899
5899
  /**
5900
5900
  * @public
@@ -5910,7 +5910,7 @@ export interface DescribeInputDeviceThumbnailResponse {
5910
5910
  * @public
5911
5911
  * Specifies the media type of the thumbnail.
5912
5912
  */
5913
- ContentType?: ContentType | string;
5913
+ ContentType?: ContentType;
5914
5914
  /**
5915
5915
  * @public
5916
5916
  * The length of the content.
@@ -5962,7 +5962,7 @@ export interface DescribeInputSecurityGroupResponse {
5962
5962
  * @public
5963
5963
  * The current state of the Input Security Group.
5964
5964
  */
5965
- State?: InputSecurityGroupState | string;
5965
+ State?: InputSecurityGroupState;
5966
5966
  /**
5967
5967
  * @public
5968
5968
  * A collection of key-value pairs.
@@ -6034,7 +6034,7 @@ export interface DescribeMultiplexResponse {
6034
6034
  * @public
6035
6035
  * The current state of the multiplex.
6036
6036
  */
6037
- State?: MultiplexState | string;
6037
+ State?: MultiplexState;
6038
6038
  /**
6039
6039
  * @public
6040
6040
  * A collection of key-value pairs.
@@ -6123,7 +6123,7 @@ export interface DescribeOfferingResponse {
6123
6123
  * @public
6124
6124
  * Units for duration, e.g. 'MONTHS'
6125
6125
  */
6126
- DurationUnits?: OfferingDurationUnits | string;
6126
+ DurationUnits?: OfferingDurationUnits;
6127
6127
  /**
6128
6128
  * @public
6129
6129
  * One-time charge for each reserved resource, e.g. '0.0' for a NO_UPFRONT offering
@@ -6143,7 +6143,7 @@ export interface DescribeOfferingResponse {
6143
6143
  * @public
6144
6144
  * Offering type, e.g. 'NO_UPFRONT'
6145
6145
  */
6146
- OfferingType?: OfferingType | string;
6146
+ OfferingType?: OfferingType;
6147
6147
  /**
6148
6148
  * @public
6149
6149
  * AWS region, e.g. 'us-west-2'
@@ -6200,7 +6200,7 @@ export interface DescribeReservationResponse {
6200
6200
  * @public
6201
6201
  * Units for duration, e.g. 'MONTHS'
6202
6202
  */
6203
- DurationUnits?: OfferingDurationUnits | string;
6203
+ DurationUnits?: OfferingDurationUnits;
6204
6204
  /**
6205
6205
  * @public
6206
6206
  * Reservation UTC end date and time in ISO-8601 format, e.g. '2019-03-01T00:00:00'
@@ -6230,7 +6230,7 @@ export interface DescribeReservationResponse {
6230
6230
  * @public
6231
6231
  * Offering type, e.g. 'NO_UPFRONT'
6232
6232
  */
6233
- OfferingType?: OfferingType | string;
6233
+ OfferingType?: OfferingType;
6234
6234
  /**
6235
6235
  * @public
6236
6236
  * AWS region, e.g. 'us-west-2'
@@ -6260,7 +6260,7 @@ export interface DescribeReservationResponse {
6260
6260
  * @public
6261
6261
  * Current state of reservation, e.g. 'ACTIVE'
6262
6262
  */
6263
- State?: ReservationState | string;
6263
+ State?: ReservationState;
6264
6264
  /**
6265
6265
  * @public
6266
6266
  * A collection of key-value pairs
@@ -6376,7 +6376,7 @@ export interface InputDeviceConfigurableSettings {
6376
6376
  * @public
6377
6377
  * The input source that you want to use. If the device has a source connected to only one of its input ports, or if you don't care which source the device sends, specify Auto. If the device has sources connected to both its input ports, and you want to use a specific source, specify the source.
6378
6378
  */
6379
- ConfiguredInput?: InputDeviceConfiguredInput | string;
6379
+ ConfiguredInput?: InputDeviceConfiguredInput;
6380
6380
  /**
6381
6381
  * @public
6382
6382
  * The maximum bitrate in bits per second. Set a value here to throttle the bitrate of the source video.
@@ -6391,7 +6391,7 @@ export interface InputDeviceConfigurableSettings {
6391
6391
  * @public
6392
6392
  * Choose the codec for the video that the device produces. Only UHD devices can specify this parameter.
6393
6393
  */
6394
- Codec?: InputDeviceCodec | string;
6394
+ Codec?: InputDeviceCodec;
6395
6395
  /**
6396
6396
  * @public
6397
6397
  * To attach this device to a MediaConnect flow, specify these parameters. To detach an existing flow, enter \{\} for the value of mediaconnectSettings. Only UHD devices can specify this parameter.