@aws-sdk/client-medialive 3.686.0 → 3.691.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.
@@ -10,7 +10,7 @@ export interface FrameCaptureOutputSettings {
10
10
  * Required if the output group contains more than one output. This modifier forms part of the output file name.
11
11
  * @public
12
12
  */
13
- NameModifier?: string;
13
+ NameModifier?: string | undefined;
14
14
  }
15
15
  /**
16
16
  * @public
@@ -59,14 +59,14 @@ export interface AudioOnlyHlsSettings {
59
59
  * Specifies the group to which the audio Rendition belongs.
60
60
  * @public
61
61
  */
62
- AudioGroupId?: string;
62
+ AudioGroupId?: string | undefined;
63
63
  /**
64
64
  * Optional. Specifies the .jpg or .png image to use as the cover art for an audio-only output. We recommend a low bit-size file because the image increases the output audio bandwidth.
65
65
  *
66
66
  * The image is attached to the audio as an ID3 tag, frame type APIC, picture type 0x10, as per the "ID3 tag version 2.4.0 - Native Frames" standard.
67
67
  * @public
68
68
  */
69
- AudioOnlyImage?: InputLocation;
69
+ AudioOnlyImage?: InputLocation | undefined;
70
70
  /**
71
71
  * Four types of audio-only tracks are supported:
72
72
  *
@@ -83,12 +83,12 @@ export interface AudioOnlyHlsSettings {
83
83
  * Alternate rendition that the client will not try to play back by default. Represented as an EXT-X-MEDIA in the HLS manifest with DEFAULT=NO, AUTOSELECT=NO
84
84
  * @public
85
85
  */
86
- AudioTrackType?: AudioOnlyHlsTrackType;
86
+ AudioTrackType?: AudioOnlyHlsTrackType | undefined;
87
87
  /**
88
88
  * Specifies the segment type.
89
89
  * @public
90
90
  */
91
- SegmentType?: AudioOnlyHlsSegmentType;
91
+ SegmentType?: AudioOnlyHlsSegmentType | undefined;
92
92
  }
93
93
  /**
94
94
  * @public
@@ -123,17 +123,17 @@ export interface Fmp4HlsSettings {
123
123
  * List all the audio groups that are used with the video output stream. Input all the audio GROUP-IDs that are associated to the video, separate by ','.
124
124
  * @public
125
125
  */
126
- AudioRenditionSets?: string;
126
+ AudioRenditionSets?: string | undefined;
127
127
  /**
128
128
  * If set to passthrough, Nielsen inaudible tones for media tracking will be detected in the input audio and an equivalent ID3 tag will be inserted in the output.
129
129
  * @public
130
130
  */
131
- NielsenId3Behavior?: Fmp4NielsenId3Behavior;
131
+ NielsenId3Behavior?: Fmp4NielsenId3Behavior | undefined;
132
132
  /**
133
133
  * When set to passthrough, timed metadata is passed through from input to output.
134
134
  * @public
135
135
  */
136
- TimedMetadataBehavior?: Fmp4TimedMetadataBehavior;
136
+ TimedMetadataBehavior?: Fmp4TimedMetadataBehavior | undefined;
137
137
  }
138
138
  /**
139
139
  * Frame Capture Hls Settings
@@ -210,97 +210,97 @@ export interface M3u8Settings {
210
210
  * The number of audio frames to insert for each PES packet.
211
211
  * @public
212
212
  */
213
- AudioFramesPerPes?: number;
213
+ AudioFramesPerPes?: number | undefined;
214
214
  /**
215
215
  * Packet Identifier (PID) of the elementary audio stream(s) in the transport stream. Multiple values are accepted, and can be entered in ranges and/or by comma separation. Can be entered as decimal or hexadecimal values.
216
216
  * @public
217
217
  */
218
- AudioPids?: string;
218
+ AudioPids?: string | undefined;
219
219
  /**
220
220
  * This parameter is unused and deprecated.
221
221
  * @public
222
222
  */
223
- EcmPid?: string;
223
+ EcmPid?: string | undefined;
224
224
  /**
225
225
  * If set to passthrough, Nielsen inaudible tones for media tracking will be detected in the input audio and an equivalent ID3 tag will be inserted in the output.
226
226
  * @public
227
227
  */
228
- NielsenId3Behavior?: M3u8NielsenId3Behavior;
228
+ NielsenId3Behavior?: M3u8NielsenId3Behavior | undefined;
229
229
  /**
230
230
  * The number of milliseconds between instances of this table in the output transport stream. A value of \"0\" writes out the PMT once per segment file.
231
231
  * @public
232
232
  */
233
- PatInterval?: number;
233
+ PatInterval?: number | undefined;
234
234
  /**
235
235
  * When set to pcrEveryPesPacket, a Program Clock Reference value is inserted for every Packetized Elementary Stream (PES) header. This parameter is effective only when the PCR PID is the same as the video or audio elementary stream.
236
236
  * @public
237
237
  */
238
- PcrControl?: M3u8PcrControl;
238
+ PcrControl?: M3u8PcrControl | undefined;
239
239
  /**
240
240
  * Maximum time in milliseconds between Program Clock References (PCRs) inserted into the transport stream.
241
241
  * @public
242
242
  */
243
- PcrPeriod?: number;
243
+ PcrPeriod?: number | undefined;
244
244
  /**
245
245
  * Packet Identifier (PID) of the Program Clock Reference (PCR) in the transport stream. When no value is given, the encoder will assign the same value as the Video PID. Can be entered as a decimal or hexadecimal value.
246
246
  * @public
247
247
  */
248
- PcrPid?: string;
248
+ PcrPid?: string | undefined;
249
249
  /**
250
250
  * The number of milliseconds between instances of this table in the output transport stream. A value of \"0\" writes out the PMT once per segment file.
251
251
  * @public
252
252
  */
253
- PmtInterval?: number;
253
+ PmtInterval?: number | undefined;
254
254
  /**
255
255
  * Packet Identifier (PID) for the Program Map Table (PMT) in the transport stream. Can be entered as a decimal or hexadecimal value.
256
256
  * @public
257
257
  */
258
- PmtPid?: string;
258
+ PmtPid?: string | undefined;
259
259
  /**
260
260
  * The value of the program number field in the Program Map Table.
261
261
  * @public
262
262
  */
263
- ProgramNum?: number;
263
+ ProgramNum?: number | undefined;
264
264
  /**
265
265
  * If set to passthrough, passes any SCTE-35 signals from the input source to this output.
266
266
  * @public
267
267
  */
268
- Scte35Behavior?: M3u8Scte35Behavior;
268
+ Scte35Behavior?: M3u8Scte35Behavior | undefined;
269
269
  /**
270
270
  * Packet Identifier (PID) of the SCTE-35 stream in the transport stream. Can be entered as a decimal or hexadecimal value.
271
271
  * @public
272
272
  */
273
- Scte35Pid?: string;
273
+ Scte35Pid?: string | undefined;
274
274
  /**
275
275
  * When set to passthrough, timed metadata is passed through from input to output.
276
276
  * @public
277
277
  */
278
- TimedMetadataBehavior?: M3u8TimedMetadataBehavior;
278
+ TimedMetadataBehavior?: M3u8TimedMetadataBehavior | undefined;
279
279
  /**
280
280
  * Packet Identifier (PID) of the timed metadata stream in the transport stream. Can be entered as a decimal or hexadecimal value. Valid values are 32 (or 0x20)..8182 (or 0x1ff6).
281
281
  * @public
282
282
  */
283
- TimedMetadataPid?: string;
283
+ TimedMetadataPid?: string | undefined;
284
284
  /**
285
285
  * The value of the transport stream ID field in the Program Map Table.
286
286
  * @public
287
287
  */
288
- TransportStreamId?: number;
288
+ TransportStreamId?: number | undefined;
289
289
  /**
290
290
  * Packet Identifier (PID) of the elementary video stream in the transport stream. Can be entered as a decimal or hexadecimal value.
291
291
  * @public
292
292
  */
293
- VideoPid?: string;
293
+ VideoPid?: string | undefined;
294
294
  /**
295
295
  * If set to passthrough, passes any KLV data from the input source to this output.
296
296
  * @public
297
297
  */
298
- KlvBehavior?: M3u8KlvBehavior;
298
+ KlvBehavior?: M3u8KlvBehavior | undefined;
299
299
  /**
300
300
  * Packet Identifier (PID) for input source KLV data to this output. Multiple values are accepted, and can be entered in ranges and/or by comma separation. Can be entered as decimal or hexadecimal values. Each PID specified must be in the range of 32 (or 0x20)..8182 (or 0x1ff6).
301
301
  * @public
302
302
  */
303
- KlvDataPids?: string;
303
+ KlvDataPids?: string | undefined;
304
304
  }
305
305
  /**
306
306
  * Standard Hls Settings
@@ -311,7 +311,7 @@ export interface StandardHlsSettings {
311
311
  * List all the audio groups that are used with the video output stream. Input all the audio GROUP-IDs that are associated to the video, separate by ','.
312
312
  * @public
313
313
  */
314
- AudioRenditionSets?: string;
314
+ AudioRenditionSets?: string | undefined;
315
315
  /**
316
316
  * Settings information for the .m3u8 container
317
317
  * @public
@@ -327,22 +327,22 @@ export interface HlsSettings {
327
327
  * Audio Only Hls Settings
328
328
  * @public
329
329
  */
330
- AudioOnlyHlsSettings?: AudioOnlyHlsSettings;
330
+ AudioOnlyHlsSettings?: AudioOnlyHlsSettings | undefined;
331
331
  /**
332
332
  * Fmp4 Hls Settings
333
333
  * @public
334
334
  */
335
- Fmp4HlsSettings?: Fmp4HlsSettings;
335
+ Fmp4HlsSettings?: Fmp4HlsSettings | undefined;
336
336
  /**
337
337
  * Frame Capture Hls Settings
338
338
  * @public
339
339
  */
340
- FrameCaptureHlsSettings?: FrameCaptureHlsSettings;
340
+ FrameCaptureHlsSettings?: FrameCaptureHlsSettings | undefined;
341
341
  /**
342
342
  * Standard Hls Settings
343
343
  * @public
344
344
  */
345
- StandardHlsSettings?: StandardHlsSettings;
345
+ StandardHlsSettings?: StandardHlsSettings | undefined;
346
346
  }
347
347
  /**
348
348
  * Hls Output Settings
@@ -354,7 +354,7 @@ export interface HlsOutputSettings {
354
354
  * Specifies whether MP4 segments should be packaged as HEV1 or HVC1.
355
355
  * @public
356
356
  */
357
- H265PackagingType?: HlsH265PackagingType;
357
+ H265PackagingType?: HlsH265PackagingType | undefined;
358
358
  /**
359
359
  * Settings regarding the underlying stream. These settings are different for audio-only outputs.
360
360
  * @public
@@ -364,12 +364,12 @@ export interface HlsOutputSettings {
364
364
  * String concatenated to the end of the destination filename. Accepts \"Format Identifiers\":#formatIdentifierParameters.
365
365
  * @public
366
366
  */
367
- NameModifier?: string;
367
+ NameModifier?: string | undefined;
368
368
  /**
369
369
  * String concatenated to end of segment filenames.
370
370
  * @public
371
371
  */
372
- SegmentModifier?: string;
372
+ SegmentModifier?: string | undefined;
373
373
  }
374
374
  /**
375
375
  * Media Package Output Settings
@@ -399,12 +399,12 @@ export interface MsSmoothOutputSettings {
399
399
  * Specifies whether MP4 segments should be packaged as HEV1 or HVC1.
400
400
  * @public
401
401
  */
402
- H265PackagingType?: MsSmoothH265PackagingType;
402
+ H265PackagingType?: MsSmoothH265PackagingType | undefined;
403
403
  /**
404
404
  * String concatenated to the end of the destination filename. Required for multiple outputs of the same type.
405
405
  * @public
406
406
  */
407
- NameModifier?: string;
407
+ NameModifier?: string | undefined;
408
408
  }
409
409
  /**
410
410
  * Multiplex M2ts Settings
@@ -415,72 +415,72 @@ export interface MultiplexM2tsSettings {
415
415
  * When set to drop, output audio streams will be removed from the program if the selected input audio stream is removed from the input. This allows the output audio configuration to dynamically change based on input configuration. If this is set to encodeSilence, all output audio streams will output encoded silence when not connected to an active input stream.
416
416
  * @public
417
417
  */
418
- AbsentInputAudioBehavior?: M2tsAbsentInputAudioBehavior;
418
+ AbsentInputAudioBehavior?: M2tsAbsentInputAudioBehavior | undefined;
419
419
  /**
420
420
  * When set to enabled, uses ARIB-compliant field muxing and removes video descriptor.
421
421
  * @public
422
422
  */
423
- Arib?: M2tsArib;
423
+ Arib?: M2tsArib | undefined;
424
424
  /**
425
425
  * When set to dvb, uses DVB buffer model for Dolby Digital audio. When set to atsc, the ATSC model is used.
426
426
  * @public
427
427
  */
428
- AudioBufferModel?: M2tsAudioBufferModel;
428
+ AudioBufferModel?: M2tsAudioBufferModel | undefined;
429
429
  /**
430
430
  * The number of audio frames to insert for each PES packet.
431
431
  * @public
432
432
  */
433
- AudioFramesPerPes?: number;
433
+ AudioFramesPerPes?: number | undefined;
434
434
  /**
435
435
  * When set to atsc, uses stream type = 0x81 for AC3 and stream type = 0x87 for EAC3. When set to dvb, uses stream type = 0x06.
436
436
  * @public
437
437
  */
438
- AudioStreamType?: M2tsAudioStreamType;
438
+ AudioStreamType?: M2tsAudioStreamType | undefined;
439
439
  /**
440
440
  * When set to enabled, generates captionServiceDescriptor in PMT.
441
441
  * @public
442
442
  */
443
- CcDescriptor?: M2tsCcDescriptor;
443
+ CcDescriptor?: M2tsCcDescriptor | undefined;
444
444
  /**
445
445
  * If set to passthrough, passes any EBIF data from the input source to this output.
446
446
  * @public
447
447
  */
448
- Ebif?: M2tsEbifControl;
448
+ Ebif?: M2tsEbifControl | undefined;
449
449
  /**
450
450
  * Include or exclude the ES Rate field in the PES header.
451
451
  * @public
452
452
  */
453
- EsRateInPes?: M2tsEsRateInPes;
453
+ EsRateInPes?: M2tsEsRateInPes | undefined;
454
454
  /**
455
455
  * If set to passthrough, passes any KLV data from the input source to this output.
456
456
  * @public
457
457
  */
458
- Klv?: M2tsKlv;
458
+ Klv?: M2tsKlv | undefined;
459
459
  /**
460
460
  * If set to passthrough, Nielsen inaudible tones for media tracking will be detected in the input audio and an equivalent ID3 tag will be inserted in the output.
461
461
  * @public
462
462
  */
463
- NielsenId3Behavior?: M2tsNielsenId3Behavior;
463
+ NielsenId3Behavior?: M2tsNielsenId3Behavior | undefined;
464
464
  /**
465
465
  * When set to pcrEveryPesPacket, a Program Clock Reference value is inserted for every Packetized Elementary Stream (PES) header. This parameter is effective only when the PCR PID is the same as the video or audio elementary stream.
466
466
  * @public
467
467
  */
468
- PcrControl?: M2tsPcrControl;
468
+ PcrControl?: M2tsPcrControl | undefined;
469
469
  /**
470
470
  * Maximum time in milliseconds between Program Clock Reference (PCRs) inserted into the transport stream.
471
471
  * @public
472
472
  */
473
- PcrPeriod?: number;
473
+ PcrPeriod?: number | undefined;
474
474
  /**
475
475
  * Optionally pass SCTE-35 signals from the input source to this output.
476
476
  * @public
477
477
  */
478
- Scte35Control?: M2tsScte35Control;
478
+ Scte35Control?: M2tsScte35Control | undefined;
479
479
  /**
480
480
  * Defines the amount SCTE-35 preroll will be increased (in milliseconds) on the output. Preroll is the amount of time between the presence of a SCTE-35 indication in a transport stream and the PTS of the video frame it references. Zero means don't add pullup (it doesn't mean set the preroll to zero). Negative pullup is not supported, which means that you can't make the preroll shorter. Be aware that latency in the output will increase by the pullup amount.
481
481
  * @public
482
482
  */
483
- Scte35PrerollPullupMilliseconds?: number;
483
+ Scte35PrerollPullupMilliseconds?: number | undefined;
484
484
  }
485
485
  /**
486
486
  * Multiplex Container Settings
@@ -491,7 +491,7 @@ export interface MultiplexContainerSettings {
491
491
  * Multiplex M2ts Settings
492
492
  * @public
493
493
  */
494
- MultiplexM2tsSettings?: MultiplexM2tsSettings;
494
+ MultiplexM2tsSettings?: MultiplexM2tsSettings | undefined;
495
495
  }
496
496
  /**
497
497
  * Reference to an OutputDestination ID defined in the channel
@@ -502,7 +502,7 @@ export interface OutputLocationRef {
502
502
  * Placeholder documentation for __string
503
503
  * @public
504
504
  */
505
- DestinationRefId?: string;
505
+ DestinationRefId?: string | undefined;
506
506
  }
507
507
  /**
508
508
  * Multiplex Output Settings
@@ -518,7 +518,7 @@ export interface MultiplexOutputSettings {
518
518
  * Multiplex Container Settings
519
519
  * @public
520
520
  */
521
- ContainerSettings?: MultiplexContainerSettings;
521
+ ContainerSettings?: MultiplexContainerSettings | undefined;
522
522
  }
523
523
  /**
524
524
  * @public
@@ -541,12 +541,12 @@ export interface RtmpOutputSettings {
541
541
  * If set to verifyAuthenticity, verify the tls certificate chain to a trusted Certificate Authority (CA). This will cause rtmps outputs with self-signed certificates to fail.
542
542
  * @public
543
543
  */
544
- CertificateMode?: RtmpOutputCertificateMode;
544
+ CertificateMode?: RtmpOutputCertificateMode | undefined;
545
545
  /**
546
546
  * Number of seconds to wait before retrying a connection to the Flash Media server if the connection is lost.
547
547
  * @public
548
548
  */
549
- ConnectionRetryInterval?: number;
549
+ ConnectionRetryInterval?: number | undefined;
550
550
  /**
551
551
  * The RTMP endpoint excluding the stream name (eg. rtmp://host/appname). For connection to Akamai, a username and password must be supplied. URI fields accept format identifiers.
552
552
  * @public
@@ -556,7 +556,7 @@ export interface RtmpOutputSettings {
556
556
  * Number of retry attempts.
557
557
  * @public
558
558
  */
559
- NumRetries?: number;
559
+ NumRetries?: number | undefined;
560
560
  }
561
561
  /**
562
562
  * Udp Container Settings
@@ -567,7 +567,7 @@ export interface UdpContainerSettings {
567
567
  * M2ts Settings
568
568
  * @public
569
569
  */
570
- M2tsSettings?: M2tsSettings;
570
+ M2tsSettings?: M2tsSettings | undefined;
571
571
  }
572
572
  /**
573
573
  * @public
@@ -591,7 +591,7 @@ export interface SrtOutputSettings {
591
591
  * SRT output buffering in milliseconds. A higher value increases latency through the encoder. But the benefits are that it helps to maintain a constant, low-jitter SRT output, and it accommodates clock recovery, input switching, input disruptions, picture reordering, and so on. Range: 0-10000 milliseconds.
592
592
  * @public
593
593
  */
594
- BufferMsec?: number;
594
+ BufferMsec?: number | undefined;
595
595
  /**
596
596
  * Udp Container Settings
597
597
  * @public
@@ -606,12 +606,12 @@ export interface SrtOutputSettings {
606
606
  * The encryption level for the content. Valid values are AES128, AES192, AES256. You and the downstream system should plan how to set this field because the values must not conflict with each other.
607
607
  * @public
608
608
  */
609
- EncryptionType?: SrtEncryptionType;
609
+ EncryptionType?: SrtEncryptionType | undefined;
610
610
  /**
611
611
  * The latency value, in milliseconds, that is proposed during the SRT connection handshake. SRT will choose the maximum of the values proposed by the sender and receiver. On the sender side, latency is the amount of time a packet is held to give it a chance to be delivered successfully. On the receiver side, latency is the amount of time the packet is held before delivering to the application, aiding in packet recovery and matching as closely as possible the packet timing of the sender. Range: 40-16000 milliseconds.
612
612
  * @public
613
613
  */
614
- Latency?: number;
614
+ Latency?: number | undefined;
615
615
  }
616
616
  /**
617
617
  * @public
@@ -634,17 +634,17 @@ export interface FecOutputSettings {
634
634
  * Parameter D from SMPTE 2022-1. The height of the FEC protection matrix. The number of transport stream packets per column error correction packet. Must be between 4 and 20, inclusive.
635
635
  * @public
636
636
  */
637
- ColumnDepth?: number;
637
+ ColumnDepth?: number | undefined;
638
638
  /**
639
639
  * Enables column only or column and row based FEC
640
640
  * @public
641
641
  */
642
- IncludeFec?: FecOutputIncludeFec;
642
+ IncludeFec?: FecOutputIncludeFec | undefined;
643
643
  /**
644
644
  * Parameter L from SMPTE 2022-1. The width of the FEC protection matrix. Must be between 1 and 20, inclusive. If only Column FEC is used, then larger values increase robustness. If Row FEC is used, then this is the number of transport stream packets per row error correction packet, and the value must be between 4 and 20, inclusive, if includeFec is columnAndRow. If includeFec is column, this value must be 1 to 20, inclusive.
645
645
  * @public
646
646
  */
647
- RowLength?: number;
647
+ RowLength?: number | undefined;
648
648
  }
649
649
  /**
650
650
  * Udp Output Settings
@@ -655,7 +655,7 @@ export interface UdpOutputSettings {
655
655
  * UDP output buffering in milliseconds. Larger values increase latency through the transcoder but simultaneously assist the transcoder in maintaining a constant, low-jitter UDP/RTP output while accommodating clock recovery, input switching, input disruptions, picture reordering, etc.
656
656
  * @public
657
657
  */
658
- BufferMsec?: number;
658
+ BufferMsec?: number | undefined;
659
659
  /**
660
660
  * Udp Container Settings
661
661
  * @public
@@ -670,7 +670,7 @@ export interface UdpOutputSettings {
670
670
  * Settings for enabling and adjusting Forward Error Correction on UDP outputs.
671
671
  * @public
672
672
  */
673
- FecOutputSettings?: FecOutputSettings;
673
+ FecOutputSettings?: FecOutputSettings | undefined;
674
674
  }
675
675
  /**
676
676
  * Output Settings
@@ -681,52 +681,52 @@ export interface OutputSettings {
681
681
  * Archive Output Settings
682
682
  * @public
683
683
  */
684
- ArchiveOutputSettings?: ArchiveOutputSettings;
684
+ ArchiveOutputSettings?: ArchiveOutputSettings | undefined;
685
685
  /**
686
686
  * Frame Capture Output Settings
687
687
  * @public
688
688
  */
689
- FrameCaptureOutputSettings?: FrameCaptureOutputSettings;
689
+ FrameCaptureOutputSettings?: FrameCaptureOutputSettings | undefined;
690
690
  /**
691
691
  * Hls Output Settings
692
692
  * @public
693
693
  */
694
- HlsOutputSettings?: HlsOutputSettings;
694
+ HlsOutputSettings?: HlsOutputSettings | undefined;
695
695
  /**
696
696
  * Media Package Output Settings
697
697
  * @public
698
698
  */
699
- MediaPackageOutputSettings?: MediaPackageOutputSettings;
699
+ MediaPackageOutputSettings?: MediaPackageOutputSettings | undefined;
700
700
  /**
701
701
  * Ms Smooth Output Settings
702
702
  * @public
703
703
  */
704
- MsSmoothOutputSettings?: MsSmoothOutputSettings;
704
+ MsSmoothOutputSettings?: MsSmoothOutputSettings | undefined;
705
705
  /**
706
706
  * Multiplex Output Settings
707
707
  * @public
708
708
  */
709
- MultiplexOutputSettings?: MultiplexOutputSettings;
709
+ MultiplexOutputSettings?: MultiplexOutputSettings | undefined;
710
710
  /**
711
711
  * Rtmp Output Settings
712
712
  * @public
713
713
  */
714
- RtmpOutputSettings?: RtmpOutputSettings;
714
+ RtmpOutputSettings?: RtmpOutputSettings | undefined;
715
715
  /**
716
716
  * Udp Output Settings
717
717
  * @public
718
718
  */
719
- UdpOutputSettings?: UdpOutputSettings;
719
+ UdpOutputSettings?: UdpOutputSettings | undefined;
720
720
  /**
721
721
  * Cmaf Ingest Output Settings
722
722
  * @public
723
723
  */
724
- CmafIngestOutputSettings?: CmafIngestOutputSettings;
724
+ CmafIngestOutputSettings?: CmafIngestOutputSettings | undefined;
725
725
  /**
726
726
  * Srt Output Settings
727
727
  * @public
728
728
  */
729
- SrtOutputSettings?: SrtOutputSettings;
729
+ SrtOutputSettings?: SrtOutputSettings | undefined;
730
730
  }
731
731
  /**
732
732
  * Output settings. There can be multiple outputs within a group.
@@ -737,17 +737,17 @@ export interface Output {
737
737
  * The names of the AudioDescriptions used as audio sources for this output.
738
738
  * @public
739
739
  */
740
- AudioDescriptionNames?: string[];
740
+ AudioDescriptionNames?: string[] | undefined;
741
741
  /**
742
742
  * The names of the CaptionDescriptions used as caption sources for this output.
743
743
  * @public
744
744
  */
745
- CaptionDescriptionNames?: string[];
745
+ CaptionDescriptionNames?: string[] | undefined;
746
746
  /**
747
747
  * The name used to identify an output.
748
748
  * @public
749
749
  */
750
- OutputName?: string;
750
+ OutputName?: string | undefined;
751
751
  /**
752
752
  * Output type-specific settings.
753
753
  * @public
@@ -757,7 +757,7 @@ export interface Output {
757
757
  * The name of the VideoDescription used as the source for this output.
758
758
  * @public
759
759
  */
760
- VideoDescriptionName?: string;
760
+ VideoDescriptionName?: string | undefined;
761
761
  }
762
762
  /**
763
763
  * @public
@@ -782,7 +782,7 @@ export interface ArchiveS3Settings {
782
782
  * Specify the canned ACL to apply to each S3 request. Defaults to none.
783
783
  * @public
784
784
  */
785
- CannedAcl?: S3CannedAcl;
785
+ CannedAcl?: S3CannedAcl | undefined;
786
786
  }
787
787
  /**
788
788
  * Archive Cdn Settings
@@ -793,7 +793,7 @@ export interface ArchiveCdnSettings {
793
793
  * Archive S3 Settings
794
794
  * @public
795
795
  */
796
- ArchiveS3Settings?: ArchiveS3Settings;
796
+ ArchiveS3Settings?: ArchiveS3Settings | undefined;
797
797
  }
798
798
  /**
799
799
  * Archive Group Settings
@@ -804,7 +804,7 @@ export interface ArchiveGroupSettings {
804
804
  * Parameters that control interactions with the CDN.
805
805
  * @public
806
806
  */
807
- ArchiveCdnSettings?: ArchiveCdnSettings;
807
+ ArchiveCdnSettings?: ArchiveCdnSettings | undefined;
808
808
  /**
809
809
  * A directory and base filename where archive files should be written.
810
810
  * @public
@@ -814,7 +814,7 @@ export interface ArchiveGroupSettings {
814
814
  * Number of seconds to write to archive file before closing and starting a new one.
815
815
  * @public
816
816
  */
817
- RolloverInterval?: number;
817
+ RolloverInterval?: number | undefined;
818
818
  }
819
819
  /**
820
820
  * @public
@@ -866,27 +866,27 @@ export interface CmafIngestGroupSettings {
866
866
  * If set to passthrough, Nielsen inaudible tones for media tracking will be detected in the input audio and an equivalent ID3 tag will be inserted in the output.
867
867
  * @public
868
868
  */
869
- NielsenId3Behavior?: CmafNielsenId3Behavior;
869
+ NielsenId3Behavior?: CmafNielsenId3Behavior | undefined;
870
870
  /**
871
871
  * Type of scte35 track to add. none or scte35WithoutSegmentation
872
872
  * @public
873
873
  */
874
- Scte35Type?: Scte35Type;
874
+ Scte35Type?: Scte35Type | undefined;
875
875
  /**
876
876
  * The nominal duration of segments. The units are specified in SegmentLengthUnits. The segments will end on the next keyframe after the specified duration, so the actual segment length might be longer, and it might be a fraction of the units.
877
877
  * @public
878
878
  */
879
- SegmentLength?: number;
879
+ SegmentLength?: number | undefined;
880
880
  /**
881
881
  * Time unit for segment length parameter.
882
882
  * @public
883
883
  */
884
- SegmentLengthUnits?: CmafIngestSegmentLengthUnits;
884
+ SegmentLengthUnits?: CmafIngestSegmentLengthUnits | undefined;
885
885
  /**
886
886
  * Number of milliseconds to delay the output from the second pipeline.
887
887
  * @public
888
888
  */
889
- SendDelayMs?: number;
889
+ SendDelayMs?: number | undefined;
890
890
  }
891
891
  /**
892
892
  * Frame Capture S3 Settings
@@ -897,7 +897,7 @@ export interface FrameCaptureS3Settings {
897
897
  * Specify the canned ACL to apply to each S3 request. Defaults to none.
898
898
  * @public
899
899
  */
900
- CannedAcl?: S3CannedAcl;
900
+ CannedAcl?: S3CannedAcl | undefined;
901
901
  }
902
902
  /**
903
903
  * Frame Capture Cdn Settings
@@ -908,7 +908,7 @@ export interface FrameCaptureCdnSettings {
908
908
  * Frame Capture S3 Settings
909
909
  * @public
910
910
  */
911
- FrameCaptureS3Settings?: FrameCaptureS3Settings;
911
+ FrameCaptureS3Settings?: FrameCaptureS3Settings | undefined;
912
912
  }
913
913
  /**
914
914
  * Frame Capture Group Settings
@@ -924,7 +924,7 @@ export interface FrameCaptureGroupSettings {
924
924
  * Parameters that control interactions with the CDN.
925
925
  * @public
926
926
  */
927
- FrameCaptureCdnSettings?: FrameCaptureCdnSettings;
927
+ FrameCaptureCdnSettings?: FrameCaptureCdnSettings | undefined;
928
928
  }
929
929
  /**
930
930
  * @public
@@ -1020,37 +1020,37 @@ export interface HlsAkamaiSettings {
1020
1020
  * Number of seconds to wait before retrying connection to the CDN if the connection is lost.
1021
1021
  * @public
1022
1022
  */
1023
- ConnectionRetryInterval?: number;
1023
+ ConnectionRetryInterval?: number | undefined;
1024
1024
  /**
1025
1025
  * Size in seconds of file cache for streaming outputs.
1026
1026
  * @public
1027
1027
  */
1028
- FilecacheDuration?: number;
1028
+ FilecacheDuration?: number | undefined;
1029
1029
  /**
1030
1030
  * Specify whether or not to use chunked transfer encoding to Akamai. User should contact Akamai to enable this feature.
1031
1031
  * @public
1032
1032
  */
1033
- HttpTransferMode?: HlsAkamaiHttpTransferMode;
1033
+ HttpTransferMode?: HlsAkamaiHttpTransferMode | undefined;
1034
1034
  /**
1035
1035
  * Number of retry attempts that will be made before the Live Event is put into an error state. Applies only if the CDN destination URI begins with "s3" or "mediastore". For other URIs, the value is always 3.
1036
1036
  * @public
1037
1037
  */
1038
- NumRetries?: number;
1038
+ NumRetries?: number | undefined;
1039
1039
  /**
1040
1040
  * If a streaming output fails, number of seconds to wait until a restart is initiated. A value of 0 means never restart.
1041
1041
  * @public
1042
1042
  */
1043
- RestartDelay?: number;
1043
+ RestartDelay?: number | undefined;
1044
1044
  /**
1045
1045
  * Salt for authenticated Akamai.
1046
1046
  * @public
1047
1047
  */
1048
- Salt?: string;
1048
+ Salt?: string | undefined;
1049
1049
  /**
1050
1050
  * Token parameter for authenticated akamai. If not specified, _gda_ is used.
1051
1051
  * @public
1052
1052
  */
1053
- Token?: string;
1053
+ Token?: string | undefined;
1054
1054
  }
1055
1055
  /**
1056
1056
  * Hls Basic Put Settings
@@ -1061,22 +1061,22 @@ export interface HlsBasicPutSettings {
1061
1061
  * Number of seconds to wait before retrying connection to the CDN if the connection is lost.
1062
1062
  * @public
1063
1063
  */
1064
- ConnectionRetryInterval?: number;
1064
+ ConnectionRetryInterval?: number | undefined;
1065
1065
  /**
1066
1066
  * Size in seconds of file cache for streaming outputs.
1067
1067
  * @public
1068
1068
  */
1069
- FilecacheDuration?: number;
1069
+ FilecacheDuration?: number | undefined;
1070
1070
  /**
1071
1071
  * Number of retry attempts that will be made before the Live Event is put into an error state. Applies only if the CDN destination URI begins with "s3" or "mediastore". For other URIs, the value is always 3.
1072
1072
  * @public
1073
1073
  */
1074
- NumRetries?: number;
1074
+ NumRetries?: number | undefined;
1075
1075
  /**
1076
1076
  * If a streaming output fails, number of seconds to wait until a restart is initiated. A value of 0 means never restart.
1077
1077
  * @public
1078
1078
  */
1079
- RestartDelay?: number;
1079
+ RestartDelay?: number | undefined;
1080
1080
  }
1081
1081
  /**
1082
1082
  * @public
@@ -1098,27 +1098,27 @@ export interface HlsMediaStoreSettings {
1098
1098
  * Number of seconds to wait before retrying connection to the CDN if the connection is lost.
1099
1099
  * @public
1100
1100
  */
1101
- ConnectionRetryInterval?: number;
1101
+ ConnectionRetryInterval?: number | undefined;
1102
1102
  /**
1103
1103
  * Size in seconds of file cache for streaming outputs.
1104
1104
  * @public
1105
1105
  */
1106
- FilecacheDuration?: number;
1106
+ FilecacheDuration?: number | undefined;
1107
1107
  /**
1108
1108
  * When set to temporal, output files are stored in non-persistent memory for faster reading and writing.
1109
1109
  * @public
1110
1110
  */
1111
- MediaStoreStorageClass?: HlsMediaStoreStorageClass;
1111
+ MediaStoreStorageClass?: HlsMediaStoreStorageClass | undefined;
1112
1112
  /**
1113
1113
  * Number of retry attempts that will be made before the Live Event is put into an error state. Applies only if the CDN destination URI begins with "s3" or "mediastore". For other URIs, the value is always 3.
1114
1114
  * @public
1115
1115
  */
1116
- NumRetries?: number;
1116
+ NumRetries?: number | undefined;
1117
1117
  /**
1118
1118
  * If a streaming output fails, number of seconds to wait until a restart is initiated. A value of 0 means never restart.
1119
1119
  * @public
1120
1120
  */
1121
- RestartDelay?: number;
1121
+ RestartDelay?: number | undefined;
1122
1122
  }
1123
1123
  /**
1124
1124
  * Hls S3 Settings
@@ -1129,7 +1129,7 @@ export interface HlsS3Settings {
1129
1129
  * Specify the canned ACL to apply to each S3 request. Defaults to none.
1130
1130
  * @public
1131
1131
  */
1132
- CannedAcl?: S3CannedAcl;
1132
+ CannedAcl?: S3CannedAcl | undefined;
1133
1133
  }
1134
1134
  /**
1135
1135
  * @public
@@ -1152,27 +1152,27 @@ export interface HlsWebdavSettings {
1152
1152
  * Number of seconds to wait before retrying connection to the CDN if the connection is lost.
1153
1153
  * @public
1154
1154
  */
1155
- ConnectionRetryInterval?: number;
1155
+ ConnectionRetryInterval?: number | undefined;
1156
1156
  /**
1157
1157
  * Size in seconds of file cache for streaming outputs.
1158
1158
  * @public
1159
1159
  */
1160
- FilecacheDuration?: number;
1160
+ FilecacheDuration?: number | undefined;
1161
1161
  /**
1162
1162
  * Specify whether or not to use chunked transfer encoding to WebDAV.
1163
1163
  * @public
1164
1164
  */
1165
- HttpTransferMode?: HlsWebdavHttpTransferMode;
1165
+ HttpTransferMode?: HlsWebdavHttpTransferMode | undefined;
1166
1166
  /**
1167
1167
  * Number of retry attempts that will be made before the Live Event is put into an error state. Applies only if the CDN destination URI begins with "s3" or "mediastore". For other URIs, the value is always 3.
1168
1168
  * @public
1169
1169
  */
1170
- NumRetries?: number;
1170
+ NumRetries?: number | undefined;
1171
1171
  /**
1172
1172
  * If a streaming output fails, number of seconds to wait until a restart is initiated. A value of 0 means never restart.
1173
1173
  * @public
1174
1174
  */
1175
- RestartDelay?: number;
1175
+ RestartDelay?: number | undefined;
1176
1176
  }
1177
1177
  /**
1178
1178
  * Hls Cdn Settings
@@ -1183,27 +1183,27 @@ export interface HlsCdnSettings {
1183
1183
  * Hls Akamai Settings
1184
1184
  * @public
1185
1185
  */
1186
- HlsAkamaiSettings?: HlsAkamaiSettings;
1186
+ HlsAkamaiSettings?: HlsAkamaiSettings | undefined;
1187
1187
  /**
1188
1188
  * Hls Basic Put Settings
1189
1189
  * @public
1190
1190
  */
1191
- HlsBasicPutSettings?: HlsBasicPutSettings;
1191
+ HlsBasicPutSettings?: HlsBasicPutSettings | undefined;
1192
1192
  /**
1193
1193
  * Hls Media Store Settings
1194
1194
  * @public
1195
1195
  */
1196
- HlsMediaStoreSettings?: HlsMediaStoreSettings;
1196
+ HlsMediaStoreSettings?: HlsMediaStoreSettings | undefined;
1197
1197
  /**
1198
1198
  * Hls S3 Settings
1199
1199
  * @public
1200
1200
  */
1201
- HlsS3Settings?: HlsS3Settings;
1201
+ HlsS3Settings?: HlsS3Settings | undefined;
1202
1202
  /**
1203
1203
  * Hls Webdav Settings
1204
1204
  * @public
1205
1205
  */
1206
- HlsWebdavSettings?: HlsWebdavSettings;
1206
+ HlsWebdavSettings?: HlsWebdavSettings | undefined;
1207
1207
  }
1208
1208
  /**
1209
1209
  * @public
@@ -1286,7 +1286,7 @@ export interface StaticKeySettings {
1286
1286
  * The URL of the license server used for protecting content.
1287
1287
  * @public
1288
1288
  */
1289
- KeyProviderServer?: InputLocation;
1289
+ KeyProviderServer?: InputLocation | undefined;
1290
1290
  /**
1291
1291
  * Static key value as a 32 character hexadecimal string.
1292
1292
  * @public
@@ -1302,7 +1302,7 @@ export interface KeyProviderSettings {
1302
1302
  * Static Key Settings
1303
1303
  * @public
1304
1304
  */
1305
- StaticKeySettings?: StaticKeySettings;
1305
+ StaticKeySettings?: StaticKeySettings | undefined;
1306
1306
  }
1307
1307
  /**
1308
1308
  * @public
@@ -1447,36 +1447,36 @@ export interface HlsGroupSettings {
1447
1447
  * Choose one or more ad marker types to pass SCTE35 signals through to this group of Apple HLS outputs.
1448
1448
  * @public
1449
1449
  */
1450
- AdMarkers?: HlsAdMarkers[];
1450
+ AdMarkers?: HlsAdMarkers[] | undefined;
1451
1451
  /**
1452
1452
  * 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.
1453
1453
  * @public
1454
1454
  */
1455
- BaseUrlContent?: string;
1455
+ BaseUrlContent?: string | undefined;
1456
1456
  /**
1457
1457
  * Optional. One value per output group.
1458
1458
  *
1459
1459
  * This field is required only if you are completing Base URL content A, and the downstream system has notified you that the media files for pipeline 1 of all outputs are in a location different from the media files for pipeline 0.
1460
1460
  * @public
1461
1461
  */
1462
- BaseUrlContent1?: string;
1462
+ BaseUrlContent1?: string | undefined;
1463
1463
  /**
1464
1464
  * 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.
1465
1465
  * @public
1466
1466
  */
1467
- BaseUrlManifest?: string;
1467
+ BaseUrlManifest?: string | undefined;
1468
1468
  /**
1469
1469
  * Optional. One value per output group.
1470
1470
  *
1471
1471
  * Complete this field only if you are completing Base URL manifest A, and the downstream system has notified you that the child manifest files for pipeline 1 of all outputs are in a location different from the child manifest files for pipeline 0.
1472
1472
  * @public
1473
1473
  */
1474
- BaseUrlManifest1?: string;
1474
+ BaseUrlManifest1?: string | undefined;
1475
1475
  /**
1476
1476
  * Mapping of up to 4 caption channels to caption languages. Is only meaningful if captionLanguageSetting is set to "insert".
1477
1477
  * @public
1478
1478
  */
1479
- CaptionLanguageMappings?: CaptionLanguageMapping[];
1479
+ CaptionLanguageMappings?: CaptionLanguageMapping[] | undefined;
1480
1480
  /**
1481
1481
  * Applies only to 608 Embedded output captions.
1482
1482
  * insert: Include CLOSED-CAPTIONS lines in the manifest. Specify at least one language in the CC1 Language Code field. One CLOSED-CAPTION line is added for each Language Code you specify. Make sure to specify the languages in the order in which they appear in the original source (if the source is embedded format) or the order of the caption selectors (if the source is other than embedded). Otherwise, languages in the manifest will not match up properly with the output captions.
@@ -1484,22 +1484,22 @@ export interface HlsGroupSettings {
1484
1484
  * omit: Omit any CLOSED-CAPTIONS line from the manifest.
1485
1485
  * @public
1486
1486
  */
1487
- CaptionLanguageSetting?: HlsCaptionLanguageSetting;
1487
+ CaptionLanguageSetting?: HlsCaptionLanguageSetting | undefined;
1488
1488
  /**
1489
1489
  * 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.
1490
1490
  * @public
1491
1491
  */
1492
- ClientCache?: HlsClientCache;
1492
+ ClientCache?: HlsClientCache | undefined;
1493
1493
  /**
1494
1494
  * Specification to use (RFC-6381 or the default RFC-4281) during m3u8 playlist generation.
1495
1495
  * @public
1496
1496
  */
1497
- CodecSpecification?: HlsCodecSpecification;
1497
+ CodecSpecification?: HlsCodecSpecification | undefined;
1498
1498
  /**
1499
1499
  * 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.
1500
1500
  * @public
1501
1501
  */
1502
- ConstantIv?: string;
1502
+ ConstantIv?: string | undefined;
1503
1503
  /**
1504
1504
  * A directory or HTTP destination for the HLS segments, manifest files, and encryption keys (if enabled).
1505
1505
  * @public
@@ -1509,65 +1509,65 @@ export interface HlsGroupSettings {
1509
1509
  * Place segments in subdirectories.
1510
1510
  * @public
1511
1511
  */
1512
- DirectoryStructure?: HlsDirectoryStructure;
1512
+ DirectoryStructure?: HlsDirectoryStructure | undefined;
1513
1513
  /**
1514
1514
  * Specifies whether to insert EXT-X-DISCONTINUITY tags in the HLS child manifests for this output group.
1515
1515
  * Typically, choose Insert because these tags are required in the manifest (according to the HLS specification) and serve an important purpose.
1516
1516
  * 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.
1517
1517
  * @public
1518
1518
  */
1519
- DiscontinuityTags?: HlsDiscontinuityTags;
1519
+ DiscontinuityTags?: HlsDiscontinuityTags | undefined;
1520
1520
  /**
1521
1521
  * Encrypts the segments with the given encryption scheme. Exclude this parameter if no encryption is desired.
1522
1522
  * @public
1523
1523
  */
1524
- EncryptionType?: HlsEncryptionType;
1524
+ EncryptionType?: HlsEncryptionType | undefined;
1525
1525
  /**
1526
1526
  * Parameters that control interactions with the CDN.
1527
1527
  * @public
1528
1528
  */
1529
- HlsCdnSettings?: HlsCdnSettings;
1529
+ HlsCdnSettings?: HlsCdnSettings | undefined;
1530
1530
  /**
1531
1531
  * State of HLS ID3 Segment Tagging
1532
1532
  * @public
1533
1533
  */
1534
- HlsId3SegmentTagging?: HlsId3SegmentTaggingState;
1534
+ HlsId3SegmentTagging?: HlsId3SegmentTaggingState | undefined;
1535
1535
  /**
1536
1536
  * DISABLED: Do not create an I-frame-only manifest, but do create the master and media manifests (according to the Output Selection field).
1537
1537
  *
1538
1538
  * 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"
1539
1539
  * @public
1540
1540
  */
1541
- IFrameOnlyPlaylists?: IFrameOnlyPlaylistType;
1541
+ IFrameOnlyPlaylists?: IFrameOnlyPlaylistType | undefined;
1542
1542
  /**
1543
1543
  * 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.
1544
1544
  * Auto means that MediaLive decides whether to include the final segment, depending on the channel class and the types of output groups.
1545
1545
  * Suppress means to never include the incomplete segment. We recommend you choose Auto and let MediaLive control the behavior.
1546
1546
  * @public
1547
1547
  */
1548
- IncompleteSegmentBehavior?: HlsIncompleteSegmentBehavior;
1548
+ IncompleteSegmentBehavior?: HlsIncompleteSegmentBehavior | undefined;
1549
1549
  /**
1550
1550
  * Applies only if Mode field is LIVE.
1551
1551
  *
1552
1552
  * Specifies the maximum number of segments in the media manifest file. After this maximum, older segments are removed from the media manifest. This number must be smaller than the number in the Keep Segments field.
1553
1553
  * @public
1554
1554
  */
1555
- IndexNSegments?: number;
1555
+ IndexNSegments?: number | undefined;
1556
1556
  /**
1557
1557
  * Parameter that control output group behavior on input loss.
1558
1558
  * @public
1559
1559
  */
1560
- InputLossAction?: InputLossActionForHlsOut;
1560
+ InputLossAction?: InputLossActionForHlsOut | undefined;
1561
1561
  /**
1562
1562
  * 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.
1563
1563
  * @public
1564
1564
  */
1565
- IvInManifest?: HlsIvInManifest;
1565
+ IvInManifest?: HlsIvInManifest | undefined;
1566
1566
  /**
1567
1567
  * 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.
1568
1568
  * @public
1569
1569
  */
1570
- IvSource?: HlsIvSource;
1570
+ IvSource?: HlsIvSource | undefined;
1571
1571
  /**
1572
1572
  * Applies only if Mode field is LIVE.
1573
1573
  *
@@ -1576,44 +1576,44 @@ export interface HlsGroupSettings {
1576
1576
  * If this "keep segments" number is too low, the following might happen: the player is still reading a media manifest file that lists this segment, but that segment has been removed from the destination directory (as directed by indexNSegments). This situation would result in a 404 HTTP error on the player.
1577
1577
  * @public
1578
1578
  */
1579
- KeepSegments?: number;
1579
+ KeepSegments?: number | undefined;
1580
1580
  /**
1581
1581
  * The value specifies how the key is represented in the resource identified by the URI. If parameter is absent, an implicit value of "identity" is used. A reverse DNS string can also be given.
1582
1582
  * @public
1583
1583
  */
1584
- KeyFormat?: string;
1584
+ KeyFormat?: string | undefined;
1585
1585
  /**
1586
1586
  * Either a single positive integer version value or a slash delimited list of version values (1/2/3).
1587
1587
  * @public
1588
1588
  */
1589
- KeyFormatVersions?: string;
1589
+ KeyFormatVersions?: string | undefined;
1590
1590
  /**
1591
1591
  * The key provider settings.
1592
1592
  * @public
1593
1593
  */
1594
- KeyProviderSettings?: KeyProviderSettings;
1594
+ KeyProviderSettings?: KeyProviderSettings | undefined;
1595
1595
  /**
1596
1596
  * When set to gzip, compresses HLS playlist.
1597
1597
  * @public
1598
1598
  */
1599
- ManifestCompression?: HlsManifestCompression;
1599
+ ManifestCompression?: HlsManifestCompression | undefined;
1600
1600
  /**
1601
1601
  * Indicates whether the output manifest should use floating point or integer values for segment duration.
1602
1602
  * @public
1603
1603
  */
1604
- ManifestDurationFormat?: HlsManifestDurationFormat;
1604
+ ManifestDurationFormat?: HlsManifestDurationFormat | undefined;
1605
1605
  /**
1606
1606
  * 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.
1607
1607
  * @public
1608
1608
  */
1609
- MinSegmentLength?: number;
1609
+ MinSegmentLength?: number | undefined;
1610
1610
  /**
1611
1611
  * If "vod", all segments are indexed and kept permanently in the destination and manifest. If "live", only the number segments specified in keepSegments and indexNSegments are kept; newer segments replace older segments, which may prevent players from rewinding all the way to the beginning of the event.
1612
1612
  *
1613
1613
  * 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.
1614
1614
  * @public
1615
1615
  */
1616
- Mode?: HlsMode;
1616
+ Mode?: HlsMode | undefined;
1617
1617
  /**
1618
1618
  * MANIFESTS_AND_SEGMENTS: Generates manifests (master manifest, if applicable, and media manifests) for this output group.
1619
1619
  *
@@ -1622,12 +1622,12 @@ export interface HlsGroupSettings {
1622
1622
  * SEGMENTS_ONLY: Does not generate any manifests for this output group.
1623
1623
  * @public
1624
1624
  */
1625
- OutputSelection?: HlsOutputSelection;
1625
+ OutputSelection?: HlsOutputSelection | undefined;
1626
1626
  /**
1627
1627
  * Includes or excludes EXT-X-PROGRAM-DATE-TIME tag in .m3u8 manifest files. The value is calculated using the program date time clock.
1628
1628
  * @public
1629
1629
  */
1630
- ProgramDateTime?: HlsProgramDateTime;
1630
+ ProgramDateTime?: HlsProgramDateTime | undefined;
1631
1631
  /**
1632
1632
  * Specifies the algorithm used to drive the HLS EXT-X-PROGRAM-DATE-TIME clock. Options include:
1633
1633
  *
@@ -1636,12 +1636,12 @@ export interface HlsGroupSettings {
1636
1636
  * 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.
1637
1637
  * @public
1638
1638
  */
1639
- ProgramDateTimeClock?: HlsProgramDateTimeClock;
1639
+ ProgramDateTimeClock?: HlsProgramDateTimeClock | undefined;
1640
1640
  /**
1641
1641
  * Period of insertion of EXT-X-PROGRAM-DATE-TIME entry, in seconds.
1642
1642
  * @public
1643
1643
  */
1644
- ProgramDateTimePeriod?: number;
1644
+ ProgramDateTimePeriod?: number | undefined;
1645
1645
  /**
1646
1646
  * ENABLED: The master manifest (.m3u8 file) for each pipeline includes information about both pipelines: first its own media files, then the media files of the other pipeline. This feature allows playout device that support stale manifest detection to switch from one manifest to the other, when the current manifest seems to be stale. There are still two destinations and two master manifests, but both master manifests reference the media files from both pipelines.
1647
1647
  *
@@ -1650,49 +1650,49 @@ export interface HlsGroupSettings {
1650
1650
  * 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.
1651
1651
  * @public
1652
1652
  */
1653
- RedundantManifest?: HlsRedundantManifest;
1653
+ RedundantManifest?: HlsRedundantManifest | undefined;
1654
1654
  /**
1655
1655
  * 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.
1656
1656
  * @public
1657
1657
  */
1658
- SegmentLength?: number;
1658
+ SegmentLength?: number | undefined;
1659
1659
  /**
1660
1660
  * useInputSegmentation has been deprecated. The configured segment size is always used.
1661
1661
  * @public
1662
1662
  */
1663
- SegmentationMode?: HlsSegmentationMode;
1663
+ SegmentationMode?: HlsSegmentationMode | undefined;
1664
1664
  /**
1665
1665
  * Number of segments to write to a subdirectory before starting a new one. directoryStructure must be subdirectoryPerStream for this setting to have an effect.
1666
1666
  * @public
1667
1667
  */
1668
- SegmentsPerSubdirectory?: number;
1668
+ SegmentsPerSubdirectory?: number | undefined;
1669
1669
  /**
1670
1670
  * Include or exclude RESOLUTION attribute for video in EXT-X-STREAM-INF tag of variant manifest.
1671
1671
  * @public
1672
1672
  */
1673
- StreamInfResolution?: HlsStreamInfResolution;
1673
+ StreamInfResolution?: HlsStreamInfResolution | undefined;
1674
1674
  /**
1675
1675
  * Indicates ID3 frame that has the timecode.
1676
1676
  * @public
1677
1677
  */
1678
- TimedMetadataId3Frame?: HlsTimedMetadataId3Frame;
1678
+ TimedMetadataId3Frame?: HlsTimedMetadataId3Frame | undefined;
1679
1679
  /**
1680
1680
  * Timed Metadata interval in seconds.
1681
1681
  * @public
1682
1682
  */
1683
- TimedMetadataId3Period?: number;
1683
+ TimedMetadataId3Period?: number | undefined;
1684
1684
  /**
1685
1685
  * Provides an extra millisecond delta offset to fine tune the timestamps.
1686
1686
  * @public
1687
1687
  */
1688
- TimestampDeltaMilliseconds?: number;
1688
+ TimestampDeltaMilliseconds?: number | undefined;
1689
1689
  /**
1690
1690
  * SEGMENTED_FILES: Emit the program as segments - multiple .ts media files.
1691
1691
  *
1692
1692
  * 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.
1693
1693
  * @public
1694
1694
  */
1695
- TsFileMode?: HlsTsFileMode;
1695
+ TsFileMode?: HlsTsFileMode | undefined;
1696
1696
  }
1697
1697
  /**
1698
1698
  * Media Package Group Settings
@@ -1824,22 +1824,22 @@ export interface MsSmoothGroupSettings {
1824
1824
  * The ID to include in each message in the sparse track. Ignored if sparseTrackType is NONE.
1825
1825
  * @public
1826
1826
  */
1827
- AcquisitionPointId?: string;
1827
+ AcquisitionPointId?: string | undefined;
1828
1828
  /**
1829
1829
  * 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.
1830
1830
  * @public
1831
1831
  */
1832
- AudioOnlyTimecodeControl?: SmoothGroupAudioOnlyTimecodeControl;
1832
+ AudioOnlyTimecodeControl?: SmoothGroupAudioOnlyTimecodeControl | undefined;
1833
1833
  /**
1834
1834
  * 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.
1835
1835
  * @public
1836
1836
  */
1837
- CertificateMode?: SmoothGroupCertificateMode;
1837
+ CertificateMode?: SmoothGroupCertificateMode | undefined;
1838
1838
  /**
1839
1839
  * 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.
1840
1840
  * @public
1841
1841
  */
1842
- ConnectionRetryInterval?: number;
1842
+ ConnectionRetryInterval?: number | undefined;
1843
1843
  /**
1844
1844
  * Smooth Streaming publish point on an IIS server. Elemental Live acts as a "Push" encoder to IIS.
1845
1845
  * @public
@@ -1851,7 +1851,7 @@ export interface MsSmoothGroupSettings {
1851
1851
  * Should only be specified if eventIdMode is set to useConfigured.
1852
1852
  * @public
1853
1853
  */
1854
- EventId?: string;
1854
+ EventId?: string | undefined;
1855
1855
  /**
1856
1856
  * Specifies whether or not to send an event ID to the IIS server. If no event ID is sent and the same Live Event is used without changing the publishing point, clients might see cached video from the previous run.
1857
1857
  *
@@ -1861,47 +1861,47 @@ export interface MsSmoothGroupSettings {
1861
1861
  * - "noEventId" - do not send an event ID to the IIS server.
1862
1862
  * @public
1863
1863
  */
1864
- EventIdMode?: SmoothGroupEventIdMode;
1864
+ EventIdMode?: SmoothGroupEventIdMode | undefined;
1865
1865
  /**
1866
1866
  * When set to sendEos, send EOS signal to IIS server when stopping the event
1867
1867
  * @public
1868
1868
  */
1869
- EventStopBehavior?: SmoothGroupEventStopBehavior;
1869
+ EventStopBehavior?: SmoothGroupEventStopBehavior | undefined;
1870
1870
  /**
1871
1871
  * Size in seconds of file cache for streaming outputs.
1872
1872
  * @public
1873
1873
  */
1874
- FilecacheDuration?: number;
1874
+ FilecacheDuration?: number | undefined;
1875
1875
  /**
1876
1876
  * Length of mp4 fragments to generate (in seconds). Fragment length must be compatible with GOP size and framerate.
1877
1877
  * @public
1878
1878
  */
1879
- FragmentLength?: number;
1879
+ FragmentLength?: number | undefined;
1880
1880
  /**
1881
1881
  * Parameter that control output group behavior on input loss.
1882
1882
  * @public
1883
1883
  */
1884
- InputLossAction?: InputLossActionForMsSmoothOut;
1884
+ InputLossAction?: InputLossActionForMsSmoothOut | undefined;
1885
1885
  /**
1886
1886
  * Number of retry attempts.
1887
1887
  * @public
1888
1888
  */
1889
- NumRetries?: number;
1889
+ NumRetries?: number | undefined;
1890
1890
  /**
1891
1891
  * Number of seconds before initiating a restart due to output failure, due to exhausting the numRetries on one segment, or exceeding filecacheDuration.
1892
1892
  * @public
1893
1893
  */
1894
- RestartDelay?: number;
1894
+ RestartDelay?: number | undefined;
1895
1895
  /**
1896
1896
  * useInputSegmentation has been deprecated. The configured segment size is always used.
1897
1897
  * @public
1898
1898
  */
1899
- SegmentationMode?: SmoothGroupSegmentationMode;
1899
+ SegmentationMode?: SmoothGroupSegmentationMode | undefined;
1900
1900
  /**
1901
1901
  * Number of milliseconds to delay the output from the second pipeline.
1902
1902
  * @public
1903
1903
  */
1904
- SendDelayMs?: number;
1904
+ SendDelayMs?: number | undefined;
1905
1905
  /**
1906
1906
  * Identifies the type of data to place in the sparse track:
1907
1907
  * - SCTE35: Insert SCTE-35 messages from the source content. With each message, insert an IDR frame to start a new segment.
@@ -1909,24 +1909,24 @@ export interface MsSmoothGroupSettings {
1909
1909
  * - NONE: Don't generate a sparse track for any outputs in this output group.
1910
1910
  * @public
1911
1911
  */
1912
- SparseTrackType?: SmoothGroupSparseTrackType;
1912
+ SparseTrackType?: SmoothGroupSparseTrackType | undefined;
1913
1913
  /**
1914
1914
  * When set to send, send stream manifest so publishing point doesn't start until all streams start.
1915
1915
  * @public
1916
1916
  */
1917
- StreamManifestBehavior?: SmoothGroupStreamManifestBehavior;
1917
+ StreamManifestBehavior?: SmoothGroupStreamManifestBehavior | undefined;
1918
1918
  /**
1919
1919
  * Timestamp offset for the event. Only used if timestampOffsetMode is set to useConfiguredOffset.
1920
1920
  * @public
1921
1921
  */
1922
- TimestampOffset?: string;
1922
+ TimestampOffset?: string | undefined;
1923
1923
  /**
1924
1924
  * Type of timestamp date offset to use.
1925
1925
  * - useEventStartDate: Use the date the event was started as the offset
1926
1926
  * - useConfiguredOffset: Use an explicitly configured date as the offset
1927
1927
  * @public
1928
1928
  */
1929
- TimestampOffsetMode?: SmoothGroupTimestampOffsetMode;
1929
+ TimestampOffsetMode?: SmoothGroupTimestampOffsetMode | undefined;
1930
1930
  }
1931
1931
  /**
1932
1932
  * Multiplex Group Settings
@@ -2016,27 +2016,27 @@ export interface RtmpGroupSettings {
2016
2016
  * 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.
2017
2017
  * @public
2018
2018
  */
2019
- AdMarkers?: RtmpAdMarkers[];
2019
+ AdMarkers?: RtmpAdMarkers[] | undefined;
2020
2020
  /**
2021
2021
  * Authentication scheme to use when connecting with CDN
2022
2022
  * @public
2023
2023
  */
2024
- AuthenticationScheme?: AuthenticationScheme;
2024
+ AuthenticationScheme?: AuthenticationScheme | undefined;
2025
2025
  /**
2026
2026
  * 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.
2027
2027
  * @public
2028
2028
  */
2029
- CacheFullBehavior?: RtmpCacheFullBehavior;
2029
+ CacheFullBehavior?: RtmpCacheFullBehavior | undefined;
2030
2030
  /**
2031
2031
  * Cache length, in seconds, is used to calculate buffer size.
2032
2032
  * @public
2033
2033
  */
2034
- CacheLength?: number;
2034
+ CacheLength?: number | undefined;
2035
2035
  /**
2036
2036
  * 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.
2037
2037
  * @public
2038
2038
  */
2039
- CaptionData?: RtmpCaptionData;
2039
+ CaptionData?: RtmpCaptionData | undefined;
2040
2040
  /**
2041
2041
  * Controls the behavior of this RTMP group if input becomes unavailable.
2042
2042
  *
@@ -2044,17 +2044,17 @@ export interface RtmpGroupSettings {
2044
2044
  * - pauseOutput: Stop transmitting data until input returns. This does not close the underlying RTMP connection.
2045
2045
  * @public
2046
2046
  */
2047
- InputLossAction?: InputLossActionForRtmpOut;
2047
+ InputLossAction?: InputLossActionForRtmpOut | undefined;
2048
2048
  /**
2049
2049
  * If a streaming output fails, number of seconds to wait until a restart is initiated. A value of 0 means never restart.
2050
2050
  * @public
2051
2051
  */
2052
- RestartDelay?: number;
2052
+ RestartDelay?: number | undefined;
2053
2053
  /**
2054
2054
  * 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.
2055
2055
  * @public
2056
2056
  */
2057
- IncludeFillerNalUnits?: IncludeFillerNalUnits;
2057
+ IncludeFillerNalUnits?: IncludeFillerNalUnits | undefined;
2058
2058
  }
2059
2059
  /**
2060
2060
  * @public
@@ -2078,7 +2078,7 @@ export interface SrtGroupSettings {
2078
2078
  * 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.
2079
2079
  * @public
2080
2080
  */
2081
- InputLossAction?: InputLossActionForUdpOut;
2081
+ InputLossAction?: InputLossActionForUdpOut | undefined;
2082
2082
  }
2083
2083
  /**
2084
2084
  * @public
@@ -2102,17 +2102,17 @@ export interface UdpGroupSettings {
2102
2102
  * 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.
2103
2103
  * @public
2104
2104
  */
2105
- InputLossAction?: InputLossActionForUdpOut;
2105
+ InputLossAction?: InputLossActionForUdpOut | undefined;
2106
2106
  /**
2107
2107
  * Indicates ID3 frame that has the timecode.
2108
2108
  * @public
2109
2109
  */
2110
- TimedMetadataId3Frame?: UdpTimedMetadataId3Frame;
2110
+ TimedMetadataId3Frame?: UdpTimedMetadataId3Frame | undefined;
2111
2111
  /**
2112
2112
  * Timed Metadata interval in seconds.
2113
2113
  * @public
2114
2114
  */
2115
- TimedMetadataId3Period?: number;
2115
+ TimedMetadataId3Period?: number | undefined;
2116
2116
  }
2117
2117
  /**
2118
2118
  * Output Group Settings
@@ -2123,52 +2123,52 @@ export interface OutputGroupSettings {
2123
2123
  * Archive Group Settings
2124
2124
  * @public
2125
2125
  */
2126
- ArchiveGroupSettings?: ArchiveGroupSettings;
2126
+ ArchiveGroupSettings?: ArchiveGroupSettings | undefined;
2127
2127
  /**
2128
2128
  * Frame Capture Group Settings
2129
2129
  * @public
2130
2130
  */
2131
- FrameCaptureGroupSettings?: FrameCaptureGroupSettings;
2131
+ FrameCaptureGroupSettings?: FrameCaptureGroupSettings | undefined;
2132
2132
  /**
2133
2133
  * Hls Group Settings
2134
2134
  * @public
2135
2135
  */
2136
- HlsGroupSettings?: HlsGroupSettings;
2136
+ HlsGroupSettings?: HlsGroupSettings | undefined;
2137
2137
  /**
2138
2138
  * Media Package Group Settings
2139
2139
  * @public
2140
2140
  */
2141
- MediaPackageGroupSettings?: MediaPackageGroupSettings;
2141
+ MediaPackageGroupSettings?: MediaPackageGroupSettings | undefined;
2142
2142
  /**
2143
2143
  * Ms Smooth Group Settings
2144
2144
  * @public
2145
2145
  */
2146
- MsSmoothGroupSettings?: MsSmoothGroupSettings;
2146
+ MsSmoothGroupSettings?: MsSmoothGroupSettings | undefined;
2147
2147
  /**
2148
2148
  * Multiplex Group Settings
2149
2149
  * @public
2150
2150
  */
2151
- MultiplexGroupSettings?: MultiplexGroupSettings;
2151
+ MultiplexGroupSettings?: MultiplexGroupSettings | undefined;
2152
2152
  /**
2153
2153
  * Rtmp Group Settings
2154
2154
  * @public
2155
2155
  */
2156
- RtmpGroupSettings?: RtmpGroupSettings;
2156
+ RtmpGroupSettings?: RtmpGroupSettings | undefined;
2157
2157
  /**
2158
2158
  * Udp Group Settings
2159
2159
  * @public
2160
2160
  */
2161
- UdpGroupSettings?: UdpGroupSettings;
2161
+ UdpGroupSettings?: UdpGroupSettings | undefined;
2162
2162
  /**
2163
2163
  * Cmaf Ingest Group Settings
2164
2164
  * @public
2165
2165
  */
2166
- CmafIngestGroupSettings?: CmafIngestGroupSettings;
2166
+ CmafIngestGroupSettings?: CmafIngestGroupSettings | undefined;
2167
2167
  /**
2168
2168
  * Srt Group Settings
2169
2169
  * @public
2170
2170
  */
2171
- SrtGroupSettings?: SrtGroupSettings;
2171
+ SrtGroupSettings?: SrtGroupSettings | undefined;
2172
2172
  }
2173
2173
  /**
2174
2174
  * Output groups for this Live Event. Output groups contain information about where streams should be distributed.
@@ -2179,7 +2179,7 @@ export interface OutputGroup {
2179
2179
  * Custom output group name optionally defined by the user.
2180
2180
  * @public
2181
2181
  */
2182
- Name?: string;
2182
+ Name?: string | undefined;
2183
2183
  /**
2184
2184
  * Settings associated with the output group.
2185
2185
  * @public
@@ -2200,27 +2200,27 @@ export interface PipelineDetail {
2200
2200
  * The name of the active input attachment currently being ingested by this pipeline.
2201
2201
  * @public
2202
2202
  */
2203
- ActiveInputAttachmentName?: string;
2203
+ ActiveInputAttachmentName?: string | undefined;
2204
2204
  /**
2205
2205
  * The name of the input switch schedule action that occurred most recently and that resulted in the switch to the current input attachment for this pipeline.
2206
2206
  * @public
2207
2207
  */
2208
- ActiveInputSwitchActionName?: string;
2208
+ ActiveInputSwitchActionName?: string | undefined;
2209
2209
  /**
2210
2210
  * The name of the motion graphics activate action that occurred most recently and that resulted in the current graphics URI for this pipeline.
2211
2211
  * @public
2212
2212
  */
2213
- ActiveMotionGraphicsActionName?: string;
2213
+ ActiveMotionGraphicsActionName?: string | undefined;
2214
2214
  /**
2215
2215
  * The current URI being used for HTML5 motion graphics for this pipeline.
2216
2216
  * @public
2217
2217
  */
2218
- ActiveMotionGraphicsUri?: string;
2218
+ ActiveMotionGraphicsUri?: string | undefined;
2219
2219
  /**
2220
2220
  * Pipeline ID
2221
2221
  * @public
2222
2222
  */
2223
- PipelineId?: string;
2223
+ PipelineId?: string | undefined;
2224
2224
  }
2225
2225
  /**
2226
2226
  * @public
@@ -2267,12 +2267,12 @@ export interface RenewalSettings {
2267
2267
  * Automatic renewal status for the reservation
2268
2268
  * @public
2269
2269
  */
2270
- AutomaticRenewal?: ReservationAutomaticRenewal;
2270
+ AutomaticRenewal?: ReservationAutomaticRenewal | undefined;
2271
2271
  /**
2272
2272
  * Count for the reservation renewal
2273
2273
  * @public
2274
2274
  */
2275
- RenewalCount?: number;
2275
+ RenewalCount?: number | undefined;
2276
2276
  }
2277
2277
  /**
2278
2278
  * @public
@@ -2297,97 +2297,97 @@ export interface Reservation {
2297
2297
  * Unique reservation ARN, e.g. 'arn:aws:medialive:us-west-2:123456789012:reservation:1234567'
2298
2298
  * @public
2299
2299
  */
2300
- Arn?: string;
2300
+ Arn?: string | undefined;
2301
2301
  /**
2302
2302
  * Number of reserved resources
2303
2303
  * @public
2304
2304
  */
2305
- Count?: number;
2305
+ Count?: number | undefined;
2306
2306
  /**
2307
2307
  * Currency code for usagePrice and fixedPrice in ISO-4217 format, e.g. 'USD'
2308
2308
  * @public
2309
2309
  */
2310
- CurrencyCode?: string;
2310
+ CurrencyCode?: string | undefined;
2311
2311
  /**
2312
2312
  * Lease duration, e.g. '12'
2313
2313
  * @public
2314
2314
  */
2315
- Duration?: number;
2315
+ Duration?: number | undefined;
2316
2316
  /**
2317
2317
  * Units for duration, e.g. 'MONTHS'
2318
2318
  * @public
2319
2319
  */
2320
- DurationUnits?: OfferingDurationUnits;
2320
+ DurationUnits?: OfferingDurationUnits | undefined;
2321
2321
  /**
2322
2322
  * Reservation UTC end date and time in ISO-8601 format, e.g. '2019-03-01T00:00:00'
2323
2323
  * @public
2324
2324
  */
2325
- End?: string;
2325
+ End?: string | undefined;
2326
2326
  /**
2327
2327
  * One-time charge for each reserved resource, e.g. '0.0' for a NO_UPFRONT offering
2328
2328
  * @public
2329
2329
  */
2330
- FixedPrice?: number;
2330
+ FixedPrice?: number | undefined;
2331
2331
  /**
2332
2332
  * User specified reservation name
2333
2333
  * @public
2334
2334
  */
2335
- Name?: string;
2335
+ Name?: string | undefined;
2336
2336
  /**
2337
2337
  * Offering description, e.g. 'HD AVC output at 10-20 Mbps, 30 fps, and standard VQ in US West (Oregon)'
2338
2338
  * @public
2339
2339
  */
2340
- OfferingDescription?: string;
2340
+ OfferingDescription?: string | undefined;
2341
2341
  /**
2342
2342
  * Unique offering ID, e.g. '87654321'
2343
2343
  * @public
2344
2344
  */
2345
- OfferingId?: string;
2345
+ OfferingId?: string | undefined;
2346
2346
  /**
2347
2347
  * Offering type, e.g. 'NO_UPFRONT'
2348
2348
  * @public
2349
2349
  */
2350
- OfferingType?: OfferingType;
2350
+ OfferingType?: OfferingType | undefined;
2351
2351
  /**
2352
2352
  * AWS region, e.g. 'us-west-2'
2353
2353
  * @public
2354
2354
  */
2355
- Region?: string;
2355
+ Region?: string | undefined;
2356
2356
  /**
2357
2357
  * Renewal settings for the reservation
2358
2358
  * @public
2359
2359
  */
2360
- RenewalSettings?: RenewalSettings;
2360
+ RenewalSettings?: RenewalSettings | undefined;
2361
2361
  /**
2362
2362
  * Unique reservation ID, e.g. '1234567'
2363
2363
  * @public
2364
2364
  */
2365
- ReservationId?: string;
2365
+ ReservationId?: string | undefined;
2366
2366
  /**
2367
2367
  * Resource configuration details
2368
2368
  * @public
2369
2369
  */
2370
- ResourceSpecification?: ReservationResourceSpecification;
2370
+ ResourceSpecification?: ReservationResourceSpecification | undefined;
2371
2371
  /**
2372
2372
  * Reservation UTC start date and time in ISO-8601 format, e.g. '2018-03-01T00:00:00'
2373
2373
  * @public
2374
2374
  */
2375
- Start?: string;
2375
+ Start?: string | undefined;
2376
2376
  /**
2377
2377
  * Current state of reservation, e.g. 'ACTIVE'
2378
2378
  * @public
2379
2379
  */
2380
- State?: ReservationState;
2380
+ State?: ReservationState | undefined;
2381
2381
  /**
2382
2382
  * A collection of key-value pairs
2383
2383
  * @public
2384
2384
  */
2385
- Tags?: Record<string, string>;
2385
+ Tags?: Record<string, string> | undefined;
2386
2386
  /**
2387
2387
  * Recurring usage charge for each reserved resource, e.g. '157.0'
2388
2388
  * @public
2389
2389
  */
2390
- UsagePrice?: number;
2390
+ UsagePrice?: number | undefined;
2391
2391
  }
2392
2392
  /**
2393
2393
  * Used in CreateNetworkRequest.
@@ -2398,12 +2398,12 @@ export interface RouteCreateRequest {
2398
2398
  * A CIDR block for one Route.
2399
2399
  * @public
2400
2400
  */
2401
- Cidr?: string;
2401
+ Cidr?: string | undefined;
2402
2402
  /**
2403
2403
  * The IP address of the Gateway for this route, if applicable.
2404
2404
  * @public
2405
2405
  */
2406
- Gateway?: string;
2406
+ Gateway?: string | undefined;
2407
2407
  }
2408
2408
  /**
2409
2409
  * Used in UpdateNetworkRequest.
@@ -2414,12 +2414,12 @@ export interface RouteUpdateRequest {
2414
2414
  * A CIDR block for one Route.
2415
2415
  * @public
2416
2416
  */
2417
- Cidr?: string;
2417
+ Cidr?: string | undefined;
2418
2418
  /**
2419
2419
  * The IP address of the Gateway for this route, if applicable.
2420
2420
  * @public
2421
2421
  */
2422
- Gateway?: string;
2422
+ Gateway?: string | undefined;
2423
2423
  }
2424
2424
  /**
2425
2425
  * Settings for the action to insert a user-defined ID3 tag in each HLS segment
@@ -2430,12 +2430,12 @@ export interface HlsId3SegmentTaggingScheduleActionSettings {
2430
2430
  * ID3 tag to insert into each segment. Supports special keyword identifiers to substitute in segment-related values.\nSupported keyword identifiers: https://docs.aws.amazon.com/medialive/latest/ug/variable-data-identifiers.html
2431
2431
  * @public
2432
2432
  */
2433
- Tag?: string;
2433
+ Tag?: string | undefined;
2434
2434
  /**
2435
2435
  * Base64 string formatted according to the ID3 specification: http://id3.org/id3v2.4.0-structure
2436
2436
  * @public
2437
2437
  */
2438
- Id3?: string;
2438
+ Id3?: string | undefined;
2439
2439
  }
2440
2440
  /**
2441
2441
  * Settings for the action to emit HLS metadata
@@ -2469,7 +2469,7 @@ export interface StartTimecode {
2469
2469
  * The timecode for the frame where you want to start the clip. Optional; if not specified, the clip starts at first frame in the file. Enter the timecode as HH:MM:SS:FF or HH:MM:SS;FF.
2470
2470
  * @public
2471
2471
  */
2472
- Timecode?: string;
2472
+ Timecode?: string | undefined;
2473
2473
  }
2474
2474
  /**
2475
2475
  * @public
@@ -2492,12 +2492,12 @@ export interface StopTimecode {
2492
2492
  * 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.
2493
2493
  * @public
2494
2494
  */
2495
- LastFrameClippingBehavior?: LastFrameClippingBehavior;
2495
+ LastFrameClippingBehavior?: LastFrameClippingBehavior | undefined;
2496
2496
  /**
2497
2497
  * 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.
2498
2498
  * @public
2499
2499
  */
2500
- Timecode?: string;
2500
+ Timecode?: string | undefined;
2501
2501
  }
2502
2502
  /**
2503
2503
  * Settings to let you create a clip of the file input, in order to set up the input to ingest only a portion of the file.
@@ -2513,12 +2513,12 @@ export interface InputClippingSettings {
2513
2513
  * Settings to identify the start of the clip.
2514
2514
  * @public
2515
2515
  */
2516
- StartTimecode?: StartTimecode;
2516
+ StartTimecode?: StartTimecode | undefined;
2517
2517
  /**
2518
2518
  * Settings to identify the end of the clip.
2519
2519
  * @public
2520
2520
  */
2521
- StopTimecode?: StopTimecode;
2521
+ StopTimecode?: StopTimecode | undefined;
2522
2522
  }
2523
2523
  /**
2524
2524
  * Action to prepare an input for a future immediate input switch.
@@ -2529,17 +2529,17 @@ export interface InputPrepareScheduleActionSettings {
2529
2529
  * The name of the input attachment that should be prepared by this action. If no name is provided, the action will stop the most recent prepare (if any) when activated.
2530
2530
  * @public
2531
2531
  */
2532
- InputAttachmentNameReference?: string;
2532
+ InputAttachmentNameReference?: string | undefined;
2533
2533
  /**
2534
2534
  * Settings to let you create a clip of the file input, in order to set up the input to ingest only a portion of the file.
2535
2535
  * @public
2536
2536
  */
2537
- InputClippingSettings?: InputClippingSettings;
2537
+ InputClippingSettings?: InputClippingSettings | undefined;
2538
2538
  /**
2539
2539
  * The value for the variable portion of the URL for the dynamic input, for this instance of the input. Each time you use the same dynamic input in an input switch action, you can provide a different value, in order to connect the input to a different content source.
2540
2540
  * @public
2541
2541
  */
2542
- UrlPath?: string[];
2542
+ UrlPath?: string[] | undefined;
2543
2543
  }
2544
2544
  /**
2545
2545
  * Settings for the "switch input" action: to switch from ingesting one input to ingesting another input.
@@ -2555,12 +2555,12 @@ export interface InputSwitchScheduleActionSettings {
2555
2555
  * Settings to let you create a clip of the file input, in order to set up the input to ingest only a portion of the file.
2556
2556
  * @public
2557
2557
  */
2558
- InputClippingSettings?: InputClippingSettings;
2558
+ InputClippingSettings?: InputClippingSettings | undefined;
2559
2559
  /**
2560
2560
  * The value for the variable portion of the URL for the dynamic input, for this instance of the input. Each time you use the same dynamic input in an input switch action, you can provide a different value, in order to connect the input to a different content source.
2561
2561
  * @public
2562
2562
  */
2563
- UrlPath?: string[];
2563
+ UrlPath?: string[] | undefined;
2564
2564
  }
2565
2565
  /**
2566
2566
  * Settings to specify the rendering of motion graphics into the video stream.
@@ -2571,22 +2571,22 @@ export interface MotionGraphicsActivateScheduleActionSettings {
2571
2571
  * Duration (in milliseconds) that motion graphics should render on to the video stream. Leaving out this property or setting to 0 will result in rendering continuing until a deactivate action is processed.
2572
2572
  * @public
2573
2573
  */
2574
- Duration?: number;
2574
+ Duration?: number | undefined;
2575
2575
  /**
2576
2576
  * Key used to extract the password from EC2 Parameter store
2577
2577
  * @public
2578
2578
  */
2579
- PasswordParam?: string;
2579
+ PasswordParam?: string | undefined;
2580
2580
  /**
2581
2581
  * URI of the HTML5 content to be rendered into the live stream.
2582
2582
  * @public
2583
2583
  */
2584
- Url?: string;
2584
+ Url?: string | undefined;
2585
2585
  /**
2586
2586
  * Documentation update needed
2587
2587
  * @public
2588
2588
  */
2589
- Username?: string;
2589
+ Username?: string | undefined;
2590
2590
  }
2591
2591
  /**
2592
2592
  * Settings to specify the ending of rendering motion graphics into the video stream.
@@ -2603,7 +2603,7 @@ export interface PauseStateScheduleActionSettings {
2603
2603
  * Placeholder documentation for __listOfPipelinePauseStateSettings
2604
2604
  * @public
2605
2605
  */
2606
- Pipelines?: PipelinePauseStateSettings[];
2606
+ Pipelines?: PipelinePauseStateSettings[] | undefined;
2607
2607
  }
2608
2608
  /**
2609
2609
  * @public
@@ -2626,7 +2626,7 @@ export interface Scte35InputScheduleActionSettings {
2626
2626
  * In fixed mode, enter the name of the input attachment that you want to use as a SCTE-35 input. (Don't enter the ID of the input.)"
2627
2627
  * @public
2628
2628
  */
2629
- InputAttachmentNameReference?: string;
2629
+ InputAttachmentNameReference?: string | undefined;
2630
2630
  /**
2631
2631
  * Whether the SCTE-35 input should be the active input or a fixed input.
2632
2632
  * @public
@@ -2653,7 +2653,7 @@ export interface Scte35SpliceInsertScheduleActionSettings {
2653
2653
  * Optional, the duration for the splice_insert, in 90 KHz ticks. To convert seconds to ticks, multiple the seconds by 90,000. If you enter a duration, there is an expectation that the downstream system can read the duration and cue in at that time. If you do not enter a duration, the splice_insert will continue indefinitely and there is an expectation that you will enter a return_to_network to end the splice_insert at the appropriate time.
2654
2654
  * @public
2655
2655
  */
2656
- Duration?: number;
2656
+ Duration?: number | undefined;
2657
2657
  /**
2658
2658
  * The splice_event_id for the SCTE-35 splice_insert, as defined in SCTE-35.
2659
2659
  * @public
@@ -2757,12 +2757,12 @@ export interface Scte35SegmentationDescriptor {
2757
2757
  * Holds the four SCTE-35 delivery restriction parameters.
2758
2758
  * @public
2759
2759
  */
2760
- DeliveryRestrictions?: Scte35DeliveryRestrictions;
2760
+ DeliveryRestrictions?: Scte35DeliveryRestrictions | undefined;
2761
2761
  /**
2762
2762
  * Corresponds to SCTE-35 segment_num. A value that is valid for the specified segmentation_type_id.
2763
2763
  * @public
2764
2764
  */
2765
- SegmentNum?: number;
2765
+ SegmentNum?: number | undefined;
2766
2766
  /**
2767
2767
  * Corresponds to SCTE-35 segmentation_event_cancel_indicator.
2768
2768
  * @public
@@ -2772,7 +2772,7 @@ export interface Scte35SegmentationDescriptor {
2772
2772
  * 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.
2773
2773
  * @public
2774
2774
  */
2775
- SegmentationDuration?: number;
2775
+ SegmentationDuration?: number | undefined;
2776
2776
  /**
2777
2777
  * Corresponds to SCTE-35 segmentation_event_id.
2778
2778
  * @public
@@ -2782,32 +2782,32 @@ export interface Scte35SegmentationDescriptor {
2782
2782
  * Corresponds to SCTE-35 segmentation_type_id. One of the segmentation_type_id values listed in the SCTE-35 specification. On the console, enter the ID in decimal (for example, "52"). In the CLI, API, or an SDK, enter the ID in hex (for example, "0x34") or decimal (for example, "52").
2783
2783
  * @public
2784
2784
  */
2785
- SegmentationTypeId?: number;
2785
+ SegmentationTypeId?: number | undefined;
2786
2786
  /**
2787
2787
  * Corresponds to SCTE-35 segmentation_upid. Enter a string containing the hexadecimal representation of the characters that make up the SCTE-35 segmentation_upid value. Must contain an even number of hex characters. Do not include spaces between each hex pair. For example, the ASCII "ADS Information" becomes hex "41445320496e666f726d6174696f6e.
2788
2788
  * @public
2789
2789
  */
2790
- SegmentationUpid?: string;
2790
+ SegmentationUpid?: string | undefined;
2791
2791
  /**
2792
2792
  * Corresponds to SCTE-35 segmentation_upid_type. On the console, enter one of the types listed in the SCTE-35 specification, converted to a decimal. For example, "0x0C" hex from the specification is "12" in decimal. In the CLI, API, or an SDK, enter one of the types listed in the SCTE-35 specification, in either hex (for example, "0x0C" ) or in decimal (for example, "12").
2793
2793
  * @public
2794
2794
  */
2795
- SegmentationUpidType?: number;
2795
+ SegmentationUpidType?: number | undefined;
2796
2796
  /**
2797
2797
  * Corresponds to SCTE-35 segments_expected. A value that is valid for the specified segmentation_type_id.
2798
2798
  * @public
2799
2799
  */
2800
- SegmentsExpected?: number;
2800
+ SegmentsExpected?: number | undefined;
2801
2801
  /**
2802
2802
  * Corresponds to SCTE-35 sub_segment_num. A value that is valid for the specified segmentation_type_id.
2803
2803
  * @public
2804
2804
  */
2805
- SubSegmentNum?: number;
2805
+ SubSegmentNum?: number | undefined;
2806
2806
  /**
2807
2807
  * Corresponds to SCTE-35 sub_segments_expected. A value that is valid for the specified segmentation_type_id.
2808
2808
  * @public
2809
2809
  */
2810
- SubSegmentsExpected?: number;
2810
+ SubSegmentsExpected?: number | undefined;
2811
2811
  }
2812
2812
  /**
2813
2813
  * SCTE-35 Descriptor settings.
@@ -2851,22 +2851,22 @@ export interface StaticImageActivateScheduleActionSettings {
2851
2851
  * The duration in milliseconds for the image to remain on the video. If omitted or set to 0 the duration is unlimited and the image will remain until it is explicitly deactivated.
2852
2852
  * @public
2853
2853
  */
2854
- Duration?: number;
2854
+ Duration?: number | undefined;
2855
2855
  /**
2856
2856
  * The time in milliseconds for the image to fade in. The fade-in starts at the start time of the overlay. Default is 0 (no fade-in).
2857
2857
  * @public
2858
2858
  */
2859
- FadeIn?: number;
2859
+ FadeIn?: number | undefined;
2860
2860
  /**
2861
2861
  * Applies only if a duration is specified. The time in milliseconds for the image to fade out. The fade-out starts when the duration time is hit, so it effectively extends the duration. Default is 0 (no fade-out).
2862
2862
  * @public
2863
2863
  */
2864
- FadeOut?: number;
2864
+ FadeOut?: number | undefined;
2865
2865
  /**
2866
2866
  * The height of the image when inserted into the video, in pixels. The overlay will be scaled up or down to the specified height. Leave blank to use the native height of the overlay.
2867
2867
  * @public
2868
2868
  */
2869
- Height?: number;
2869
+ Height?: number | undefined;
2870
2870
  /**
2871
2871
  * The location and filename of the image file to overlay on the video. The file must be a 32-bit BMP, PNG, or TGA file, and must not be larger (in pixels) than the input video.
2872
2872
  * @public
@@ -2876,27 +2876,27 @@ export interface StaticImageActivateScheduleActionSettings {
2876
2876
  * Placement of the left edge of the overlay relative to the left edge of the video frame, in pixels. 0 (the default) is the left edge of the frame. If the placement causes the overlay to extend beyond the right edge of the underlying video, then the overlay is cropped on the right.
2877
2877
  * @public
2878
2878
  */
2879
- ImageX?: number;
2879
+ ImageX?: number | undefined;
2880
2880
  /**
2881
2881
  * Placement of the top edge of the overlay relative to the top edge of the video frame, in pixels. 0 (the default) is the top edge of the frame. If the placement causes the overlay to extend beyond the bottom edge of the underlying video, then the overlay is cropped on the bottom.
2882
2882
  * @public
2883
2883
  */
2884
- ImageY?: number;
2884
+ ImageY?: number | undefined;
2885
2885
  /**
2886
2886
  * The number of the layer, 0 to 7. There are 8 layers that can be overlaid on the video, each layer with a different image. The layers are in Z order, which means that overlays with higher values of layer are inserted on top of overlays with lower values of layer. Default is 0.
2887
2887
  * @public
2888
2888
  */
2889
- Layer?: number;
2889
+ Layer?: number | undefined;
2890
2890
  /**
2891
2891
  * Opacity of image where 0 is transparent and 100 is fully opaque. Default is 100.
2892
2892
  * @public
2893
2893
  */
2894
- Opacity?: number;
2894
+ Opacity?: number | undefined;
2895
2895
  /**
2896
2896
  * The width of the image when inserted into the video, in pixels. The overlay will be scaled up or down to the specified width. Leave blank to use the native width of the overlay.
2897
2897
  * @public
2898
2898
  */
2899
- Width?: number;
2899
+ Width?: number | undefined;
2900
2900
  }
2901
2901
  /**
2902
2902
  * Settings for the action to deactivate the image in a specific layer.
@@ -2907,12 +2907,12 @@ export interface StaticImageDeactivateScheduleActionSettings {
2907
2907
  * The time in milliseconds for the image to fade out. Default is 0 (no fade-out).
2908
2908
  * @public
2909
2909
  */
2910
- FadeOut?: number;
2910
+ FadeOut?: number | undefined;
2911
2911
  /**
2912
2912
  * The image overlay layer to deactivate, 0 to 7. Default is 0.
2913
2913
  * @public
2914
2914
  */
2915
- Layer?: number;
2915
+ Layer?: number | undefined;
2916
2916
  }
2917
2917
  /**
2918
2918
  * Settings for the action to activate a static image.
@@ -2923,22 +2923,22 @@ export interface StaticImageOutputActivateScheduleActionSettings {
2923
2923
  * The duration in milliseconds for the image to remain on the video. If omitted or set to 0 the duration is unlimited and the image will remain until it is explicitly deactivated.
2924
2924
  * @public
2925
2925
  */
2926
- Duration?: number;
2926
+ Duration?: number | undefined;
2927
2927
  /**
2928
2928
  * The time in milliseconds for the image to fade in. The fade-in starts at the start time of the overlay. Default is 0 (no fade-in).
2929
2929
  * @public
2930
2930
  */
2931
- FadeIn?: number;
2931
+ FadeIn?: number | undefined;
2932
2932
  /**
2933
2933
  * Applies only if a duration is specified. The time in milliseconds for the image to fade out. The fade-out starts when the duration time is hit, so it effectively extends the duration. Default is 0 (no fade-out).
2934
2934
  * @public
2935
2935
  */
2936
- FadeOut?: number;
2936
+ FadeOut?: number | undefined;
2937
2937
  /**
2938
2938
  * The height of the image when inserted into the video, in pixels. The overlay will be scaled up or down to the specified height. Leave blank to use the native height of the overlay.
2939
2939
  * @public
2940
2940
  */
2941
- Height?: number;
2941
+ Height?: number | undefined;
2942
2942
  /**
2943
2943
  * The location and filename of the image file to overlay on the video. The file must be a 32-bit BMP, PNG, or TGA file, and must not be larger (in pixels) than the input video.
2944
2944
  * @public
@@ -2948,22 +2948,22 @@ export interface StaticImageOutputActivateScheduleActionSettings {
2948
2948
  * Placement of the left edge of the overlay relative to the left edge of the video frame, in pixels. 0 (the default) is the left edge of the frame. If the placement causes the overlay to extend beyond the right edge of the underlying video, then the overlay is cropped on the right.
2949
2949
  * @public
2950
2950
  */
2951
- ImageX?: number;
2951
+ ImageX?: number | undefined;
2952
2952
  /**
2953
2953
  * Placement of the top edge of the overlay relative to the top edge of the video frame, in pixels. 0 (the default) is the top edge of the frame. If the placement causes the overlay to extend beyond the bottom edge of the underlying video, then the overlay is cropped on the bottom.
2954
2954
  * @public
2955
2955
  */
2956
- ImageY?: number;
2956
+ ImageY?: number | undefined;
2957
2957
  /**
2958
2958
  * The number of the layer, 0 to 7. There are 8 layers that can be overlaid on the video, each layer with a different image. The layers are in Z order, which means that overlays with higher values of layer are inserted on top of overlays with lower values of layer. Default is 0.
2959
2959
  * @public
2960
2960
  */
2961
- Layer?: number;
2961
+ Layer?: number | undefined;
2962
2962
  /**
2963
2963
  * Opacity of image where 0 is transparent and 100 is fully opaque. Default is 100.
2964
2964
  * @public
2965
2965
  */
2966
- Opacity?: number;
2966
+ Opacity?: number | undefined;
2967
2967
  /**
2968
2968
  * The name(s) of the output(s) the activation should apply to.
2969
2969
  * @public
@@ -2973,7 +2973,7 @@ export interface StaticImageOutputActivateScheduleActionSettings {
2973
2973
  * The width of the image when inserted into the video, in pixels. The overlay will be scaled up or down to the specified width. Leave blank to use the native width of the overlay.
2974
2974
  * @public
2975
2975
  */
2976
- Width?: number;
2976
+ Width?: number | undefined;
2977
2977
  }
2978
2978
  /**
2979
2979
  * Settings for the action to deactivate the image in a specific layer.
@@ -2984,12 +2984,12 @@ export interface StaticImageOutputDeactivateScheduleActionSettings {
2984
2984
  * The time in milliseconds for the image to fade out. Default is 0 (no fade-out).
2985
2985
  * @public
2986
2986
  */
2987
- FadeOut?: number;
2987
+ FadeOut?: number | undefined;
2988
2988
  /**
2989
2989
  * The image overlay layer to deactivate, 0 to 7. Default is 0.
2990
2990
  * @public
2991
2991
  */
2992
- Layer?: number;
2992
+ Layer?: number | undefined;
2993
2993
  /**
2994
2994
  * The name(s) of the output(s) the deactivation should apply to.
2995
2995
  * @public
@@ -3005,77 +3005,77 @@ export interface ScheduleActionSettings {
3005
3005
  * Action to insert HLS ID3 segment tagging
3006
3006
  * @public
3007
3007
  */
3008
- HlsId3SegmentTaggingSettings?: HlsId3SegmentTaggingScheduleActionSettings;
3008
+ HlsId3SegmentTaggingSettings?: HlsId3SegmentTaggingScheduleActionSettings | undefined;
3009
3009
  /**
3010
3010
  * Action to insert HLS metadata
3011
3011
  * @public
3012
3012
  */
3013
- HlsTimedMetadataSettings?: HlsTimedMetadataScheduleActionSettings;
3013
+ HlsTimedMetadataSettings?: HlsTimedMetadataScheduleActionSettings | undefined;
3014
3014
  /**
3015
3015
  * Action to prepare an input for a future immediate input switch
3016
3016
  * @public
3017
3017
  */
3018
- InputPrepareSettings?: InputPrepareScheduleActionSettings;
3018
+ InputPrepareSettings?: InputPrepareScheduleActionSettings | undefined;
3019
3019
  /**
3020
3020
  * Action to switch the input
3021
3021
  * @public
3022
3022
  */
3023
- InputSwitchSettings?: InputSwitchScheduleActionSettings;
3023
+ InputSwitchSettings?: InputSwitchScheduleActionSettings | undefined;
3024
3024
  /**
3025
3025
  * Action to activate a motion graphics image overlay
3026
3026
  * @public
3027
3027
  */
3028
- MotionGraphicsImageActivateSettings?: MotionGraphicsActivateScheduleActionSettings;
3028
+ MotionGraphicsImageActivateSettings?: MotionGraphicsActivateScheduleActionSettings | undefined;
3029
3029
  /**
3030
3030
  * Action to deactivate a motion graphics image overlay
3031
3031
  * @public
3032
3032
  */
3033
- MotionGraphicsImageDeactivateSettings?: MotionGraphicsDeactivateScheduleActionSettings;
3033
+ MotionGraphicsImageDeactivateSettings?: MotionGraphicsDeactivateScheduleActionSettings | undefined;
3034
3034
  /**
3035
3035
  * Action to pause or unpause one or both channel pipelines
3036
3036
  * @public
3037
3037
  */
3038
- PauseStateSettings?: PauseStateScheduleActionSettings;
3038
+ PauseStateSettings?: PauseStateScheduleActionSettings | undefined;
3039
3039
  /**
3040
3040
  * Action to specify scte35 input
3041
3041
  * @public
3042
3042
  */
3043
- Scte35InputSettings?: Scte35InputScheduleActionSettings;
3043
+ Scte35InputSettings?: Scte35InputScheduleActionSettings | undefined;
3044
3044
  /**
3045
3045
  * Action to insert SCTE-35 return_to_network message
3046
3046
  * @public
3047
3047
  */
3048
- Scte35ReturnToNetworkSettings?: Scte35ReturnToNetworkScheduleActionSettings;
3048
+ Scte35ReturnToNetworkSettings?: Scte35ReturnToNetworkScheduleActionSettings | undefined;
3049
3049
  /**
3050
3050
  * Action to insert SCTE-35 splice_insert message
3051
3051
  * @public
3052
3052
  */
3053
- Scte35SpliceInsertSettings?: Scte35SpliceInsertScheduleActionSettings;
3053
+ Scte35SpliceInsertSettings?: Scte35SpliceInsertScheduleActionSettings | undefined;
3054
3054
  /**
3055
3055
  * Action to insert SCTE-35 time_signal message
3056
3056
  * @public
3057
3057
  */
3058
- Scte35TimeSignalSettings?: Scte35TimeSignalScheduleActionSettings;
3058
+ Scte35TimeSignalSettings?: Scte35TimeSignalScheduleActionSettings | undefined;
3059
3059
  /**
3060
3060
  * Action to activate a static image overlay
3061
3061
  * @public
3062
3062
  */
3063
- StaticImageActivateSettings?: StaticImageActivateScheduleActionSettings;
3063
+ StaticImageActivateSettings?: StaticImageActivateScheduleActionSettings | undefined;
3064
3064
  /**
3065
3065
  * Action to deactivate a static image overlay
3066
3066
  * @public
3067
3067
  */
3068
- StaticImageDeactivateSettings?: StaticImageDeactivateScheduleActionSettings;
3068
+ StaticImageDeactivateSettings?: StaticImageDeactivateScheduleActionSettings | undefined;
3069
3069
  /**
3070
3070
  * Action to activate a static image overlay in one or more specified outputs
3071
3071
  * @public
3072
3072
  */
3073
- StaticImageOutputActivateSettings?: StaticImageOutputActivateScheduleActionSettings;
3073
+ StaticImageOutputActivateSettings?: StaticImageOutputActivateScheduleActionSettings | undefined;
3074
3074
  /**
3075
3075
  * Action to deactivate a static image overlay in one or more specified outputs
3076
3076
  * @public
3077
3077
  */
3078
- StaticImageOutputDeactivateSettings?: StaticImageOutputDeactivateScheduleActionSettings;
3078
+ StaticImageOutputDeactivateSettings?: StaticImageOutputDeactivateScheduleActionSettings | undefined;
3079
3079
  }
3080
3080
  /**
3081
3081
  * Start time for the action.
@@ -3131,17 +3131,17 @@ export interface ScheduleActionStartSettings {
3131
3131
  * Option for specifying the start time for an action.
3132
3132
  * @public
3133
3133
  */
3134
- FixedModeScheduleActionStartSettings?: FixedModeScheduleActionStartSettings;
3134
+ FixedModeScheduleActionStartSettings?: FixedModeScheduleActionStartSettings | undefined;
3135
3135
  /**
3136
3136
  * Option for specifying an action as relative to another action.
3137
3137
  * @public
3138
3138
  */
3139
- FollowModeScheduleActionStartSettings?: FollowModeScheduleActionStartSettings;
3139
+ FollowModeScheduleActionStartSettings?: FollowModeScheduleActionStartSettings | undefined;
3140
3140
  /**
3141
3141
  * Option for specifying an action that should be applied immediately.
3142
3142
  * @public
3143
3143
  */
3144
- ImmediateModeScheduleActionStartSettings?: ImmediateModeScheduleActionStartSettings;
3144
+ ImmediateModeScheduleActionStartSettings?: ImmediateModeScheduleActionStartSettings | undefined;
3145
3145
  }
3146
3146
  /**
3147
3147
  * Contains information on a single schedule action.
@@ -3222,7 +3222,7 @@ export interface SignalMapSummary {
3222
3222
  * A resource's optional description.
3223
3223
  * @public
3224
3224
  */
3225
- Description?: string;
3225
+ Description?: string | undefined;
3226
3226
  /**
3227
3227
  * A signal map's id.
3228
3228
  * @public
@@ -3232,7 +3232,7 @@ export interface SignalMapSummary {
3232
3232
  * Placeholder documentation for __timestampIso8601
3233
3233
  * @public
3234
3234
  */
3235
- ModifiedAt?: Date;
3235
+ ModifiedAt?: Date | undefined;
3236
3236
  /**
3237
3237
  * A signal map's monitor deployment status.
3238
3238
  * @public
@@ -3252,7 +3252,7 @@ export interface SignalMapSummary {
3252
3252
  * Represents the tags associated with a resource.
3253
3253
  * @public
3254
3254
  */
3255
- Tags?: Record<string, string>;
3255
+ Tags?: Record<string, string> | undefined;
3256
3256
  }
3257
3257
  /**
3258
3258
  * Complete these parameters only if the content is encrypted.
@@ -3263,12 +3263,12 @@ export interface SrtCallerDecryptionRequest {
3263
3263
  * The algorithm used to encrypt content.
3264
3264
  * @public
3265
3265
  */
3266
- Algorithm?: Algorithm;
3266
+ Algorithm?: Algorithm | undefined;
3267
3267
  /**
3268
3268
  * The ARN for the secret in Secrets Manager. Someone in your organization must create a secret and provide you with its ARN. This secret holds the passphrase that MediaLive will use to decrypt the source content.
3269
3269
  * @public
3270
3270
  */
3271
- PassphraseSecretArn?: string;
3271
+ PassphraseSecretArn?: string | undefined;
3272
3272
  }
3273
3273
  /**
3274
3274
  * Configures the connection for a source that uses SRT as the connection protocol. In terms of establishing the connection, MediaLive is always the caller and the upstream system is always the listener. In terms of transmission of the source content, MediaLive is always the receiver and the upstream system is always the sender.
@@ -3279,27 +3279,27 @@ export interface SrtCallerSourceRequest {
3279
3279
  * Complete these parameters only if the content is encrypted.
3280
3280
  * @public
3281
3281
  */
3282
- Decryption?: SrtCallerDecryptionRequest;
3282
+ Decryption?: SrtCallerDecryptionRequest | undefined;
3283
3283
  /**
3284
3284
  * The preferred latency (in milliseconds) for implementing packet loss and recovery. Packet recovery is a key feature of SRT. Obtain this value from the operator at the upstream system.
3285
3285
  * @public
3286
3286
  */
3287
- MinimumLatency?: number;
3287
+ MinimumLatency?: number | undefined;
3288
3288
  /**
3289
3289
  * The IP address at the upstream system (the listener) that MediaLive (the caller) will connect to.
3290
3290
  * @public
3291
3291
  */
3292
- SrtListenerAddress?: string;
3292
+ SrtListenerAddress?: string | undefined;
3293
3293
  /**
3294
3294
  * The port at the upstream system (the listener) that MediaLive (the caller) will connect to.
3295
3295
  * @public
3296
3296
  */
3297
- SrtListenerPort?: string;
3297
+ SrtListenerPort?: string | undefined;
3298
3298
  /**
3299
3299
  * This value is required if the upstream system uses this identifier because without it, the SRT handshake between MediaLive (the caller) and the upstream system (the listener) might fail.
3300
3300
  * @public
3301
3301
  */
3302
- StreamId?: string;
3302
+ StreamId?: string | undefined;
3303
3303
  }
3304
3304
  /**
3305
3305
  * @public
@@ -3322,22 +3322,22 @@ export interface Thumbnail {
3322
3322
  * The binary data for the latest thumbnail.
3323
3323
  * @public
3324
3324
  */
3325
- Body?: string;
3325
+ Body?: string | undefined;
3326
3326
  /**
3327
3327
  * The content type for the latest thumbnail.
3328
3328
  * @public
3329
3329
  */
3330
- ContentType?: string;
3330
+ ContentType?: string | undefined;
3331
3331
  /**
3332
3332
  * Thumbnail Type
3333
3333
  * @public
3334
3334
  */
3335
- ThumbnailType?: ThumbnailType;
3335
+ ThumbnailType?: ThumbnailType | undefined;
3336
3336
  /**
3337
3337
  * Time stamp for the latest thumbnail.
3338
3338
  * @public
3339
3339
  */
3340
- TimeStamp?: Date;
3340
+ TimeStamp?: Date | undefined;
3341
3341
  }
3342
3342
  /**
3343
3343
  * Thumbnail details for one pipeline of a running channel.
@@ -3348,12 +3348,12 @@ export interface ThumbnailDetail {
3348
3348
  * Pipeline ID
3349
3349
  * @public
3350
3350
  */
3351
- PipelineId?: string;
3351
+ PipelineId?: string | undefined;
3352
3352
  /**
3353
3353
  * thumbnails of a single pipeline
3354
3354
  * @public
3355
3355
  */
3356
- Thumbnails?: Thumbnail[];
3356
+ Thumbnails?: Thumbnail[] | undefined;
3357
3357
  }
3358
3358
  /**
3359
3359
  * @public
@@ -3376,22 +3376,22 @@ export interface TransferringInputDeviceSummary {
3376
3376
  * The unique ID of the input device.
3377
3377
  * @public
3378
3378
  */
3379
- Id?: string;
3379
+ Id?: string | undefined;
3380
3380
  /**
3381
3381
  * The optional message that the sender has attached to the transfer.
3382
3382
  * @public
3383
3383
  */
3384
- Message?: string;
3384
+ Message?: string | undefined;
3385
3385
  /**
3386
3386
  * The AWS account ID for the recipient of the input device transfer.
3387
3387
  * @public
3388
3388
  */
3389
- TargetCustomerId?: string;
3389
+ TargetCustomerId?: string | undefined;
3390
3390
  /**
3391
3391
  * The type (direction) of the input device transfer.
3392
3392
  * @public
3393
3393
  */
3394
- TransferType?: InputDeviceTransferType;
3394
+ TransferType?: InputDeviceTransferType | undefined;
3395
3395
  }
3396
3396
  /**
3397
3397
  * Placeholder documentation for ValidationError
@@ -3402,12 +3402,12 @@ export interface ValidationError {
3402
3402
  * Path to the source of the error.
3403
3403
  * @public
3404
3404
  */
3405
- ElementPath?: string;
3405
+ ElementPath?: string | undefined;
3406
3406
  /**
3407
3407
  * The error message.
3408
3408
  * @public
3409
3409
  */
3410
- ErrorMessage?: string;
3410
+ ErrorMessage?: string | undefined;
3411
3411
  }
3412
3412
  /**
3413
3413
  * @public
@@ -3449,22 +3449,22 @@ export interface Av1ColorSpaceSettings {
3449
3449
  * Passthrough applies no color space conversion to the output
3450
3450
  * @public
3451
3451
  */
3452
- ColorSpacePassthroughSettings?: ColorSpacePassthroughSettings;
3452
+ ColorSpacePassthroughSettings?: ColorSpacePassthroughSettings | undefined;
3453
3453
  /**
3454
3454
  * Hdr10 Settings
3455
3455
  * @public
3456
3456
  */
3457
- Hdr10Settings?: Hdr10Settings;
3457
+ Hdr10Settings?: Hdr10Settings | undefined;
3458
3458
  /**
3459
3459
  * Rec601 Settings
3460
3460
  * @public
3461
3461
  */
3462
- Rec601Settings?: Rec601Settings;
3462
+ Rec601Settings?: Rec601Settings | undefined;
3463
3463
  /**
3464
3464
  * Rec709 Settings
3465
3465
  * @public
3466
3466
  */
3467
- Rec709Settings?: Rec709Settings;
3467
+ Rec709Settings?: Rec709Settings | undefined;
3468
3468
  }
3469
3469
  /**
3470
3470
  * @public
@@ -3601,7 +3601,7 @@ export interface TimecodeBurninSettings {
3601
3601
  * Create a timecode burn-in prefix (optional)
3602
3602
  * @public
3603
3603
  */
3604
- Prefix?: string;
3604
+ Prefix?: string | undefined;
3605
3605
  }
3606
3606
  /**
3607
3607
  * Av1 Settings
@@ -3615,22 +3615,22 @@ export interface Av1Settings {
3615
3615
  * NONE: MediaLive won't write AFD into the video
3616
3616
  * @public
3617
3617
  */
3618
- AfdSignaling?: AfdSignaling;
3618
+ AfdSignaling?: AfdSignaling | undefined;
3619
3619
  /**
3620
3620
  * The size of the buffer (HRD buffer model) in bits.
3621
3621
  * @public
3622
3622
  */
3623
- BufSize?: number;
3623
+ BufSize?: number | undefined;
3624
3624
  /**
3625
3625
  * Color Space settings
3626
3626
  * @public
3627
3627
  */
3628
- ColorSpaceSettings?: Av1ColorSpaceSettings;
3628
+ ColorSpaceSettings?: Av1ColorSpaceSettings | undefined;
3629
3629
  /**
3630
3630
  * Complete this property only if you set the afdSignaling property to FIXED. Choose the AFD value (4 bits) to write on all frames of the video encode.
3631
3631
  * @public
3632
3632
  */
3633
- FixedAfd?: FixedAfd;
3633
+ FixedAfd?: FixedAfd | undefined;
3634
3634
  /**
3635
3635
  * The denominator for the framerate. Framerate is a fraction, for example, 24000 / 1001.
3636
3636
  * @public
@@ -3647,28 +3647,28 @@ export interface Av1Settings {
3647
3647
  * If GopSizeUnits is seconds, GopSize must be greater than 0, but it can be a decimal.
3648
3648
  * @public
3649
3649
  */
3650
- GopSize?: number;
3650
+ GopSize?: number | undefined;
3651
3651
  /**
3652
3652
  * Choose the units for the GOP size: FRAMES or SECONDS. For SECONDS, MediaLive converts the size into a frame count at run time.
3653
3653
  * @public
3654
3654
  */
3655
- GopSizeUnits?: Av1GopSizeUnits;
3655
+ GopSizeUnits?: Av1GopSizeUnits | undefined;
3656
3656
  /**
3657
3657
  * Sets the level. This parameter is one of the properties of the encoding scheme for AV1.
3658
3658
  * @public
3659
3659
  */
3660
- Level?: Av1Level;
3660
+ Level?: Av1Level | undefined;
3661
3661
  /**
3662
3662
  * Sets the amount of lookahead. A value of LOW can decrease latency and memory usage. A value of HIGH can produce better quality for certain content.
3663
3663
  * @public
3664
3664
  */
3665
- LookAheadRateControl?: Av1LookAheadRateControl;
3665
+ LookAheadRateControl?: Av1LookAheadRateControl | undefined;
3666
3666
  /**
3667
3667
  * The maximum bitrate to assign.
3668
3668
  * For recommendations, see the description for qvbrQualityLevel.
3669
3669
  * @public
3670
3670
  */
3671
- MaxBitrate?: number;
3671
+ MaxBitrate?: number | undefined;
3672
3672
  /**
3673
3673
  * Applies only if you enable SceneChangeDetect. Sets the interval between frames. This property ensures a minimum separation between repeated (cadence) I-frames and any I-frames inserted by scene change detection (SCD frames).
3674
3674
  * Enter a number for the interval, measured in number of frames.
@@ -3676,17 +3676,17 @@ export interface Av1Settings {
3676
3676
  * Note that the maximum GOP stretch = (GOP size) + (Minimum I-interval) - 1
3677
3677
  * @public
3678
3678
  */
3679
- MinIInterval?: number;
3679
+ MinIInterval?: number | undefined;
3680
3680
  /**
3681
3681
  * The denominator for the output pixel aspect ratio (PAR).
3682
3682
  * @public
3683
3683
  */
3684
- ParDenominator?: number;
3684
+ ParDenominator?: number | undefined;
3685
3685
  /**
3686
3686
  * The numerator for the output pixel aspect ratio (PAR).
3687
3687
  * @public
3688
3688
  */
3689
- ParNumerator?: number;
3689
+ ParNumerator?: number | undefined;
3690
3690
  /**
3691
3691
  * Controls the target quality for the video encode. With QVBR rate control mode, the final quality is the target quality, constrained by the maxBitrate.
3692
3692
  * Set values for the qvbrQualityLevel property and maxBitrate property that suit your most important viewing devices.
@@ -3698,17 +3698,17 @@ export interface Av1Settings {
3698
3698
  * Smartphone: qvbrQualityLevel: Leave empty. maxBitrate: 1,000,000 to 1,500,000
3699
3699
  * @public
3700
3700
  */
3701
- QvbrQualityLevel?: number;
3701
+ QvbrQualityLevel?: number | undefined;
3702
3702
  /**
3703
3703
  * Controls whether MediaLive inserts I-frames when it detects a scene change. ENABLED or DISABLED.
3704
3704
  * @public
3705
3705
  */
3706
- SceneChangeDetect?: Av1SceneChangeDetect;
3706
+ SceneChangeDetect?: Av1SceneChangeDetect | undefined;
3707
3707
  /**
3708
3708
  * Configures the timecode burn-in feature. If you enable this feature, the timecode will become part of the video.
3709
3709
  * @public
3710
3710
  */
3711
- TimecodeBurninSettings?: TimecodeBurninSettings;
3711
+ TimecodeBurninSettings?: TimecodeBurninSettings | undefined;
3712
3712
  }
3713
3713
  /**
3714
3714
  * @public
@@ -3731,17 +3731,17 @@ export interface FrameCaptureSettings {
3731
3731
  * The frequency at which to capture frames for inclusion in the output. May be specified in either seconds or milliseconds, as specified by captureIntervalUnits.
3732
3732
  * @public
3733
3733
  */
3734
- CaptureInterval?: number;
3734
+ CaptureInterval?: number | undefined;
3735
3735
  /**
3736
3736
  * Unit for the frame capture interval.
3737
3737
  * @public
3738
3738
  */
3739
- CaptureIntervalUnits?: FrameCaptureIntervalUnit;
3739
+ CaptureIntervalUnits?: FrameCaptureIntervalUnit | undefined;
3740
3740
  /**
3741
3741
  * Timecode burn-in settings
3742
3742
  * @public
3743
3743
  */
3744
- TimecodeBurninSettings?: TimecodeBurninSettings;
3744
+ TimecodeBurninSettings?: TimecodeBurninSettings | undefined;
3745
3745
  }
3746
3746
  /**
3747
3747
  * @public
@@ -3781,17 +3781,17 @@ export interface H264ColorSpaceSettings {
3781
3781
  * Passthrough applies no color space conversion to the output
3782
3782
  * @public
3783
3783
  */
3784
- ColorSpacePassthroughSettings?: ColorSpacePassthroughSettings;
3784
+ ColorSpacePassthroughSettings?: ColorSpacePassthroughSettings | undefined;
3785
3785
  /**
3786
3786
  * Rec601 Settings
3787
3787
  * @public
3788
3788
  */
3789
- Rec601Settings?: Rec601Settings;
3789
+ Rec601Settings?: Rec601Settings | undefined;
3790
3790
  /**
3791
3791
  * Rec709 Settings
3792
3792
  * @public
3793
3793
  */
3794
- Rec709Settings?: Rec709Settings;
3794
+ Rec709Settings?: Rec709Settings | undefined;
3795
3795
  }
3796
3796
  /**
3797
3797
  * @public
@@ -3847,13 +3847,13 @@ export interface BandwidthReductionFilterSettings {
3847
3847
  * content.
3848
3848
  * @public
3849
3849
  */
3850
- PostFilterSharpening?: BandwidthReductionPostFilterSharpening;
3850
+ PostFilterSharpening?: BandwidthReductionPostFilterSharpening | undefined;
3851
3851
  /**
3852
3852
  * Enables the bandwidth reduction filter. The filter strengths range from 1 to 4. We recommend that you always
3853
3853
  * enable this filter and use AUTO, to let MediaLive apply the optimum filtering for the context.
3854
3854
  * @public
3855
3855
  */
3856
- Strength?: BandwidthReductionFilterStrength;
3856
+ Strength?: BandwidthReductionFilterStrength | undefined;
3857
3857
  }
3858
3858
  /**
3859
3859
  * @public
@@ -3906,12 +3906,12 @@ export interface TemporalFilterSettings {
3906
3906
  * - If the source content is already clean, the filter tends to decrease the bitrate, especially when the rate control mode is QVBR.
3907
3907
  * @public
3908
3908
  */
3909
- PostFilterSharpening?: TemporalFilterPostFilterSharpening;
3909
+ PostFilterSharpening?: TemporalFilterPostFilterSharpening | undefined;
3910
3910
  /**
3911
3911
  * 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.
3912
3912
  * @public
3913
3913
  */
3914
- Strength?: TemporalFilterStrength;
3914
+ Strength?: TemporalFilterStrength | undefined;
3915
3915
  }
3916
3916
  /**
3917
3917
  * H264 Filter Settings
@@ -3922,12 +3922,12 @@ export interface H264FilterSettings {
3922
3922
  * Temporal Filter Settings
3923
3923
  * @public
3924
3924
  */
3925
- TemporalFilterSettings?: TemporalFilterSettings;
3925
+ TemporalFilterSettings?: TemporalFilterSettings | undefined;
3926
3926
  /**
3927
3927
  * Bandwidth Reduction Filter Settings
3928
3928
  * @public
3929
3929
  */
3930
- BandwidthReductionFilterSettings?: BandwidthReductionFilterSettings;
3930
+ BandwidthReductionFilterSettings?: BandwidthReductionFilterSettings | undefined;
3931
3931
  }
3932
3932
  /**
3933
3933
  * @public
@@ -4176,42 +4176,42 @@ export interface H264Settings {
4176
4176
  * 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.
4177
4177
  * @public
4178
4178
  */
4179
- AdaptiveQuantization?: H264AdaptiveQuantization;
4179
+ AdaptiveQuantization?: H264AdaptiveQuantization | undefined;
4180
4180
  /**
4181
4181
  * 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.
4182
4182
  * @public
4183
4183
  */
4184
- AfdSignaling?: AfdSignaling;
4184
+ AfdSignaling?: AfdSignaling | undefined;
4185
4185
  /**
4186
4186
  * 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.
4187
4187
  * @public
4188
4188
  */
4189
- Bitrate?: number;
4189
+ Bitrate?: number | undefined;
4190
4190
  /**
4191
4191
  * Percentage of the buffer that should initially be filled (HRD buffer model).
4192
4192
  * @public
4193
4193
  */
4194
- BufFillPct?: number;
4194
+ BufFillPct?: number | undefined;
4195
4195
  /**
4196
4196
  * Size of buffer (HRD buffer model) in bits.
4197
4197
  * @public
4198
4198
  */
4199
- BufSize?: number;
4199
+ BufSize?: number | undefined;
4200
4200
  /**
4201
4201
  * Includes colorspace metadata in the output.
4202
4202
  * @public
4203
4203
  */
4204
- ColorMetadata?: H264ColorMetadata;
4204
+ ColorMetadata?: H264ColorMetadata | undefined;
4205
4205
  /**
4206
4206
  * Color Space settings
4207
4207
  * @public
4208
4208
  */
4209
- ColorSpaceSettings?: H264ColorSpaceSettings;
4209
+ ColorSpaceSettings?: H264ColorSpaceSettings | undefined;
4210
4210
  /**
4211
4211
  * Entropy encoding mode. Use cabac (must be in Main or High profile) or cavlc.
4212
4212
  * @public
4213
4213
  */
4214
- EntropyEncoding?: H264EntropyEncoding;
4214
+ EntropyEncoding?: H264EntropyEncoding | undefined;
4215
4215
  /**
4216
4216
  * Optional. Both filters reduce bandwidth by removing imperceptible details. You can enable one of the filters. We
4217
4217
  * recommend that you try both filters and observe the results to decide which one to use.
@@ -4223,120 +4223,120 @@ export interface H264Settings {
4223
4223
  * compression level to filter imperceptible signals. This filter works only when the resolution is 1080p or lower.
4224
4224
  * @public
4225
4225
  */
4226
- FilterSettings?: H264FilterSettings;
4226
+ FilterSettings?: H264FilterSettings | undefined;
4227
4227
  /**
4228
4228
  * Four bit AFD value to write on all frames of video in the output stream. Only valid when afdSignaling is set to 'Fixed'.
4229
4229
  * @public
4230
4230
  */
4231
- FixedAfd?: FixedAfd;
4231
+ FixedAfd?: FixedAfd | undefined;
4232
4232
  /**
4233
4233
  * 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.
4234
4234
  * @public
4235
4235
  */
4236
- FlickerAq?: H264FlickerAq;
4236
+ FlickerAq?: H264FlickerAq | undefined;
4237
4237
  /**
4238
4238
  * 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.)
4239
4239
  * enabled: Force MediaLive to code on a field basis, so that odd and even sets of fields are coded separately.
4240
4240
  * 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.
4241
4241
  * @public
4242
4242
  */
4243
- ForceFieldPictures?: H264ForceFieldPictures;
4243
+ ForceFieldPictures?: H264ForceFieldPictures | undefined;
4244
4244
  /**
4245
4245
  * 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.
4246
4246
  * @public
4247
4247
  */
4248
- FramerateControl?: H264FramerateControl;
4248
+ FramerateControl?: H264FramerateControl | undefined;
4249
4249
  /**
4250
4250
  * Framerate denominator.
4251
4251
  * @public
4252
4252
  */
4253
- FramerateDenominator?: number;
4253
+ FramerateDenominator?: number | undefined;
4254
4254
  /**
4255
4255
  * Framerate numerator - framerate is a fraction, e.g. 24000 / 1001 = 23.976 fps.
4256
4256
  * @public
4257
4257
  */
4258
- FramerateNumerator?: number;
4258
+ FramerateNumerator?: number | undefined;
4259
4259
  /**
4260
4260
  * Documentation update needed
4261
4261
  * @public
4262
4262
  */
4263
- GopBReference?: H264GopBReference;
4263
+ GopBReference?: H264GopBReference | undefined;
4264
4264
  /**
4265
4265
  * 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.
4266
4266
  * @public
4267
4267
  */
4268
- GopClosedCadence?: number;
4268
+ GopClosedCadence?: number | undefined;
4269
4269
  /**
4270
4270
  * Number of B-frames between reference frames.
4271
4271
  * @public
4272
4272
  */
4273
- GopNumBFrames?: number;
4273
+ GopNumBFrames?: number | undefined;
4274
4274
  /**
4275
4275
  * GOP size (keyframe interval) in units of either frames or seconds per gopSizeUnits.
4276
4276
  * If gopSizeUnits is frames, gopSize must be an integer and must be greater than or equal to 1.
4277
4277
  * If gopSizeUnits is seconds, gopSize must be greater than 0, but need not be an integer.
4278
4278
  * @public
4279
4279
  */
4280
- GopSize?: number;
4280
+ GopSize?: number | undefined;
4281
4281
  /**
4282
4282
  * 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.
4283
4283
  * @public
4284
4284
  */
4285
- GopSizeUnits?: H264GopSizeUnits;
4285
+ GopSizeUnits?: H264GopSizeUnits | undefined;
4286
4286
  /**
4287
4287
  * H.264 Level.
4288
4288
  * @public
4289
4289
  */
4290
- Level?: H264Level;
4290
+ Level?: H264Level | undefined;
4291
4291
  /**
4292
4292
  * Amount of lookahead. A value of low can decrease latency and memory usage, while high can produce better quality for certain content.
4293
4293
  * @public
4294
4294
  */
4295
- LookAheadRateControl?: H264LookAheadRateControl;
4295
+ LookAheadRateControl?: H264LookAheadRateControl | undefined;
4296
4296
  /**
4297
4297
  * For QVBR: See the tooltip for Quality level
4298
4298
  *
4299
4299
  * For VBR: Set the maximum bitrate in order to accommodate expected spikes in the complexity of the video.
4300
4300
  * @public
4301
4301
  */
4302
- MaxBitrate?: number;
4302
+ MaxBitrate?: number | undefined;
4303
4303
  /**
4304
4304
  * Only meaningful if sceneChangeDetect is set to enabled. Defaults to 5 if multiplex rate control is used. Enforces separation between repeated (cadence) I-frames and I-frames inserted by Scene Change Detection. If a scene change I-frame is within I-interval frames of a cadence I-frame, the GOP is shrunk and/or stretched to the scene change I-frame. GOP stretch requires enabling lookahead as well as setting I-interval. The normal cadence resumes for the next GOP. Note: Maximum GOP stretch = GOP size + Min-I-interval - 1
4305
4305
  * @public
4306
4306
  */
4307
- MinIInterval?: number;
4307
+ MinIInterval?: number | undefined;
4308
4308
  /**
4309
4309
  * Number of reference frames to use. The encoder may use more than requested if using B-frames and/or interlaced encoding.
4310
4310
  * @public
4311
4311
  */
4312
- NumRefFrames?: number;
4312
+ NumRefFrames?: number | undefined;
4313
4313
  /**
4314
4314
  * 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.
4315
4315
  * @public
4316
4316
  */
4317
- ParControl?: H264ParControl;
4317
+ ParControl?: H264ParControl | undefined;
4318
4318
  /**
4319
4319
  * Pixel Aspect Ratio denominator.
4320
4320
  * @public
4321
4321
  */
4322
- ParDenominator?: number;
4322
+ ParDenominator?: number | undefined;
4323
4323
  /**
4324
4324
  * Pixel Aspect Ratio numerator.
4325
4325
  * @public
4326
4326
  */
4327
- ParNumerator?: number;
4327
+ ParNumerator?: number | undefined;
4328
4328
  /**
4329
4329
  * H.264 Profile.
4330
4330
  * @public
4331
4331
  */
4332
- Profile?: H264Profile;
4332
+ Profile?: H264Profile | undefined;
4333
4333
  /**
4334
4334
  * Leave as STANDARD_QUALITY or choose a different value (which might result in additional costs to run the channel).
4335
4335
  * - 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.
4336
4336
  * - STANDARD_QUALITY: Valid for any Rate control mode.
4337
4337
  * @public
4338
4338
  */
4339
- QualityLevel?: H264QualityLevel;
4339
+ QualityLevel?: H264QualityLevel | undefined;
4340
4340
  /**
4341
4341
  * 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:
4342
4342
  * - Primary screen: Quality level: 8 to 10. Max bitrate: 4M
@@ -4345,7 +4345,7 @@ export interface H264Settings {
4345
4345
  * To let MediaLive decide, leave the QVBR quality level field empty, and in Max bitrate enter the maximum rate you want in the video. For more information, see the section called "Video - rate control mode" in the MediaLive user guide
4346
4346
  * @public
4347
4347
  */
4348
- QvbrQualityLevel?: number;
4348
+ QvbrQualityLevel?: number | undefined;
4349
4349
  /**
4350
4350
  * Rate control mode.
4351
4351
  *
@@ -4363,12 +4363,12 @@ export interface H264Settings {
4363
4363
  * by the properties within the Multiplex Program.
4364
4364
  * @public
4365
4365
  */
4366
- RateControlMode?: H264RateControlMode;
4366
+ RateControlMode?: H264RateControlMode | undefined;
4367
4367
  /**
4368
4368
  * Sets the scan type of the output to progressive or top-field-first interlaced.
4369
4369
  * @public
4370
4370
  */
4371
- ScanType?: H264ScanType;
4371
+ ScanType?: H264ScanType | undefined;
4372
4372
  /**
4373
4373
  * Scene change detection.
4374
4374
  *
@@ -4376,56 +4376,56 @@ export interface H264Settings {
4376
4376
  * - Off: does not force an I-frame when scene change is detected.
4377
4377
  * @public
4378
4378
  */
4379
- SceneChangeDetect?: H264SceneChangeDetect;
4379
+ SceneChangeDetect?: H264SceneChangeDetect | undefined;
4380
4380
  /**
4381
4381
  * 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.
4382
4382
  * This field is optional; when no value is specified the encoder will choose the number of slices based on encode resolution.
4383
4383
  * @public
4384
4384
  */
4385
- Slices?: number;
4385
+ Slices?: number | undefined;
4386
4386
  /**
4387
4387
  * Softness. Selects quantizer matrix, larger values reduce high-frequency content in the encoded image. If not set to zero, must be greater than 15.
4388
4388
  * @public
4389
4389
  */
4390
- Softness?: number;
4390
+ Softness?: number | undefined;
4391
4391
  /**
4392
4392
  * 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.
4393
4393
  * @public
4394
4394
  */
4395
- SpatialAq?: H264SpatialAq;
4395
+ SpatialAq?: H264SpatialAq | undefined;
4396
4396
  /**
4397
4397
  * 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.
4398
4398
  * @public
4399
4399
  */
4400
- SubgopLength?: H264SubGopLength;
4400
+ SubgopLength?: H264SubGopLength | undefined;
4401
4401
  /**
4402
4402
  * Produces a bitstream compliant with SMPTE RP-2027.
4403
4403
  * @public
4404
4404
  */
4405
- Syntax?: H264Syntax;
4405
+ Syntax?: H264Syntax | undefined;
4406
4406
  /**
4407
4407
  * 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.
4408
4408
  * @public
4409
4409
  */
4410
- TemporalAq?: H264TemporalAq;
4410
+ TemporalAq?: H264TemporalAq | undefined;
4411
4411
  /**
4412
4412
  * Determines how timecodes should be inserted into the video elementary stream.
4413
4413
  * - 'disabled': Do not include timecodes
4414
4414
  * - 'picTimingSei': Pass through picture timing SEI messages from the source specified in Timecode Config
4415
4415
  * @public
4416
4416
  */
4417
- TimecodeInsertion?: H264TimecodeInsertionBehavior;
4417
+ TimecodeInsertion?: H264TimecodeInsertionBehavior | undefined;
4418
4418
  /**
4419
4419
  * Timecode burn-in settings
4420
4420
  * @public
4421
4421
  */
4422
- TimecodeBurninSettings?: TimecodeBurninSettings;
4422
+ TimecodeBurninSettings?: TimecodeBurninSettings | undefined;
4423
4423
  /**
4424
4424
  * Sets the minimum QP. If you aren't familiar with quantization adjustment, leave the field empty. MediaLive will
4425
4425
  * apply an appropriate value.
4426
4426
  * @public
4427
4427
  */
4428
- MinQp?: number;
4428
+ MinQp?: number | undefined;
4429
4429
  }
4430
4430
  /**
4431
4431
  * @public
@@ -4483,27 +4483,27 @@ export interface H265ColorSpaceSettings {
4483
4483
  * Passthrough applies no color space conversion to the output
4484
4484
  * @public
4485
4485
  */
4486
- ColorSpacePassthroughSettings?: ColorSpacePassthroughSettings;
4486
+ ColorSpacePassthroughSettings?: ColorSpacePassthroughSettings | undefined;
4487
4487
  /**
4488
4488
  * Dolby Vision81 Settings
4489
4489
  * @public
4490
4490
  */
4491
- DolbyVision81Settings?: DolbyVision81Settings;
4491
+ DolbyVision81Settings?: DolbyVision81Settings | undefined;
4492
4492
  /**
4493
4493
  * Hdr10 Settings
4494
4494
  * @public
4495
4495
  */
4496
- Hdr10Settings?: Hdr10Settings;
4496
+ Hdr10Settings?: Hdr10Settings | undefined;
4497
4497
  /**
4498
4498
  * Rec601 Settings
4499
4499
  * @public
4500
4500
  */
4501
- Rec601Settings?: Rec601Settings;
4501
+ Rec601Settings?: Rec601Settings | undefined;
4502
4502
  /**
4503
4503
  * Rec709 Settings
4504
4504
  * @public
4505
4505
  */
4506
- Rec709Settings?: Rec709Settings;
4506
+ Rec709Settings?: Rec709Settings | undefined;
4507
4507
  }
4508
4508
  /**
4509
4509
  * H265 Filter Settings
@@ -4514,12 +4514,12 @@ export interface H265FilterSettings {
4514
4514
  * Temporal Filter Settings
4515
4515
  * @public
4516
4516
  */
4517
- TemporalFilterSettings?: TemporalFilterSettings;
4517
+ TemporalFilterSettings?: TemporalFilterSettings | undefined;
4518
4518
  /**
4519
4519
  * Bandwidth Reduction Filter Settings
4520
4520
  * @public
4521
4521
  */
4522
- BandwidthReductionFilterSettings?: BandwidthReductionFilterSettings;
4522
+ BandwidthReductionFilterSettings?: BandwidthReductionFilterSettings | undefined;
4523
4523
  }
4524
4524
  /**
4525
4525
  * @public
@@ -4712,37 +4712,37 @@ export interface H265Settings {
4712
4712
  * Adaptive quantization. Allows intra-frame quantizers to vary to improve visual quality.
4713
4713
  * @public
4714
4714
  */
4715
- AdaptiveQuantization?: H265AdaptiveQuantization;
4715
+ AdaptiveQuantization?: H265AdaptiveQuantization | undefined;
4716
4716
  /**
4717
4717
  * 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.
4718
4718
  * @public
4719
4719
  */
4720
- AfdSignaling?: AfdSignaling;
4720
+ AfdSignaling?: AfdSignaling | undefined;
4721
4721
  /**
4722
4722
  * Whether or not EML should insert an Alternative Transfer Function SEI message to support backwards compatibility with non-HDR decoders and displays.
4723
4723
  * @public
4724
4724
  */
4725
- AlternativeTransferFunction?: H265AlternativeTransferFunction;
4725
+ AlternativeTransferFunction?: H265AlternativeTransferFunction | undefined;
4726
4726
  /**
4727
4727
  * 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.
4728
4728
  * @public
4729
4729
  */
4730
- Bitrate?: number;
4730
+ Bitrate?: number | undefined;
4731
4731
  /**
4732
4732
  * Size of buffer (HRD buffer model) in bits.
4733
4733
  * @public
4734
4734
  */
4735
- BufSize?: number;
4735
+ BufSize?: number | undefined;
4736
4736
  /**
4737
4737
  * Includes colorspace metadata in the output.
4738
4738
  * @public
4739
4739
  */
4740
- ColorMetadata?: H265ColorMetadata;
4740
+ ColorMetadata?: H265ColorMetadata | undefined;
4741
4741
  /**
4742
4742
  * Color Space settings
4743
4743
  * @public
4744
4744
  */
4745
- ColorSpaceSettings?: H265ColorSpaceSettings;
4745
+ ColorSpaceSettings?: H265ColorSpaceSettings | undefined;
4746
4746
  /**
4747
4747
  * Optional. Both filters reduce bandwidth by removing imperceptible details. You can enable one of the filters. We
4748
4748
  * recommend that you try both filters and observe the results to decide which one to use.
@@ -4754,17 +4754,17 @@ export interface H265Settings {
4754
4754
  * compression level to filter imperceptible signals. This filter works only when the resolution is 1080p or lower.
4755
4755
  * @public
4756
4756
  */
4757
- FilterSettings?: H265FilterSettings;
4757
+ FilterSettings?: H265FilterSettings | undefined;
4758
4758
  /**
4759
4759
  * Four bit AFD value to write on all frames of video in the output stream. Only valid when afdSignaling is set to 'Fixed'.
4760
4760
  * @public
4761
4761
  */
4762
- FixedAfd?: FixedAfd;
4762
+ FixedAfd?: FixedAfd | undefined;
4763
4763
  /**
4764
4764
  * If set to enabled, adjust quantization within each frame to reduce flicker or 'pop' on I-frames.
4765
4765
  * @public
4766
4766
  */
4767
- FlickerAq?: H265FlickerAq;
4767
+ FlickerAq?: H265FlickerAq | undefined;
4768
4768
  /**
4769
4769
  * Framerate denominator.
4770
4770
  * @public
@@ -4779,54 +4779,54 @@ export interface H265Settings {
4779
4779
  * 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.
4780
4780
  * @public
4781
4781
  */
4782
- GopClosedCadence?: number;
4782
+ GopClosedCadence?: number | undefined;
4783
4783
  /**
4784
4784
  * GOP size (keyframe interval) in units of either frames or seconds per gopSizeUnits.
4785
4785
  * If gopSizeUnits is frames, gopSize must be an integer and must be greater than or equal to 1.
4786
4786
  * If gopSizeUnits is seconds, gopSize must be greater than 0, but need not be an integer.
4787
4787
  * @public
4788
4788
  */
4789
- GopSize?: number;
4789
+ GopSize?: number | undefined;
4790
4790
  /**
4791
4791
  * 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.
4792
4792
  * @public
4793
4793
  */
4794
- GopSizeUnits?: H265GopSizeUnits;
4794
+ GopSizeUnits?: H265GopSizeUnits | undefined;
4795
4795
  /**
4796
4796
  * H.265 Level.
4797
4797
  * @public
4798
4798
  */
4799
- Level?: H265Level;
4799
+ Level?: H265Level | undefined;
4800
4800
  /**
4801
4801
  * Amount of lookahead. A value of low can decrease latency and memory usage, while high can produce better quality for certain content.
4802
4802
  * @public
4803
4803
  */
4804
- LookAheadRateControl?: H265LookAheadRateControl;
4804
+ LookAheadRateControl?: H265LookAheadRateControl | undefined;
4805
4805
  /**
4806
4806
  * For QVBR: See the tooltip for Quality level
4807
4807
  * @public
4808
4808
  */
4809
- MaxBitrate?: number;
4809
+ MaxBitrate?: number | undefined;
4810
4810
  /**
4811
4811
  * Only meaningful if sceneChangeDetect is set to enabled. Defaults to 5 if multiplex rate control is used. Enforces separation between repeated (cadence) I-frames and I-frames inserted by Scene Change Detection. If a scene change I-frame is within I-interval frames of a cadence I-frame, the GOP is shrunk and/or stretched to the scene change I-frame. GOP stretch requires enabling lookahead as well as setting I-interval. The normal cadence resumes for the next GOP. Note: Maximum GOP stretch = GOP size + Min-I-interval - 1
4812
4812
  * @public
4813
4813
  */
4814
- MinIInterval?: number;
4814
+ MinIInterval?: number | undefined;
4815
4815
  /**
4816
4816
  * Pixel Aspect Ratio denominator.
4817
4817
  * @public
4818
4818
  */
4819
- ParDenominator?: number;
4819
+ ParDenominator?: number | undefined;
4820
4820
  /**
4821
4821
  * Pixel Aspect Ratio numerator.
4822
4822
  * @public
4823
4823
  */
4824
- ParNumerator?: number;
4824
+ ParNumerator?: number | undefined;
4825
4825
  /**
4826
4826
  * H.265 Profile.
4827
4827
  * @public
4828
4828
  */
4829
- Profile?: H265Profile;
4829
+ Profile?: H265Profile | undefined;
4830
4830
  /**
4831
4831
  * 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:
4832
4832
  * - Primary screen: Quality level: 8 to 10. Max bitrate: 4M
@@ -4834,7 +4834,7 @@ export interface H265Settings {
4834
4834
  * - Smartphone: Quality level: 6. Max bitrate: 1M to 1.5M
4835
4835
  * @public
4836
4836
  */
4837
- QvbrQualityLevel?: number;
4837
+ QvbrQualityLevel?: number | undefined;
4838
4838
  /**
4839
4839
  * Rate control mode.
4840
4840
  *
@@ -4849,50 +4849,50 @@ export interface H265Settings {
4849
4849
  * by the properties within the Multiplex Program.
4850
4850
  * @public
4851
4851
  */
4852
- RateControlMode?: H265RateControlMode;
4852
+ RateControlMode?: H265RateControlMode | undefined;
4853
4853
  /**
4854
4854
  * Sets the scan type of the output to progressive or top-field-first interlaced.
4855
4855
  * @public
4856
4856
  */
4857
- ScanType?: H265ScanType;
4857
+ ScanType?: H265ScanType | undefined;
4858
4858
  /**
4859
4859
  * Scene change detection.
4860
4860
  * @public
4861
4861
  */
4862
- SceneChangeDetect?: H265SceneChangeDetect;
4862
+ SceneChangeDetect?: H265SceneChangeDetect | undefined;
4863
4863
  /**
4864
4864
  * 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.
4865
4865
  * This field is optional; when no value is specified the encoder will choose the number of slices based on encode resolution.
4866
4866
  * @public
4867
4867
  */
4868
- Slices?: number;
4868
+ Slices?: number | undefined;
4869
4869
  /**
4870
4870
  * H.265 Tier.
4871
4871
  * @public
4872
4872
  */
4873
- Tier?: H265Tier;
4873
+ Tier?: H265Tier | undefined;
4874
4874
  /**
4875
4875
  * Determines how timecodes should be inserted into the video elementary stream.
4876
4876
  * - 'disabled': Do not include timecodes
4877
4877
  * - 'picTimingSei': Pass through picture timing SEI messages from the source specified in Timecode Config
4878
4878
  * @public
4879
4879
  */
4880
- TimecodeInsertion?: H265TimecodeInsertionBehavior;
4880
+ TimecodeInsertion?: H265TimecodeInsertionBehavior | undefined;
4881
4881
  /**
4882
4882
  * Timecode burn-in settings
4883
4883
  * @public
4884
4884
  */
4885
- TimecodeBurninSettings?: TimecodeBurninSettings;
4885
+ TimecodeBurninSettings?: TimecodeBurninSettings | undefined;
4886
4886
  /**
4887
4887
  * If you are setting up the picture as a tile, you must set this to "disabled". In all other configurations, you typically enter "enabled".
4888
4888
  * @public
4889
4889
  */
4890
- MvOverPictureBoundaries?: H265MvOverPictureBoundaries;
4890
+ MvOverPictureBoundaries?: H265MvOverPictureBoundaries | undefined;
4891
4891
  /**
4892
4892
  * If you are setting up the picture as a tile, you must set this to "disabled". In other configurations, you typically enter "enabled".
4893
4893
  * @public
4894
4894
  */
4895
- MvTemporalPredictor?: H265MvTemporalPredictor;
4895
+ MvTemporalPredictor?: H265MvTemporalPredictor | undefined;
4896
4896
  /**
4897
4897
  * Set this field to set up the picture as a tile. You must also set tileWidth.
4898
4898
  * The tile height must result in 22 or fewer rows in the frame. The tile width
@@ -4902,30 +4902,30 @@ export interface H265Settings {
4902
4902
  * codec slices field with a value that MediaLive calculates
4903
4903
  * @public
4904
4904
  */
4905
- TileHeight?: number;
4905
+ TileHeight?: number | undefined;
4906
4906
  /**
4907
4907
  * Set to "padded" to force MediaLive to add padding to the frame, to obtain a frame that is a whole multiple of the tile size.
4908
4908
  * If you are setting up the picture as a tile, you must enter "padded".
4909
4909
  * In all other configurations, you typically enter "none".
4910
4910
  * @public
4911
4911
  */
4912
- TilePadding?: H265TilePadding;
4912
+ TilePadding?: H265TilePadding | undefined;
4913
4913
  /**
4914
4914
  * Set this field to set up the picture as a tile. See tileHeight for more information.
4915
4915
  * @public
4916
4916
  */
4917
- TileWidth?: number;
4917
+ TileWidth?: number | undefined;
4918
4918
  /**
4919
4919
  * Select the tree block size used for encoding. If you enter "auto", the encoder will pick the best size. If you are setting up the picture as a tile, you must set this to 32x32. In all other configurations, you typically enter "auto".
4920
4920
  * @public
4921
4921
  */
4922
- TreeblockSize?: H265TreeblockSize;
4922
+ TreeblockSize?: H265TreeblockSize | undefined;
4923
4923
  /**
4924
4924
  * Sets the minimum QP. If you aren't familiar with quantization adjustment, leave the field empty. MediaLive will
4925
4925
  * apply an appropriate value.
4926
4926
  * @public
4927
4927
  */
4928
- MinQp?: number;
4928
+ MinQp?: number | undefined;
4929
4929
  }
4930
4930
  /**
4931
4931
  * @public
@@ -4987,7 +4987,7 @@ export interface Mpeg2FilterSettings {
4987
4987
  * Temporal Filter Settings
4988
4988
  * @public
4989
4989
  */
4990
- TemporalFilterSettings?: TemporalFilterSettings;
4990
+ TemporalFilterSettings?: TemporalFilterSettings | undefined;
4991
4991
  }
4992
4992
  /**
4993
4993
  * @public
@@ -5046,31 +5046,31 @@ export interface Mpeg2Settings {
5046
5046
  * 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.
5047
5047
  * @public
5048
5048
  */
5049
- AdaptiveQuantization?: Mpeg2AdaptiveQuantization;
5049
+ AdaptiveQuantization?: Mpeg2AdaptiveQuantization | undefined;
5050
5050
  /**
5051
5051
  * 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.
5052
5052
  * AUTO: MediaLive will try to preserve the input AFD value (in cases where multiple AFD values are valid).
5053
5053
  * FIXED: MediaLive will use the value you specify in fixedAFD.
5054
5054
  * @public
5055
5055
  */
5056
- AfdSignaling?: AfdSignaling;
5056
+ AfdSignaling?: AfdSignaling | undefined;
5057
5057
  /**
5058
5058
  * 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.
5059
5059
  * @public
5060
5060
  */
5061
- ColorMetadata?: Mpeg2ColorMetadata;
5061
+ ColorMetadata?: Mpeg2ColorMetadata | undefined;
5062
5062
  /**
5063
5063
  * 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.
5064
5064
  * PASSTHROUGH: Keep the color space of the input content - do not convert it.
5065
5065
  * AUTO:Convert all content that is SD to rec 601, and convert all content that is HD to rec 709.
5066
5066
  * @public
5067
5067
  */
5068
- ColorSpace?: Mpeg2ColorSpace;
5068
+ ColorSpace?: Mpeg2ColorSpace | undefined;
5069
5069
  /**
5070
5070
  * Sets the pixel aspect ratio for the encode.
5071
5071
  * @public
5072
5072
  */
5073
- DisplayAspectRatio?: Mpeg2DisplayRatio;
5073
+ DisplayAspectRatio?: Mpeg2DisplayRatio | undefined;
5074
5074
  /**
5075
5075
  * 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.
5076
5076
  * TEMPORAL: This filter is useful for both source content that is noisy (when it has excessive digital artifacts) and source content that is clean.
@@ -5078,12 +5078,12 @@ export interface Mpeg2Settings {
5078
5078
  * When the content is reasonably clean, the filter tends to decrease the bitrate.
5079
5079
  * @public
5080
5080
  */
5081
- FilterSettings?: Mpeg2FilterSettings;
5081
+ FilterSettings?: Mpeg2FilterSettings | undefined;
5082
5082
  /**
5083
5083
  * 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.
5084
5084
  * @public
5085
5085
  */
5086
- FixedAfd?: FixedAfd;
5086
+ FixedAfd?: FixedAfd | undefined;
5087
5087
  /**
5088
5088
  * description": "The framerate denominator. For example, 1001. The framerate is the numerator divided by the denominator. For example, 24000 / 1001 = 23.976 FPS.
5089
5089
  * @public
@@ -5098,48 +5098,48 @@ export interface Mpeg2Settings {
5098
5098
  * MPEG2: default is open GOP.
5099
5099
  * @public
5100
5100
  */
5101
- GopClosedCadence?: number;
5101
+ GopClosedCadence?: number | undefined;
5102
5102
  /**
5103
5103
  * Relates to the GOP structure. The number of B-frames between reference frames. If you do not know what a B-frame is, use the default.
5104
5104
  * @public
5105
5105
  */
5106
- GopNumBFrames?: number;
5106
+ GopNumBFrames?: number | undefined;
5107
5107
  /**
5108
5108
  * Relates to the GOP structure. The GOP size (keyframe interval) in the units specified in gopSizeUnits. If you do not know what GOP is, use the default.
5109
5109
  * If gopSizeUnits is frames, then the gopSize must be an integer and must be greater than or equal to 1.
5110
5110
  * If gopSizeUnits is seconds, the gopSize must be greater than 0, but does not need to be an integer.
5111
5111
  * @public
5112
5112
  */
5113
- GopSize?: number;
5113
+ GopSize?: number | undefined;
5114
5114
  /**
5115
5115
  * 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.
5116
5116
  * @public
5117
5117
  */
5118
- GopSizeUnits?: Mpeg2GopSizeUnits;
5118
+ GopSizeUnits?: Mpeg2GopSizeUnits | undefined;
5119
5119
  /**
5120
5120
  * Set the scan type of the output to PROGRESSIVE or INTERLACED (top field first).
5121
5121
  * @public
5122
5122
  */
5123
- ScanType?: Mpeg2ScanType;
5123
+ ScanType?: Mpeg2ScanType | undefined;
5124
5124
  /**
5125
5125
  * Relates to the GOP structure. If you do not know what GOP is, use the default.
5126
5126
  * FIXED: Set the number of B-frames in each sub-GOP to the value in gopNumBFrames.
5127
5127
  * DYNAMIC: Let MediaLive optimize the number of B-frames in each sub-GOP, to improve visual quality.
5128
5128
  * @public
5129
5129
  */
5130
- SubgopLength?: Mpeg2SubGopLength;
5130
+ SubgopLength?: Mpeg2SubGopLength | undefined;
5131
5131
  /**
5132
5132
  * 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.
5133
5133
  * DISABLED: do not include timecodes.
5134
5134
  * GOP_TIMECODE: Include timecode metadata in the GOP header.
5135
5135
  * @public
5136
5136
  */
5137
- TimecodeInsertion?: Mpeg2TimecodeInsertionBehavior;
5137
+ TimecodeInsertion?: Mpeg2TimecodeInsertionBehavior | undefined;
5138
5138
  /**
5139
5139
  * Timecode burn-in settings
5140
5140
  * @public
5141
5141
  */
5142
- TimecodeBurninSettings?: TimecodeBurninSettings;
5142
+ TimecodeBurninSettings?: TimecodeBurninSettings | undefined;
5143
5143
  }
5144
5144
  /**
5145
5145
  * Video Codec Settings
@@ -5150,27 +5150,27 @@ export interface VideoCodecSettings {
5150
5150
  * Frame Capture Settings
5151
5151
  * @public
5152
5152
  */
5153
- FrameCaptureSettings?: FrameCaptureSettings;
5153
+ FrameCaptureSettings?: FrameCaptureSettings | undefined;
5154
5154
  /**
5155
5155
  * H264 Settings
5156
5156
  * @public
5157
5157
  */
5158
- H264Settings?: H264Settings;
5158
+ H264Settings?: H264Settings | undefined;
5159
5159
  /**
5160
5160
  * H265 Settings
5161
5161
  * @public
5162
5162
  */
5163
- H265Settings?: H265Settings;
5163
+ H265Settings?: H265Settings | undefined;
5164
5164
  /**
5165
5165
  * Mpeg2 Settings
5166
5166
  * @public
5167
5167
  */
5168
- Mpeg2Settings?: Mpeg2Settings;
5168
+ Mpeg2Settings?: Mpeg2Settings | undefined;
5169
5169
  /**
5170
5170
  * Av1 Settings
5171
5171
  * @public
5172
5172
  */
5173
- Av1Settings?: Av1Settings;
5173
+ Av1Settings?: Av1Settings | undefined;
5174
5174
  }
5175
5175
  /**
5176
5176
  * @public
@@ -5206,12 +5206,12 @@ export interface VideoDescription {
5206
5206
  * Video codec settings.
5207
5207
  * @public
5208
5208
  */
5209
- CodecSettings?: VideoCodecSettings;
5209
+ CodecSettings?: VideoCodecSettings | undefined;
5210
5210
  /**
5211
5211
  * Output video height, in pixels. Must be an even number. For most codecs, you can leave this field and width blank in order to use the height and width (resolution) from the source. Note, however, that leaving blank is not recommended. For the Frame Capture codec, height and width are required.
5212
5212
  * @public
5213
5213
  */
5214
- Height?: number;
5214
+ Height?: number | undefined;
5215
5215
  /**
5216
5216
  * The name of this VideoDescription. Outputs will use this name to uniquely identify this Description. Description names should be unique within this Live Event.
5217
5217
  * @public
@@ -5224,22 +5224,22 @@ export interface VideoDescription {
5224
5224
  * NONE: MediaLive does not clip the input video and does not include the AFD values in the output
5225
5225
  * @public
5226
5226
  */
5227
- RespondToAfd?: VideoDescriptionRespondToAfd;
5227
+ RespondToAfd?: VideoDescriptionRespondToAfd | undefined;
5228
5228
  /**
5229
5229
  * 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.
5230
5230
  * @public
5231
5231
  */
5232
- ScalingBehavior?: VideoDescriptionScalingBehavior;
5232
+ ScalingBehavior?: VideoDescriptionScalingBehavior | undefined;
5233
5233
  /**
5234
5234
  * 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.
5235
5235
  * @public
5236
5236
  */
5237
- Sharpness?: number;
5237
+ Sharpness?: number | undefined;
5238
5238
  /**
5239
5239
  * Output video width, in pixels. Must be an even number. For most codecs, you can leave this field and height blank in order to use the height and width (resolution) from the source. Note, however, that leaving blank is not recommended. For the Frame Capture codec, height and width are required.
5240
5240
  * @public
5241
5241
  */
5242
- Width?: number;
5242
+ Width?: number | undefined;
5243
5243
  }
5244
5244
  /**
5245
5245
  * @public
@@ -5280,7 +5280,7 @@ export declare class BadGatewayException extends __BaseException {
5280
5280
  * Placeholder documentation for __string
5281
5281
  * @public
5282
5282
  */
5283
- Message?: string;
5283
+ Message?: string | undefined;
5284
5284
  /**
5285
5285
  * @internal
5286
5286
  */
@@ -5297,7 +5297,7 @@ export declare class BadRequestException extends __BaseException {
5297
5297
  * Placeholder documentation for __string
5298
5298
  * @public
5299
5299
  */
5300
- Message?: string;
5300
+ Message?: string | undefined;
5301
5301
  /**
5302
5302
  * @internal
5303
5303
  */
@@ -5314,7 +5314,7 @@ export declare class ConflictException extends __BaseException {
5314
5314
  * Placeholder documentation for __string
5315
5315
  * @public
5316
5316
  */
5317
- Message?: string;
5317
+ Message?: string | undefined;
5318
5318
  /**
5319
5319
  * @internal
5320
5320
  */
@@ -5331,7 +5331,7 @@ export declare class ForbiddenException extends __BaseException {
5331
5331
  * Placeholder documentation for __string
5332
5332
  * @public
5333
5333
  */
5334
- Message?: string;
5334
+ Message?: string | undefined;
5335
5335
  /**
5336
5336
  * @internal
5337
5337
  */
@@ -5348,7 +5348,7 @@ export declare class GatewayTimeoutException extends __BaseException {
5348
5348
  * Placeholder documentation for __string
5349
5349
  * @public
5350
5350
  */
5351
- Message?: string;
5351
+ Message?: string | undefined;
5352
5352
  /**
5353
5353
  * @internal
5354
5354
  */
@@ -5365,7 +5365,7 @@ export declare class InternalServerErrorException extends __BaseException {
5365
5365
  * Placeholder documentation for __string
5366
5366
  * @public
5367
5367
  */
5368
- Message?: string;
5368
+ Message?: string | undefined;
5369
5369
  /**
5370
5370
  * @internal
5371
5371
  */
@@ -5382,7 +5382,7 @@ export declare class NotFoundException extends __BaseException {
5382
5382
  * Placeholder documentation for __string
5383
5383
  * @public
5384
5384
  */
5385
- Message?: string;
5385
+ Message?: string | undefined;
5386
5386
  /**
5387
5387
  * @internal
5388
5388
  */
@@ -5399,7 +5399,7 @@ export declare class TooManyRequestsException extends __BaseException {
5399
5399
  * Placeholder documentation for __string
5400
5400
  * @public
5401
5401
  */
5402
- Message?: string;
5402
+ Message?: string | undefined;
5403
5403
  /**
5404
5404
  * @internal
5405
5405
  */
@@ -5416,12 +5416,12 @@ export declare class UnprocessableEntityException extends __BaseException {
5416
5416
  * The error message.
5417
5417
  * @public
5418
5418
  */
5419
- Message?: string;
5419
+ Message?: string | undefined;
5420
5420
  /**
5421
5421
  * A collection of validation error responses.
5422
5422
  * @public
5423
5423
  */
5424
- ValidationErrors?: ValidationError[];
5424
+ ValidationErrors?: ValidationError[] | undefined;
5425
5425
  /**
5426
5426
  * @internal
5427
5427
  */
@@ -5436,7 +5436,7 @@ export interface AccountConfiguration {
5436
5436
  * Specifies the KMS key to use for all features that use key encryption. Specify the ARN of a KMS key that you have created. Or leave blank to use the key that MediaLive creates and manages for you.
5437
5437
  * @public
5438
5438
  */
5439
- KmsKeyId?: string;
5439
+ KmsKeyId?: string | undefined;
5440
5440
  }
5441
5441
  /**
5442
5442
  * Elemental anywhere settings
@@ -5447,12 +5447,12 @@ export interface AnywhereSettings {
5447
5447
  * The ID of the channel placement group for the channel.
5448
5448
  * @public
5449
5449
  */
5450
- ChannelPlacementGroupId?: string;
5450
+ ChannelPlacementGroupId?: string | undefined;
5451
5451
  /**
5452
5452
  * The ID of the cluster for the channel.
5453
5453
  * @public
5454
5454
  */
5455
- ClusterId?: string;
5455
+ ClusterId?: string | undefined;
5456
5456
  }
5457
5457
  /**
5458
5458
  * @public
@@ -5475,12 +5475,12 @@ export interface AvailBlanking {
5475
5475
  * Blanking image to be used. Leave empty for solid black. Only bmp and png images are supported.
5476
5476
  * @public
5477
5477
  */
5478
- AvailBlankingImage?: InputLocation;
5478
+ AvailBlankingImage?: InputLocation | undefined;
5479
5479
  /**
5480
5480
  * When set to enabled, causes video, audio and captions to be blanked when insertion metadata is added.
5481
5481
  * @public
5482
5482
  */
5483
- State?: AvailBlankingState;
5483
+ State?: AvailBlankingState | undefined;
5484
5484
  }
5485
5485
  /**
5486
5486
  * Esam
@@ -5496,12 +5496,12 @@ export interface Esam {
5496
5496
  * When specified, this offset (in milliseconds) is added to the input Ad Avail PTS time. This only applies to embedded SCTE 104/35 messages and does not apply to OOB messages.
5497
5497
  * @public
5498
5498
  */
5499
- AdAvailOffset?: number;
5499
+ AdAvailOffset?: number | undefined;
5500
5500
  /**
5501
5501
  * Documentation update needed
5502
5502
  * @public
5503
5503
  */
5504
- PasswordParam?: string;
5504
+ PasswordParam?: string | undefined;
5505
5505
  /**
5506
5506
  * The URL of the signal conditioner endpoint on the Placement Opportunity Information System (POIS). MediaLive sends SignalProcessingEvents here when SCTE-35 messages are read.
5507
5507
  * @public
@@ -5511,12 +5511,12 @@ export interface Esam {
5511
5511
  * Documentation update needed
5512
5512
  * @public
5513
5513
  */
5514
- Username?: string;
5514
+ Username?: string | undefined;
5515
5515
  /**
5516
5516
  * Optional data sent as zoneIdentity to identify the MediaLive channel to the POIS.
5517
5517
  * @public
5518
5518
  */
5519
- ZoneIdentity?: string;
5519
+ ZoneIdentity?: string | undefined;
5520
5520
  }
5521
5521
  /**
5522
5522
  * @public
@@ -5551,17 +5551,17 @@ export interface Scte35SpliceInsert {
5551
5551
  * When specified, this offset (in milliseconds) is added to the input Ad Avail PTS time. This only applies to embedded SCTE 104/35 messages and does not apply to OOB messages.
5552
5552
  * @public
5553
5553
  */
5554
- AdAvailOffset?: number;
5554
+ AdAvailOffset?: number | undefined;
5555
5555
  /**
5556
5556
  * When set to ignore, Segment Descriptors with noRegionalBlackoutFlag set to 0 will no longer trigger blackouts or Ad Avail slates
5557
5557
  * @public
5558
5558
  */
5559
- NoRegionalBlackoutFlag?: Scte35SpliceInsertNoRegionalBlackoutBehavior;
5559
+ NoRegionalBlackoutFlag?: Scte35SpliceInsertNoRegionalBlackoutBehavior | undefined;
5560
5560
  /**
5561
5561
  * When set to ignore, Segment Descriptors with webDeliveryAllowedFlag set to 0 will no longer trigger blackouts or Ad Avail slates
5562
5562
  * @public
5563
5563
  */
5564
- WebDeliveryAllowedFlag?: Scte35SpliceInsertWebDeliveryAllowedBehavior;
5564
+ WebDeliveryAllowedFlag?: Scte35SpliceInsertWebDeliveryAllowedBehavior | undefined;
5565
5565
  }
5566
5566
  /**
5567
5567
  * @public
@@ -5596,17 +5596,17 @@ export interface Scte35TimeSignalApos {
5596
5596
  * When specified, this offset (in milliseconds) is added to the input Ad Avail PTS time. This only applies to embedded SCTE 104/35 messages and does not apply to OOB messages.
5597
5597
  * @public
5598
5598
  */
5599
- AdAvailOffset?: number;
5599
+ AdAvailOffset?: number | undefined;
5600
5600
  /**
5601
5601
  * When set to ignore, Segment Descriptors with noRegionalBlackoutFlag set to 0 will no longer trigger blackouts or Ad Avail slates
5602
5602
  * @public
5603
5603
  */
5604
- NoRegionalBlackoutFlag?: Scte35AposNoRegionalBlackoutBehavior;
5604
+ NoRegionalBlackoutFlag?: Scte35AposNoRegionalBlackoutBehavior | undefined;
5605
5605
  /**
5606
5606
  * When set to ignore, Segment Descriptors with webDeliveryAllowedFlag set to 0 will no longer trigger blackouts or Ad Avail slates
5607
5607
  * @public
5608
5608
  */
5609
- WebDeliveryAllowedFlag?: Scte35AposWebDeliveryAllowedBehavior;
5609
+ WebDeliveryAllowedFlag?: Scte35AposWebDeliveryAllowedBehavior | undefined;
5610
5610
  }
5611
5611
  /**
5612
5612
  * Avail Settings
@@ -5617,17 +5617,17 @@ export interface AvailSettings {
5617
5617
  * Esam
5618
5618
  * @public
5619
5619
  */
5620
- Esam?: Esam;
5620
+ Esam?: Esam | undefined;
5621
5621
  /**
5622
5622
  * Typical configuration that applies breaks on splice inserts in addition to time signal placement opportunities, breaks, and advertisements.
5623
5623
  * @public
5624
5624
  */
5625
- Scte35SpliceInsert?: Scte35SpliceInsert;
5625
+ Scte35SpliceInsert?: Scte35SpliceInsert | undefined;
5626
5626
  /**
5627
5627
  * Atypical configuration that applies segment breaks only on SCTE-35 time signal placement opportunities and breaks.
5628
5628
  * @public
5629
5629
  */
5630
- Scte35TimeSignalApos?: Scte35TimeSignalApos;
5630
+ Scte35TimeSignalApos?: Scte35TimeSignalApos | undefined;
5631
5631
  }
5632
5632
  /**
5633
5633
  * @public
@@ -5650,7 +5650,7 @@ export interface AvailConfiguration {
5650
5650
  * Controls how SCTE-35 messages create cues. Splice Insert mode treats all segmentation signals traditionally. With Time Signal APOS mode only Time Signal Placement Opportunity and Break messages create segment breaks. With ESAM mode, signals are forwarded to an ESAM server for possible update.
5651
5651
  * @public
5652
5652
  */
5653
- AvailSettings?: AvailSettings;
5653
+ AvailSettings?: AvailSettings | undefined;
5654
5654
  /**
5655
5655
  * Configures whether SCTE 35 passthrough triggers segment breaks in all output groups that use segmented outputs. Insertion of a SCTE 35 message typically results in a segment break, in addition to the regular cadence of breaks. The segment breaks appear in video outputs, audio outputs, and captions outputs (if any).
5656
5656
  *
@@ -5658,7 +5658,7 @@ export interface AvailConfiguration {
5658
5658
  * SCTE35_ENABLED_OUTPUT_GROUPS: Insert the segment break only in output groups that have SCTE 35 passthrough enabled. This is the recommended value, because it reduces unnecessary segment breaks.
5659
5659
  * @public
5660
5660
  */
5661
- Scte35SegmentationScope?: Scte35SegmentationScope;
5661
+ Scte35SegmentationScope?: Scte35SegmentationScope | undefined;
5662
5662
  }
5663
5663
  /**
5664
5664
  * A request to delete resources
@@ -5669,22 +5669,22 @@ export interface BatchDeleteRequest {
5669
5669
  * List of channel IDs
5670
5670
  * @public
5671
5671
  */
5672
- ChannelIds?: string[];
5672
+ ChannelIds?: string[] | undefined;
5673
5673
  /**
5674
5674
  * List of input IDs
5675
5675
  * @public
5676
5676
  */
5677
- InputIds?: string[];
5677
+ InputIds?: string[] | undefined;
5678
5678
  /**
5679
5679
  * List of input security group IDs
5680
5680
  * @public
5681
5681
  */
5682
- InputSecurityGroupIds?: string[];
5682
+ InputSecurityGroupIds?: string[] | undefined;
5683
5683
  /**
5684
5684
  * List of multiplex IDs
5685
5685
  * @public
5686
5686
  */
5687
- MultiplexIds?: string[];
5687
+ MultiplexIds?: string[] | undefined;
5688
5688
  }
5689
5689
  /**
5690
5690
  * Placeholder documentation for BatchDeleteResponse
@@ -5695,12 +5695,12 @@ export interface BatchDeleteResponse {
5695
5695
  * List of failed operations
5696
5696
  * @public
5697
5697
  */
5698
- Failed?: BatchFailedResultModel[];
5698
+ Failed?: BatchFailedResultModel[] | undefined;
5699
5699
  /**
5700
5700
  * List of successful operations
5701
5701
  * @public
5702
5702
  */
5703
- Successful?: BatchSuccessfulResultModel[];
5703
+ Successful?: BatchSuccessfulResultModel[] | undefined;
5704
5704
  }
5705
5705
  /**
5706
5706
  * A list of schedule actions to create (in a request) or that have been created (in a response).
@@ -5755,12 +5755,12 @@ export interface BatchStartRequest {
5755
5755
  * List of channel IDs
5756
5756
  * @public
5757
5757
  */
5758
- ChannelIds?: string[];
5758
+ ChannelIds?: string[] | undefined;
5759
5759
  /**
5760
5760
  * List of multiplex IDs
5761
5761
  * @public
5762
5762
  */
5763
- MultiplexIds?: string[];
5763
+ MultiplexIds?: string[] | undefined;
5764
5764
  }
5765
5765
  /**
5766
5766
  * Placeholder documentation for BatchStartResponse
@@ -5771,12 +5771,12 @@ export interface BatchStartResponse {
5771
5771
  * List of failed operations
5772
5772
  * @public
5773
5773
  */
5774
- Failed?: BatchFailedResultModel[];
5774
+ Failed?: BatchFailedResultModel[] | undefined;
5775
5775
  /**
5776
5776
  * List of successful operations
5777
5777
  * @public
5778
5778
  */
5779
- Successful?: BatchSuccessfulResultModel[];
5779
+ Successful?: BatchSuccessfulResultModel[] | undefined;
5780
5780
  }
5781
5781
  /**
5782
5782
  * A request to stop resources
@@ -5787,12 +5787,12 @@ export interface BatchStopRequest {
5787
5787
  * List of channel IDs
5788
5788
  * @public
5789
5789
  */
5790
- ChannelIds?: string[];
5790
+ ChannelIds?: string[] | undefined;
5791
5791
  /**
5792
5792
  * List of multiplex IDs
5793
5793
  * @public
5794
5794
  */
5795
- MultiplexIds?: string[];
5795
+ MultiplexIds?: string[] | undefined;
5796
5796
  }
5797
5797
  /**
5798
5798
  * Placeholder documentation for BatchStopResponse
@@ -5803,12 +5803,12 @@ export interface BatchStopResponse {
5803
5803
  * List of failed operations
5804
5804
  * @public
5805
5805
  */
5806
- Failed?: BatchFailedResultModel[];
5806
+ Failed?: BatchFailedResultModel[] | undefined;
5807
5807
  /**
5808
5808
  * List of successful operations
5809
5809
  * @public
5810
5810
  */
5811
- Successful?: BatchSuccessfulResultModel[];
5811
+ Successful?: BatchSuccessfulResultModel[] | undefined;
5812
5812
  }
5813
5813
  /**
5814
5814
  * List of actions to create and list of actions to delete.
@@ -5824,12 +5824,12 @@ export interface BatchUpdateScheduleRequest {
5824
5824
  * Schedule actions to create in the schedule.
5825
5825
  * @public
5826
5826
  */
5827
- Creates?: BatchScheduleActionCreateRequest;
5827
+ Creates?: BatchScheduleActionCreateRequest | undefined;
5828
5828
  /**
5829
5829
  * Schedule actions to delete from the schedule.
5830
5830
  * @public
5831
5831
  */
5832
- Deletes?: BatchScheduleActionDeleteRequest;
5832
+ Deletes?: BatchScheduleActionDeleteRequest | undefined;
5833
5833
  }
5834
5834
  /**
5835
5835
  * Placeholder documentation for BatchUpdateScheduleResponse
@@ -5840,12 +5840,12 @@ export interface BatchUpdateScheduleResponse {
5840
5840
  * Schedule actions created in the schedule.
5841
5841
  * @public
5842
5842
  */
5843
- Creates?: BatchScheduleActionCreateResult;
5843
+ Creates?: BatchScheduleActionCreateResult | undefined;
5844
5844
  /**
5845
5845
  * Schedule actions deleted from the schedule.
5846
5846
  * @public
5847
5847
  */
5848
- Deletes?: BatchScheduleActionDeleteResult;
5848
+ Deletes?: BatchScheduleActionDeleteResult | undefined;
5849
5849
  }
5850
5850
  /**
5851
5851
  * @public
@@ -5880,27 +5880,27 @@ export interface BlackoutSlate {
5880
5880
  * Blackout slate image to be used. Leave empty for solid black. Only bmp and png images are supported.
5881
5881
  * @public
5882
5882
  */
5883
- BlackoutSlateImage?: InputLocation;
5883
+ BlackoutSlateImage?: InputLocation | undefined;
5884
5884
  /**
5885
5885
  * 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".
5886
5886
  * @public
5887
5887
  */
5888
- NetworkEndBlackout?: BlackoutSlateNetworkEndBlackout;
5888
+ NetworkEndBlackout?: BlackoutSlateNetworkEndBlackout | undefined;
5889
5889
  /**
5890
5890
  * Path to local file to use as Network End Blackout image. Image will be scaled to fill the entire output raster.
5891
5891
  * @public
5892
5892
  */
5893
- NetworkEndBlackoutImage?: InputLocation;
5893
+ NetworkEndBlackoutImage?: InputLocation | undefined;
5894
5894
  /**
5895
5895
  * Provides Network ID that matches EIDR ID format (e.g., "10.XXXX/XXXX-XXXX-XXXX-XXXX-XXXX-C").
5896
5896
  * @public
5897
5897
  */
5898
- NetworkId?: string;
5898
+ NetworkId?: string | undefined;
5899
5899
  /**
5900
5900
  * When set to enabled, causes video, audio and captions to be blanked when indicated by program metadata.
5901
5901
  * @public
5902
5902
  */
5903
- State?: BlackoutSlateState;
5903
+ State?: BlackoutSlateState | undefined;
5904
5904
  }
5905
5905
  /**
5906
5906
  * Placeholder documentation for CancelInputDeviceTransferRequest
@@ -5964,13 +5964,13 @@ export interface FeatureActivations {
5964
5964
  * If you disable the feature on an existing schedule, make sure that you first delete all input prepare actions from the schedule.
5965
5965
  * @public
5966
5966
  */
5967
- InputPrepareScheduleActions?: FeatureActivationsInputPrepareScheduleActions;
5967
+ InputPrepareScheduleActions?: FeatureActivationsInputPrepareScheduleActions | undefined;
5968
5968
  /**
5969
5969
  * Enables the output static image overlay feature. Enabling this feature allows you to send channel schedule updates
5970
5970
  * to display/clear/modify image overlays on an output-by-output bases.
5971
5971
  * @public
5972
5972
  */
5973
- OutputStaticImageOverlayScheduleActions?: FeatureActivationsOutputStaticImageOverlayScheduleActions;
5973
+ OutputStaticImageOverlayScheduleActions?: FeatureActivationsOutputStaticImageOverlayScheduleActions | undefined;
5974
5974
  }
5975
5975
  /**
5976
5976
  * @public
@@ -6005,27 +6005,27 @@ export interface InputLossBehavior {
6005
6005
  * Documentation update needed
6006
6006
  * @public
6007
6007
  */
6008
- BlackFrameMsec?: number;
6008
+ BlackFrameMsec?: number | undefined;
6009
6009
  /**
6010
6010
  * When input loss image type is "color" this field specifies the color to use. Value: 6 hex characters representing the values of RGB.
6011
6011
  * @public
6012
6012
  */
6013
- InputLossImageColor?: string;
6013
+ InputLossImageColor?: string | undefined;
6014
6014
  /**
6015
6015
  * When input loss image type is "slate" these fields specify the parameters for accessing the slate.
6016
6016
  * @public
6017
6017
  */
6018
- InputLossImageSlate?: InputLocation;
6018
+ InputLossImageSlate?: InputLocation | undefined;
6019
6019
  /**
6020
6020
  * Indicates whether to substitute a solid color or a slate into the output after input loss exceeds blackFrameMsec.
6021
6021
  * @public
6022
6022
  */
6023
- InputLossImageType?: InputLossImageType;
6023
+ InputLossImageType?: InputLossImageType | undefined;
6024
6024
  /**
6025
6025
  * Documentation update needed
6026
6026
  * @public
6027
6027
  */
6028
- RepeatFrameMsec?: number;
6028
+ RepeatFrameMsec?: number | undefined;
6029
6029
  }
6030
6030
  /**
6031
6031
  * @public
@@ -6048,12 +6048,12 @@ export interface EpochLockingSettings {
6048
6048
  * Optional. Enter a value here to use a custom epoch, instead of the standard epoch (which started at 1970-01-01T00:00:00 UTC). Specify the start time of the custom epoch, in YYYY-MM-DDTHH:MM:SS in UTC. The time must be 2000-01-01T00:00:00 or later. Always set the MM:SS portion to 00:00.
6049
6049
  * @public
6050
6050
  */
6051
- CustomEpoch?: string;
6051
+ CustomEpoch?: string | undefined;
6052
6052
  /**
6053
6053
  * Optional. Enter a time for the jam sync. The default is midnight UTC. When epoch locking is enabled, MediaLive performs a daily jam sync on every output encode to ensure timecodes don’t diverge from the wall clock. The jam sync applies only to encodes with frame rate of 29.97 or 59.94 FPS. To override, enter a time in HH:MM:SS in UTC. Always set the MM:SS portion to 00:00.
6054
6054
  * @public
6055
6055
  */
6056
- JamSyncTime?: string;
6056
+ JamSyncTime?: string | undefined;
6057
6057
  }
6058
6058
  /**
6059
6059
  * Pipeline Locking Settings
@@ -6070,12 +6070,12 @@ export interface OutputLockingSettings {
6070
6070
  * Epoch Locking Settings
6071
6071
  * @public
6072
6072
  */
6073
- EpochLockingSettings?: EpochLockingSettings;
6073
+ EpochLockingSettings?: EpochLockingSettings | undefined;
6074
6074
  /**
6075
6075
  * Pipeline Locking Settings
6076
6076
  * @public
6077
6077
  */
6078
- PipelineLockingSettings?: PipelineLockingSettings;
6078
+ PipelineLockingSettings?: PipelineLockingSettings | undefined;
6079
6079
  }
6080
6080
  /**
6081
6081
  * @public