@Stability(value=Stable)
public static interface CfnPackagingConfiguration.HlsEncryptionProperty
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.*;
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 String |
getConstantInitializationVector()
A 128-bit, 16-byte hex value represented by a 32-character string, used with the key for encrypting blocks.
|
default String |
getEncryptionMethod()
HLS encryption type.
|
Object |
getSpekeKeyProvider()
Parameters for the SPEKE key provider.
|
@Stability(value=Stable) @NotNull Object getSpekeKeyProvider()
@Stability(value=Stable) @Nullable default String getConstantInitializationVector()
If you don't specify a constant initialization vector (IV), MediaPackage periodically rotates the IV.
@Stability(value=Stable) @Nullable default String getEncryptionMethod()
@Stability(value=Stable) static CfnPackagingConfiguration.HlsEncryptionProperty.Builder builder()
Copyright © 2022. All rights reserved.