Interface CfnOriginEndpointPropsMixin.EncryptionProperty

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

@Stability(Stable) public static interface CfnOriginEndpointPropsMixin.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.cfnpropertymixins.services.mediapackagev2.*;
 EncryptionProperty encryptionProperty = EncryptionProperty.builder()
         .cmafExcludeSegmentDrmMetadata(false)
         .constantInitializationVector("constantInitializationVector")
         .encryptionMethod(EncryptionMethodProperty.builder()
                 .cmafEncryptionMethod("cmafEncryptionMethod")
                 .ismEncryptionMethod("ismEncryptionMethod")
                 .tsEncryptionMethod("tsEncryptionMethod")
                 .build())
         .keyRotationIntervalSeconds(123)
         .spekeKeyProvider(SpekeKeyProviderProperty.builder()
                 .certificateArn("certificateArn")
                 .drmSystems(List.of("drmSystems"))
                 .encryptionContractConfiguration(EncryptionContractConfigurationProperty.builder()
                         .presetSpeke20Audio("presetSpeke20Audio")
                         .presetSpeke20Video("presetSpeke20Video")
                         .build())
                 .resourceId("resourceId")
                 .roleArn("roleArn")
                 .url("url")
                 .build())
         .build();
 

See Also: