Interface CfnOriginEndpoint.SpekeKeyProviderProperty

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

@Stability(Stable) public static interface CfnOriginEndpoint.SpekeKeyProviderProperty extends software.amazon.jsii.JsiiSerializable
Key provider settings for DRM.

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()
         .resourceId("resourceId")
         .roleArn("roleArn")
         .systemIds(List.of("systemIds"))
         .url("url")
         // the properties below are optional
         .certificateArn("certificateArn")
         .encryptionContractConfiguration(EncryptionContractConfigurationProperty.builder()
                 .presetSpeke20Audio("presetSpeke20Audio")
                 .presetSpeke20Video("presetSpeke20Video")
                 .build())
         .build();
 

See Also: