Interface CfnPackagingConfiguration.DashManifestProperty

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

@Stability(Stable) public static interface CfnPackagingConfiguration.DashManifestProperty extends software.amazon.jsii.JsiiSerializable
Parameters for a DASH manifest.

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.mediapackage.*;
 DashManifestProperty dashManifestProperty = DashManifestProperty.builder()
         .manifestLayout("manifestLayout")
         .manifestName("manifestName")
         .minBufferTimeSeconds(123)
         .profile("profile")
         .scteMarkersSource("scteMarkersSource")
         .streamSelection(StreamSelectionProperty.builder()
                 .maxVideoBitsPerSecond(123)
                 .minVideoBitsPerSecond(123)
                 .streamOrder("streamOrder")
                 .build())
         .build();
 

See Also: