Interface CfnChannel.M3u8SettingsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnChannel.M3u8SettingsProperty.Jsii$Proxy
Enclosing class:
CfnChannel

@Stability(Stable) public static interface CfnChannel.M3u8SettingsProperty extends software.amazon.jsii.JsiiSerializable
Settings for the M3U8 container.

The parent of this entity is StandardHlsSettings.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.medialive.*;
 M3u8SettingsProperty m3u8SettingsProperty = M3u8SettingsProperty.builder()
         .audioFramesPerPes(123)
         .audioPids("audioPids")
         .ecmPid("ecmPid")
         .klvBehavior("klvBehavior")
         .klvDataPids("klvDataPids")
         .nielsenId3Behavior("nielsenId3Behavior")
         .patInterval(123)
         .pcrControl("pcrControl")
         .pcrPeriod(123)
         .pcrPid("pcrPid")
         .pmtInterval(123)
         .pmtPid("pmtPid")
         .programNum(123)
         .scte35Behavior("scte35Behavior")
         .scte35Pid("scte35Pid")
         .timedMetadataBehavior("timedMetadataBehavior")
         .timedMetadataPid("timedMetadataPid")
         .transportStreamId(123)
         .videoPid("videoPid")
         .build();
 

See Also: