Interface CfnPackagingConfiguration.SpekeKeyProviderProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnPackagingConfiguration.SpekeKeyProviderProperty.Jsii$Proxy
Enclosing class:
CfnPackagingConfiguration

@Stability(Stable) public static interface CfnPackagingConfiguration.SpekeKeyProviderProperty extends software.amazon.jsii.JsiiSerializable
A configuration for accessing an external Secure Packager and Encoder Key Exchange (SPEKE) service that provides encryption keys.

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();
 

See Also: