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() .presetSpeke20Audio("presetSpeke20Audio") .presetSpeke20Video("presetSpeke20Video") .build()) .build()) .build()) .manifestWindowSeconds(123) .segmentDurationSeconds(123) .streamSelection(StreamSelectionProperty.builder() .maxVideoBitsPerSecond(123) .minVideoBitsPerSecond(123) .streamOrder("streamOrder") .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnOriginEndpoint.MssPackageProperty
static final class
An implementation forCfnOriginEndpoint.MssPackageProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
Parameters for encrypting content.default Number
Time window (in seconds) contained in each manifest.default Number
Duration (in seconds) of each fragment.default Object
Limitations 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.- 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.- See Also:
-
builder
-