@Stability(value=Stable)
public static interface CfnOriginEndpoint.MssPackageProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnOriginEndpoint.MssPackageProperty.Builder
A builder for
CfnOriginEndpoint.MssPackageProperty |
static class |
CfnOriginEndpoint.MssPackageProperty.Jsii$Proxy
An implementation for
CfnOriginEndpoint.MssPackageProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnOriginEndpoint.MssPackageProperty.Builder |
builder() |
default Object |
getEncryption()
Parameters for encrypting content.
|
default Number |
getManifestWindowSeconds()
Time window (in seconds) contained in each manifest.
|
default Number |
getSegmentDurationSeconds()
Duration (in seconds) of each fragment.
|
default Object |
getStreamSelection()
Limitations for outputs from the endpoint, based on the video bitrate.
|
@Stability(value=Stable) @Nullable default Object getEncryption()
@Stability(value=Stable) @Nullable default Number getManifestWindowSeconds()
@Stability(value=Stable) @Nullable default Number getSegmentDurationSeconds()
Actual fragments are rounded to the nearest multiple of the source fragment duration.
@Stability(value=Stable) @Nullable default Object getStreamSelection()
@Stability(value=Stable) static CfnOriginEndpoint.MssPackageProperty.Builder builder()
Copyright © 2022. All rights reserved.