Interface CfnFlow.FlowTransitEncryptionProperty

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

@Stability(Stable) public static interface CfnFlow.FlowTransitEncryptionProperty extends software.amazon.jsii.JsiiSerializable
The configuration that defines how content is encrypted during transit between the MediaConnect router and a MediaConnect 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.*;
 Object automatic;
 FlowTransitEncryptionProperty flowTransitEncryptionProperty = FlowTransitEncryptionProperty.builder()
         .encryptionKeyConfiguration(FlowTransitEncryptionKeyConfigurationProperty.builder()
                 .automatic(automatic)
                 .secretsManager(SecretsManagerEncryptionKeyConfigurationProperty.builder()
                         .roleArn("roleArn")
                         .secretArn("secretArn")
                         .build())
                 .build())
         // the properties below are optional
         .encryptionKeyType("encryptionKeyType")
         .build();
 

See Also: