Interface CfnRouterInput.StandardRouterInputConfigurationProperty

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

@Stability(Stable) public static interface CfnRouterInput.StandardRouterInputConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration settings for a standard router input, including the protocol, protocol-specific configuration, network interface, and availability zone.

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.*;
 StandardRouterInputConfigurationProperty standardRouterInputConfigurationProperty = StandardRouterInputConfigurationProperty.builder()
         .networkInterfaceArn("networkInterfaceArn")
         .protocolConfiguration(RouterInputProtocolConfigurationProperty.builder()
                 .rist(RistRouterInputConfigurationProperty.builder()
                         .port(123)
                         .recoveryLatencyMilliseconds(123)
                         .build())
                 .rtp(RtpRouterInputConfigurationProperty.builder()
                         .port(123)
                         // the properties below are optional
                         .forwardErrorCorrection("forwardErrorCorrection")
                         .build())
                 .srtCaller(SrtCallerRouterInputConfigurationProperty.builder()
                         .minimumLatencyMilliseconds(123)
                         .sourceAddress("sourceAddress")
                         .sourcePort(123)
                         // the properties below are optional
                         .decryptionConfiguration(SrtDecryptionConfigurationProperty.builder()
                                 .encryptionKey(SecretsManagerEncryptionKeyConfigurationProperty.builder()
                                         .roleArn("roleArn")
                                         .secretArn("secretArn")
                                         .build())
                                 .build())
                         .streamId("streamId")
                         .build())
                 .srtListener(SrtListenerRouterInputConfigurationProperty.builder()
                         .minimumLatencyMilliseconds(123)
                         .port(123)
                         // the properties below are optional
                         .decryptionConfiguration(SrtDecryptionConfigurationProperty.builder()
                                 .encryptionKey(SecretsManagerEncryptionKeyConfigurationProperty.builder()
                                         .roleArn("roleArn")
                                         .secretArn("secretArn")
                                         .build())
                                 .build())
                         .build())
                 .build())
         // the properties below are optional
         .protocol("protocol")
         .build();
 

See Also: