Interface CfnOriginEndpoint.EncryptionContractConfigurationProperty

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

@Stability(Stable) public static interface CfnOriginEndpoint.EncryptionContractConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Use encryptionContractConfiguration to configure one or more content encryption keys for your endpoints that use SPEKE Version 2.0. The encryption contract defines which content keys are used to encrypt the audio and video tracks in your stream. To configure the encryption contract, specify which audio and video encryption presets to use.

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.*;
 EncryptionContractConfigurationProperty encryptionContractConfigurationProperty = EncryptionContractConfigurationProperty.builder()
         .presetSpeke20Audio("presetSpeke20Audio")
         .presetSpeke20Video("presetSpeke20Video")
         .build();
 

See Also: