Interface CfnOriginEndpointPropsMixin.DashEncryptionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOriginEndpointPropsMixin.DashEncryptionProperty.Jsii$Proxy
- Enclosing class:
CfnOriginEndpointPropsMixin
@Stability(Stable)
public static interface CfnOriginEndpointPropsMixin.DashEncryptionProperty
extends software.amazon.jsii.JsiiSerializable
Holds encryption information so that access to the content can be controlled by a DRM solution.
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.*;
DashEncryptionProperty dashEncryptionProperty = DashEncryptionProperty.builder()
.keyRotationIntervalSeconds(123)
.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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnOriginEndpointPropsMixin.DashEncryptionPropertystatic final classAn implementation forCfnOriginEndpointPropsMixin.DashEncryptionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKeyRotationIntervalSeconds
Number of seconds before AWS Elemental MediaPackage rotates to a new key.By default, rotation is set to 60 seconds. Set to
0to disable key rotation.- See Also:
-
getSpekeKeyProvider
Parameters for the SPEKE key provider.Returns union: either
IResolvableorCfnOriginEndpointPropsMixin.SpekeKeyProviderProperty- See Also:
-
builder
-