Interface CfnFlowOutput.FlowTransitEncryptionKeyConfigurationProperty

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

@Stability(Stable) public static interface CfnFlowOutput.FlowTransitEncryptionKeyConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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;
 FlowTransitEncryptionKeyConfigurationProperty flowTransitEncryptionKeyConfigurationProperty = FlowTransitEncryptionKeyConfigurationProperty.builder()
         .automatic(automatic)
         .secretsManager(SecretsManagerEncryptionKeyConfigurationProperty.builder()
                 .roleArn("roleArn")
                 .secretArn("secretArn")
                 .build())
         .build();
 

See Also: