public static interface CfnPackagingConfiguration.HlsEncryptionProperty
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.*; HlsEncryptionProperty hlsEncryptionProperty = HlsEncryptionProperty.builder() .spekeKeyProvider(SpekeKeyProviderProperty.builder() .roleArn("roleArn") .systemIds(List.of("systemIds")) .url("url") .build()) // the properties below are optional .constantInitializationVector("constantInitializationVector") .encryptionMethod("encryptionMethod") .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnPackagingConfiguration.HlsEncryptionProperty.Builder
A builder for
CfnPackagingConfiguration.HlsEncryptionProperty |
static class |
CfnPackagingConfiguration.HlsEncryptionProperty.Jsii$Proxy
An implementation for
CfnPackagingConfiguration.HlsEncryptionProperty |
Modifier and Type | Method and Description |
---|---|
static CfnPackagingConfiguration.HlsEncryptionProperty.Builder |
builder() |
default java.lang.String |
getConstantInitializationVector()
A 128-bit, 16-byte hex value represented by a 32-character string, used with the key for encrypting blocks.
|
default java.lang.String |
getEncryptionMethod()
HLS encryption type.
|
java.lang.Object |
getSpekeKeyProvider()
Parameters for the SPEKE key provider.
|
java.lang.Object getSpekeKeyProvider()
default java.lang.String getConstantInitializationVector()
If you don't specify a constant initialization vector (IV), MediaPackage periodically rotates the IV.
default java.lang.String getEncryptionMethod()
static CfnPackagingConfiguration.HlsEncryptionProperty.Builder builder()