Interface CfnChannel.MediaPackageGroupSettingsProperty

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

@Stability(Stable) public static interface CfnChannel.MediaPackageGroupSettingsProperty extends software.amazon.jsii.JsiiSerializable
The settings for the MediaPackage group.

The parent of this entity is OutputGroupSettings.

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.*;
 MediaPackageGroupSettingsProperty mediaPackageGroupSettingsProperty = MediaPackageGroupSettingsProperty.builder()
         .destination(OutputLocationRefProperty.builder()
                 .destinationRefId("destinationRefId")
                 .build())
         .mediapackageV2GroupSettings(MediaPackageV2GroupSettingsProperty.builder()
                 .captionLanguageMappings(List.of(CaptionLanguageMappingProperty.builder()
                         .captionChannel(123)
                         .languageCode("languageCode")
                         .languageDescription("languageDescription")
                         .build()))
                 .id3Behavior("id3Behavior")
                 .klvBehavior("klvBehavior")
                 .nielsenId3Behavior("nielsenId3Behavior")
                 .scte35Type("scte35Type")
                 .segmentLength(123)
                 .segmentLengthUnits("segmentLengthUnits")
                 .timedMetadataId3Frame("timedMetadataId3Frame")
                 .timedMetadataId3Period(123)
                 .timedMetadataPassthrough("timedMetadataPassthrough")
                 .build())
         .build();
 

See Also: