public static interface CfnOriginEndpoint.DashEncryptionProperty
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.*; DashEncryptionProperty dashEncryptionProperty = DashEncryptionProperty.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()) // the properties below are optional .keyRotationIntervalSeconds(123) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnOriginEndpoint.DashEncryptionProperty.Builder
A builder for
CfnOriginEndpoint.DashEncryptionProperty |
static class |
CfnOriginEndpoint.DashEncryptionProperty.Jsii$Proxy
An implementation for
CfnOriginEndpoint.DashEncryptionProperty |
Modifier and Type | Method and Description |
---|---|
static CfnOriginEndpoint.DashEncryptionProperty.Builder |
builder() |
default java.lang.Number |
getKeyRotationIntervalSeconds()
Number of seconds before AWS Elemental MediaPackage rotates to a new key.
|
java.lang.Object |
getSpekeKeyProvider()
Parameters for the SPEKE key provider.
|
java.lang.Object getSpekeKeyProvider()
default java.lang.Number getKeyRotationIntervalSeconds()
By default, rotation is set to 60 seconds. Set to 0
to disable key rotation.
static CfnOriginEndpoint.DashEncryptionProperty.Builder builder()