public static interface CfnChannel.StandardHlsSettingsProperty
The parent of this entity is HlsSettings.
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.*; StandardHlsSettingsProperty standardHlsSettingsProperty = StandardHlsSettingsProperty.builder() .audioRenditionSets("audioRenditionSets") .m3U8Settings(M3u8SettingsProperty.builder() .audioFramesPerPes(123) .audioPids("audioPids") .ecmPid("ecmPid") .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()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnChannel.StandardHlsSettingsProperty.Builder
A builder for
CfnChannel.StandardHlsSettingsProperty |
static class |
CfnChannel.StandardHlsSettingsProperty.Jsii$Proxy
An implementation for
CfnChannel.StandardHlsSettingsProperty |
Modifier and Type | Method and Description |
---|---|
static CfnChannel.StandardHlsSettingsProperty.Builder |
builder() |
default java.lang.String |
getAudioRenditionSets()
Lists all the audio groups that are used with the video output stream.
|
default java.lang.Object |
getM3U8Settings()
Settings for the M3U8 container.
|
default java.lang.String getAudioRenditionSets()
This inputs all the audio GROUP-IDs that are associated with the video, separated by a comma (,).
default java.lang.Object getM3U8Settings()
static CfnChannel.StandardHlsSettingsProperty.Builder builder()