Interface CfnChannel.AudioOnlyHlsSettingsProperty

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

@Stability(Stable) public static interface CfnChannel.AudioOnlyHlsSettingsProperty extends software.amazon.jsii.JsiiSerializable
The configuration of an audio-only HLS output.

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.*;
 AudioOnlyHlsSettingsProperty audioOnlyHlsSettingsProperty = AudioOnlyHlsSettingsProperty.builder()
         .audioGroupId("audioGroupId")
         .audioOnlyImage(InputLocationProperty.builder()
                 .passwordParam("passwordParam")
                 .uri("uri")
                 .username("username")
                 .build())
         .audioTrackType("audioTrackType")
         .segmentType("segmentType")
         .build();
 

See Also: