public static interface CfnPackagingConfiguration.SpekeKeyProviderProperty
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.*; SpekeKeyProviderProperty spekeKeyProviderProperty = SpekeKeyProviderProperty.builder() .roleArn("roleArn") .systemIds(List.of("systemIds")) .url("url") // the properties below are optional .encryptionContractConfiguration(EncryptionContractConfigurationProperty.builder() .presetSpeke20Audio("presetSpeke20Audio") .presetSpeke20Video("presetSpeke20Video") .build()) .build();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnPackagingConfiguration.SpekeKeyProviderProperty.Builder
A builder for
CfnPackagingConfiguration.SpekeKeyProviderProperty |
static class |
CfnPackagingConfiguration.SpekeKeyProviderProperty.Jsii$Proxy
An implementation for
CfnPackagingConfiguration.SpekeKeyProviderProperty |
Modifier and Type | Method and Description |
---|---|
static CfnPackagingConfiguration.SpekeKeyProviderProperty.Builder |
builder() |
default java.lang.Object |
getEncryptionContractConfiguration()
Use `encryptionContractConfiguration` to configure one or more content encryption keys for your endpoints that use SPEKE Version 2.0.
|
java.lang.String |
getRoleArn()
The ARN for the IAM role that's granted by the key provider to provide access to the key provider API.
|
java.util.List<java.lang.String> |
getSystemIds()
List of unique identifiers for the DRM systems to use, as defined in the CPIX specification.
|
java.lang.String |
getUrl()
URL for the key provider's key retrieval API endpoint.
|
java.lang.String getRoleArn()
Valid format: arn:aws:iam::{accountID}:role/{name}
java.util.List<java.lang.String> getSystemIds()
java.lang.String getUrl()
Must start with https://.
default java.lang.Object getEncryptionContractConfiguration()