Interface CfnOriginEndpointPropsMixin.CmafEncryptionProperty

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

@Stability(Stable) public static interface CfnOriginEndpointPropsMixin.CmafEncryptionProperty extends software.amazon.jsii.JsiiSerializable
Holds encryption information so that access to the content can be controlled by a DRM solution.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.mediapackage.*;
 CmafEncryptionProperty cmafEncryptionProperty = CmafEncryptionProperty.builder()
         .constantInitializationVector("constantInitializationVector")
         .encryptionMethod("encryptionMethod")
         .keyRotationIntervalSeconds(123)
         .spekeKeyProvider(SpekeKeyProviderProperty.builder()
                 .certificateArn("certificateArn")
                 .encryptionContractConfiguration(EncryptionContractConfigurationProperty.builder()
                         .presetSpeke20Audio("presetSpeke20Audio")
                         .presetSpeke20Video("presetSpeke20Video")
                         .build())
                 .resourceId("resourceId")
                 .roleArn("roleArn")
                 .systemIds(List.of("systemIds"))
                 .url("url")
                 .build())
         .build();
 

See Also: