Interface CfnRouterOutput.SrtCallerRouterOutputConfigurationProperty

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

@Stability(Stable) public static interface CfnRouterOutput.SrtCallerRouterOutputConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The configuration settings for a router output using the SRT (Secure Reliable Transport) protocol in caller mode, including the destination address and port, minimum latency, stream ID, and encryption key configuration.

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.*;
 SrtCallerRouterOutputConfigurationProperty srtCallerRouterOutputConfigurationProperty = 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();
 

See Also: