Interface CfnOriginEndpoint.MssPackageProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOriginEndpoint.MssPackageProperty.Jsii$Proxy
- Enclosing class:
- CfnOriginEndpoint
@Stability(Stable)
public static interface CfnOriginEndpoint.MssPackageProperty
extends software.amazon.jsii.JsiiSerializable
Parameters for Microsoft Smooth Streaming packaging.
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.*;
MssPackageProperty mssPackageProperty = MssPackageProperty.builder()
.encryption(MssEncryptionProperty.builder()
.spekeKeyProvider(SpekeKeyProviderProperty.builder()
.resourceId("resourceId")
.roleArn("roleArn")
.systemIds(List.of("systemIds"))
.url("url")
// the properties below are optional
.certificateArn("certificateArn")
.encryptionContractConfiguration(EncryptionContractConfigurationProperty.builder().build())
.build())
.build())
.manifestWindowSeconds(123)
.segmentDurationSeconds(123)
.streamSelection(StreamSelectionProperty.builder()
.maxVideoBitsPerSecond(123)
.minVideoBitsPerSecond(123)
.streamOrder("streamOrder")
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnOriginEndpoint.MssPackagePropertystatic final classAn implementation forCfnOriginEndpoint.MssPackageProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectParameters for encrypting content.default NumberTime window (in seconds) contained in each manifest.default NumberDuration (in seconds) of each fragment.default ObjectLimitations for outputs from the endpoint, based on the video bitrate.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEncryption
Parameters for encrypting content. -
getManifestWindowSeconds
Time window (in seconds) contained in each manifest. -
getSegmentDurationSeconds
Duration (in seconds) of each fragment.Actual fragments are rounded to the nearest multiple of the source fragment duration.
-
getStreamSelection
Limitations for outputs from the endpoint, based on the video bitrate. -
builder
-