Interface SrtCallerUrlOptions

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

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-02T11:03:41.339Z") @Stability(Experimental) public interface SrtCallerUrlOptions extends software.amazon.jsii.JsiiSerializable
(experimental) Options for a URL-based SRT caller destination (SrtDestination.callerUrl).

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.medialive.alpha.*;
 import software.amazon.awscdk.services.secretsmanager.*;
 Secret secret;
 SrtCallerUrlOptions srtCallerUrlOptions = SrtCallerUrlOptions.builder()
         .encryptionPassphraseSecret(secret)
         // the properties below are optional
         .streamId("streamId")
         .build();
 
  • Method Details

    • getEncryptionPassphraseSecret

      @Stability(Experimental) @NotNull ISecret getEncryptionPassphraseSecret()
      (experimental) The Secrets Manager secret containing the encryption passphrase.

      [disable-awslint:prefer-ref-interface]

    • getStreamId

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

      Default: - no stream ID

    • builder

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