Interface CfnFlow.EncryptionProperty

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

@Stability(Stable) public static interface CfnFlow.EncryptionProperty extends software.amazon.jsii.JsiiSerializable
Information about the encryption of the flow.

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.mediaconnect.*;
 EncryptionProperty encryptionProperty = EncryptionProperty.builder()
         .roleArn("roleArn")
         // the properties below are optional
         .algorithm("algorithm")
         .constantInitializationVector("constantInitializationVector")
         .deviceId("deviceId")
         .keyType("keyType")
         .region("region")
         .resourceId("resourceId")
         .secretArn("secretArn")
         .url("url")
         .build();
 

See Also: