Interface CfnRouterInput.MediaConnectFlowRouterInputConfigurationProperty

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

@Stability(Stable) public static interface CfnRouterInput.MediaConnectFlowRouterInputConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration settings for connecting a router input to a flow output.

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;
 MediaConnectFlowRouterInputConfigurationProperty mediaConnectFlowRouterInputConfigurationProperty = MediaConnectFlowRouterInputConfigurationProperty.builder()
         .sourceTransitDecryption(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")
         .flowOutputArn("flowOutputArn")
         .build();
 

See Also: