Interface CfnRouterOutput.RouterOutputConfigurationProperty

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

@Stability(Stable) public static interface CfnRouterOutput.RouterOutputConfigurationProperty 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;
 RouterOutputConfigurationProperty routerOutputConfigurationProperty = RouterOutputConfigurationProperty.builder()
         .mediaConnectFlow(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())
         .mediaLiveInput(MediaLiveInputRouterOutputConfigurationProperty.builder()
                 .destinationTransitEncryption(MediaLiveTransitEncryptionProperty.builder()
                         .encryptionKeyConfiguration(MediaLiveTransitEncryptionKeyConfigurationProperty.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
                 .mediaLiveInputArn("mediaLiveInputArn")
                 .mediaLivePipelineId("mediaLivePipelineId")
                 .build())
         .standard(StandardRouterOutputConfigurationProperty.builder()
                 .networkInterfaceArn("networkInterfaceArn")
                 .protocolConfiguration(RouterOutputProtocolConfigurationProperty.builder()
                         .rist(RistRouterOutputConfigurationProperty.builder()
                                 .destinationAddress("destinationAddress")
                                 .destinationPort(123)
                                 .build())
                         .rtp(RtpRouterOutputConfigurationProperty.builder()
                                 .destinationAddress("destinationAddress")
                                 .destinationPort(123)
                                 // the properties below are optional
                                 .forwardErrorCorrection("forwardErrorCorrection")
                                 .build())
                         .srtCaller(SrtCallerRouterOutputConfigurationProperty.builder()
                                 .destinationAddress("destinationAddress")
                                 .destinationPort(123)
                                 .minimumLatencyMilliseconds(123)
                                 // the properties below are optional
                                 .encryptionConfiguration(SrtEncryptionConfigurationProperty.builder()
                                         .encryptionKey(SecretsManagerEncryptionKeyConfigurationProperty.builder()
                                                 .roleArn("roleArn")
                                                 .secretArn("secretArn")
                                                 .build())
                                         .build())
                                 .streamId("streamId")
                                 .build())
                         .srtListener(SrtListenerRouterOutputConfigurationProperty.builder()
                                 .minimumLatencyMilliseconds(123)
                                 .port(123)
                                 // the properties below are optional
                                 .encryptionConfiguration(SrtEncryptionConfigurationProperty.builder()
                                         .encryptionKey(SecretsManagerEncryptionKeyConfigurationProperty.builder()
                                                 .roleArn("roleArn")
                                                 .secretArn("secretArn")
                                                 .build())
                                         .build())
                                 .build())
                         .build())
                 // the properties below are optional
                 .protocol("protocol")
                 .build())
         .build();
 

See Also: