Interface SrtCallerProtocolProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
SrtCallerProtocolProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.138.0 (build 0ca7ee8)", date="2026-07-31T10:49:55.232Z") @Stability(Experimental) public interface SrtCallerProtocolProps extends software.amazon.jsii.JsiiSerializable
(experimental) Properties for SRT Caller protocol 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.alpha.*;
 import software.amazon.awscdk.*;
 import software.amazon.awscdk.services.iam.*;
 import software.amazon.awscdk.services.secretsmanager.*;
 Role role;
 Secret secret;
 SrtCallerProtocolProps srtCallerProtocolProps = SrtCallerProtocolProps.builder()
         .minimumLatency(Duration.minutes(30))
         .sourceAddress("sourceAddress")
         .sourcePort(123)
         // the properties below are optional
         .decryptionConfiguration(RouterSrtEncryption.builder()
                 .secret(secret)
                 // the properties below are optional
                 .role(role)
                 .build())
         .streamId("streamId")
         .build();
 
  • Method Details

    • getMinimumLatency

      @Stability(Experimental) @NotNull Duration getMinimumLatency()
      (experimental) Minimum latency for SRT.
    • getSourceAddress

      @Stability(Experimental) @NotNull String getSourceAddress()
      (experimental) Source IP address to connect to.
    • getSourcePort

      @Stability(Experimental) @NotNull Number getSourcePort()
      (experimental) Source port to connect to.
    • getDecryptionConfiguration

      @Stability(Experimental) @Nullable default RouterSrtEncryption getDecryptionConfiguration()
      (experimental) Optional decryption configuration for encrypted SRT streams.

      Default: - No decryption

    • getStreamId

      @Stability(Experimental) @Nullable default String getStreamId()
      (experimental) Optional stream ID for SRT connection.

      Default: - No stream ID

    • builder

      @Stability(Experimental) static SrtCallerProtocolProps.Builder builder()
      Returns:
      a SrtCallerProtocolProps.Builder of SrtCallerProtocolProps