Interface CfnPackagingConfigurationPropsMixin.HlsEncryptionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPackagingConfigurationPropsMixin.HlsEncryptionProperty.Jsii$Proxy
- Enclosing class:
CfnPackagingConfigurationPropsMixin
@Stability(Stable)
public static interface CfnPackagingConfigurationPropsMixin.HlsEncryptionProperty
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.mixins.preview.services.mediapackage.mixins.*;
HlsEncryptionProperty hlsEncryptionProperty = HlsEncryptionProperty.builder()
.constantInitializationVector("constantInitializationVector")
.encryptionMethod("encryptionMethod")
.spekeKeyProvider(SpekeKeyProviderProperty.builder()
.encryptionContractConfiguration(EncryptionContractConfigurationProperty.builder()
.presetSpeke20Audio("presetSpeke20Audio")
.presetSpeke20Video("presetSpeke20Video")
.build())
.roleArn("roleArn")
.systemIds(List.of("systemIds"))
.url("url")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnPackagingConfigurationPropsMixin.HlsEncryptionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConstantInitializationVector
A 128-bit, 16-byte hex value represented by a 32-character string, used with the key for encrypting blocks.If you don't specify a constant initialization vector (IV), AWS Elemental MediaPackage periodically rotates the IV.
- See Also:
-
getEncryptionMethod
HLS encryption type.- See Also:
-
getSpekeKeyProvider
Parameters for the SPEKE key provider.Returns union: either
IResolvableorCfnPackagingConfigurationPropsMixin.SpekeKeyProviderProperty- See Also:
-
builder
@Stability(Stable) static CfnPackagingConfigurationPropsMixin.HlsEncryptionProperty.Builder builder()
-