Interface CfnChannel.HlsSettingsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnChannel.HlsSettingsProperty.Jsii$Proxy
- Enclosing class:
CfnChannel
@Stability(Stable)
public static interface CfnChannel.HlsSettingsProperty
extends software.amazon.jsii.JsiiSerializable
The settings for an HLS output.
The parent of this entity is HlsOutputSettings.
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.*; HlsSettingsProperty hlsSettingsProperty = HlsSettingsProperty.builder() .audioOnlyHlsSettings(AudioOnlyHlsSettingsProperty.builder() .audioGroupId("audioGroupId") .audioOnlyImage(InputLocationProperty.builder() .passwordParam("passwordParam") .uri("uri") .username("username") .build()) .audioTrackType("audioTrackType") .segmentType("segmentType") .build()) .fmp4HlsSettings(Fmp4HlsSettingsProperty.builder() .audioRenditionSets("audioRenditionSets") .nielsenId3Behavior("nielsenId3Behavior") .timedMetadataBehavior("timedMetadataBehavior") .build()) .frameCaptureHlsSettings(FrameCaptureHlsSettingsProperty.builder().build()) .standardHlsSettings(StandardHlsSettingsProperty.builder() .audioRenditionSets("audioRenditionSets") .m3U8Settings(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()) .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnChannel.HlsSettingsProperty
static final class
An implementation forCfnChannel.HlsSettingsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
The settings for an audio-only output.default Object
The settings for an fMP4 container.default Object
Settings for a frame capture output in an HLS output group.default Object
The settings for a standard output (an output that is not audio-only).Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAudioOnlyHlsSettings
The settings for an audio-only output.- See Also:
-
getFmp4HlsSettings
The settings for an fMP4 container.- See Also:
-
getFrameCaptureHlsSettings
Settings for a frame capture output in an HLS output group.- See Also:
-
getStandardHlsSettings
The settings for a standard output (an output that is not audio-only).- See Also:
-
builder
-