Interface CfnOriginEndpoint.EncryptionProperty

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

@Stability(Stable) public static interface CfnOriginEndpoint.EncryptionProperty extends software.amazon.jsii.JsiiSerializable
The parameters for encrypting content.

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.mediapackagev2.*;
 EncryptionProperty encryptionProperty = EncryptionProperty.builder()
         .encryptionMethod(EncryptionMethodProperty.builder()
                 .cmafEncryptionMethod("cmafEncryptionMethod")
                 .tsEncryptionMethod("tsEncryptionMethod")
                 .build())
         .spekeKeyProvider(SpekeKeyProviderProperty.builder()
                 .drmSystems(List.of("drmSystems"))
                 .encryptionContractConfiguration(EncryptionContractConfigurationProperty.builder()
                         .presetSpeke20Audio("presetSpeke20Audio")
                         .presetSpeke20Video("presetSpeke20Video")
                         .build())
                 .resourceId("resourceId")
                 .roleArn("roleArn")
                 .url("url")
                 .build())
         // the properties below are optional
         .constantInitializationVector("constantInitializationVector")
         .keyRotationIntervalSeconds(123)
         .build();
 

See Also: