@Generated(value="jsii-pacmak/1.46.0 (build cd08c55)", date="2021-11-25T20:11:07.333Z") @Stability(value=Stable) public interface CfnPackagingConfigurationProps 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.*;
CfnPackagingConfigurationProps cfnPackagingConfigurationProps = CfnPackagingConfigurationProps.builder()
.id("id")
.packagingGroupId("packagingGroupId")
// the properties below are optional
.cmafPackage(CmafPackageProperty.builder()
.hlsManifests(List.of(HlsManifestProperty.builder()
.adMarkers("adMarkers")
.includeIframeOnlyStream(false)
.manifestName("manifestName")
.programDateTimeIntervalSeconds(123)
.repeatExtXKey(false)
.streamSelection(StreamSelectionProperty.builder()
.maxVideoBitsPerSecond(123)
.minVideoBitsPerSecond(123)
.streamOrder("streamOrder")
.build())
.build()))
// the properties below are optional
.encryption(CmafEncryptionProperty.builder()
.spekeKeyProvider(SpekeKeyProviderProperty.builder()
.roleArn("roleArn")
.systemIds(List.of("systemIds"))
.url("url")
.build())
.build())
.includeEncoderConfigurationInSegments(false)
.segmentDurationSeconds(123)
.build())
.dashPackage(DashPackageProperty.builder()
.dashManifests(List.of(DashManifestProperty.builder()
.manifestLayout("manifestLayout")
.manifestName("manifestName")
.minBufferTimeSeconds(123)
.profile("profile")
.streamSelection(StreamSelectionProperty.builder()
.maxVideoBitsPerSecond(123)
.minVideoBitsPerSecond(123)
.streamOrder("streamOrder")
.build())
.build()))
// the properties below are optional
.encryption(DashEncryptionProperty.builder()
.spekeKeyProvider(SpekeKeyProviderProperty.builder()
.roleArn("roleArn")
.systemIds(List.of("systemIds"))
.url("url")
.build())
.build())
.includeEncoderConfigurationInSegments(false)
.periodTriggers(List.of("periodTriggers"))
.segmentDurationSeconds(123)
.segmentTemplateFormat("segmentTemplateFormat")
.build())
.hlsPackage(HlsPackageProperty.builder()
.hlsManifests(List.of(HlsManifestProperty.builder()
.adMarkers("adMarkers")
.includeIframeOnlyStream(false)
.manifestName("manifestName")
.programDateTimeIntervalSeconds(123)
.repeatExtXKey(false)
.streamSelection(StreamSelectionProperty.builder()
.maxVideoBitsPerSecond(123)
.minVideoBitsPerSecond(123)
.streamOrder("streamOrder")
.build())
.build()))
// the properties below are optional
.encryption(HlsEncryptionProperty.builder()
.spekeKeyProvider(SpekeKeyProviderProperty.builder()
.roleArn("roleArn")
.systemIds(List.of("systemIds"))
.url("url")
.build())
// the properties below are optional
.constantInitializationVector("constantInitializationVector")
.encryptionMethod("encryptionMethod")
.build())
.segmentDurationSeconds(123)
.useAudioRenditionGroup(false)
.build())
.mssPackage(MssPackageProperty.builder()
.mssManifests(List.of(MssManifestProperty.builder()
.manifestName("manifestName")
.streamSelection(StreamSelectionProperty.builder()
.maxVideoBitsPerSecond(123)
.minVideoBitsPerSecond(123)
.streamOrder("streamOrder")
.build())
.build()))
// the properties below are optional
.encryption(MssEncryptionProperty.builder()
.spekeKeyProvider(SpekeKeyProviderProperty.builder()
.roleArn("roleArn")
.systemIds(List.of("systemIds"))
.url("url")
.build())
.build())
.segmentDurationSeconds(123)
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnPackagingConfigurationProps.Builder
A builder for
CfnPackagingConfigurationProps |
static class |
CfnPackagingConfigurationProps.Jsii$Proxy
An implementation for
CfnPackagingConfigurationProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnPackagingConfigurationProps.Builder |
builder() |
default Object |
getCmafPackage()
`AWS::MediaPackage::PackagingConfiguration.CmafPackage`.
|
default Object |
getDashPackage()
`AWS::MediaPackage::PackagingConfiguration.DashPackage`.
|
default Object |
getHlsPackage()
`AWS::MediaPackage::PackagingConfiguration.HlsPackage`.
|
String |
getId()
`AWS::MediaPackage::PackagingConfiguration.Id`.
|
default Object |
getMssPackage()
`AWS::MediaPackage::PackagingConfiguration.MssPackage`.
|
String |
getPackagingGroupId()
`AWS::MediaPackage::PackagingConfiguration.PackagingGroupId`.
|
default List<CfnTag> |
getTags()
`AWS::MediaPackage::PackagingConfiguration.Tags`.
|
@Stability(value=Stable) @Nullable default Object getCmafPackage()
@Stability(value=Stable) @Nullable default Object getDashPackage()
@Stability(value=Stable) @Nullable default Object getHlsPackage()
@Stability(value=Stable) @NotNull String getId()
@Stability(value=Stable) @Nullable default Object getMssPackage()
@Stability(value=Stable) @NotNull String getPackagingGroupId()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
@Stability(value=Stable) static CfnPackagingConfigurationProps.Builder builder()
Copyright © 2021. All rights reserved.