Interface CfnChannel.MediaPackageOutputSettingsProperty

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

@Stability(Stable) public static interface CfnChannel.MediaPackageOutputSettingsProperty extends software.amazon.jsii.JsiiSerializable
The settings for a MediaPackage output.

The parent of this entity is OutputSettings.

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.*;
 MediaPackageOutputSettingsProperty mediaPackageOutputSettingsProperty = MediaPackageOutputSettingsProperty.builder()
         .mediaPackageV2DestinationSettings(MediaPackageV2DestinationSettingsProperty.builder()
                 .audioGroupId("audioGroupId")
                 .audioRenditionSets("audioRenditionSets")
                 .hlsAutoSelect("hlsAutoSelect")
                 .hlsDefault("hlsDefault")
                 .build())
         .build();
 

See Also: