Interface CfnOriginEndpoint.MssManifestConfigurationProperty

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

@Stability(Stable) public static interface CfnOriginEndpoint.MssManifestConfigurationProperty extends software.amazon.jsii.JsiiSerializable

Configuration details for a Microsoft Smooth Streaming (MSS) manifest associated with an origin endpoint.

This includes all the settings and properties that define how the MSS content is packaged and delivered.

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.mediapackagev2.*;
 MssManifestConfigurationProperty mssManifestConfigurationProperty = MssManifestConfigurationProperty.builder()
         .manifestName("manifestName")
         // the properties below are optional
         .filterConfiguration(FilterConfigurationProperty.builder()
                 .clipStartTime("clipStartTime")
                 .end("end")
                 .manifestFilter("manifestFilter")
                 .start("start")
                 .timeDelaySeconds(123)
                 .build())
         .manifestLayout("manifestLayout")
         .manifestWindowSeconds(123)
         .build();
 

See Also: