Interface CfnRouterOutput.MediaConnectFlowRouterOutputConfigurationProperty

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

@Stability(Stable) public static interface CfnRouterOutput.MediaConnectFlowRouterOutputConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration settings for connecting a router output to a MediaConnect flow source.

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;
 MediaConnectFlowRouterOutputConfigurationProperty mediaConnectFlowRouterOutputConfigurationProperty = MediaConnectFlowRouterOutputConfigurationProperty.builder()
         .destinationTransitEncryption(FlowTransitEncryptionProperty.builder()
                 .encryptionKeyConfiguration(FlowTransitEncryptionKeyConfigurationProperty.builder()
                         .automatic(automatic)
                         .secretsManager(SecretsManagerEncryptionKeyConfigurationProperty.builder()
                                 .roleArn("roleArn")
                                 .secretArn("secretArn")
                                 .build())
                         .build())
                 // the properties below are optional
                 .encryptionKeyType("encryptionKeyType")
                 .build())
         // the properties below are optional
         .flowArn("flowArn")
         .flowSourceArn("flowSourceArn")
         .build();
 

See Also: