Interface CfnFlowEntitlementPropsMixin.EncryptionProperty

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

@Stability(Stable) public static interface CfnFlowEntitlementPropsMixin.EncryptionProperty extends software.amazon.jsii.JsiiSerializable
Encryption information.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.*;
 EncryptionProperty encryptionProperty = EncryptionProperty.builder()
         .algorithm("algorithm")
         .constantInitializationVector("constantInitializationVector")
         .deviceId("deviceId")
         .keyType("keyType")
         .region("region")
         .resourceId("resourceId")
         .roleArn("roleArn")
         .secretArn("secretArn")
         .url("url")
         .build();
 

See Also: