Interface CfnOriginEndpointPropsMixin.MssPackageProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOriginEndpointPropsMixin.MssPackageProperty.Jsii$Proxy
- Enclosing class:
CfnOriginEndpointPropsMixin
@Stability(Stable)
public static interface CfnOriginEndpointPropsMixin.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.cfnpropertymixins.services.mediapackage.*;
MssPackageProperty mssPackageProperty = MssPackageProperty.builder()
.encryption(MssEncryptionProperty.builder()
.spekeKeyProvider(SpekeKeyProviderProperty.builder()
.certificateArn("certificateArn")
.encryptionContractConfiguration(EncryptionContractConfigurationProperty.builder()
.presetSpeke20Audio("presetSpeke20Audio")
.presetSpeke20Video("presetSpeke20Video")
.build())
.resourceId("resourceId")
.roleArn("roleArn")
.systemIds(List.of("systemIds"))
.url("url")
.build())
.build())
.manifestWindowSeconds(123)
.segmentDurationSeconds(123)
.streamSelection(StreamSelectionProperty.builder()
.maxVideoBitsPerSecond(123)
.minVideoBitsPerSecond(123)
.streamOrder("streamOrder")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnOriginEndpointPropsMixin.MssPackagePropertystatic final classAn implementation forCfnOriginEndpointPropsMixin.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.Returns union: either
IResolvableorCfnOriginEndpointPropsMixin.MssEncryptionProperty- See Also:
-
getManifestWindowSeconds
Time window (in seconds) contained in each manifest.- See Also:
-
getSegmentDurationSeconds
Duration (in seconds) of each fragment.Actual fragments are rounded to the nearest multiple of the source fragment duration.
- See Also:
-
getStreamSelection
Limitations for outputs from the endpoint, based on the video bitrate.Returns union: either
IResolvableorCfnOriginEndpointPropsMixin.StreamSelectionProperty- See Also:
-
builder
-