Interface CfnPackagingConfiguration.MssManifestProperty

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

@Stability(Stable) public static interface CfnPackagingConfiguration.MssManifestProperty extends software.amazon.jsii.JsiiSerializable
Parameters for a Microsoft Smooth 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.*;
 MssManifestProperty mssManifestProperty = MssManifestProperty.builder()
         .manifestName("manifestName")
         .streamSelection(StreamSelectionProperty.builder()
                 .maxVideoBitsPerSecond(123)
                 .minVideoBitsPerSecond(123)
                 .streamOrder("streamOrder")
                 .build())
         .build();
 

See Also: