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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forSrtCallerUrlOptionsstatic final classAn implementation forSrtCallerUrlOptions -
Method Summary
Modifier and TypeMethodDescriptionstatic SrtCallerUrlOptions.Builderbuilder()(experimental) The Secrets Manager secret containing the encryption passphrase.default String(experimental) The stream ID for the SRT connection.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEncryptionPassphraseSecret
(experimental) The Secrets Manager secret containing the encryption passphrase.[disable-awslint:prefer-ref-interface]
-
getStreamId
(experimental) The stream ID for the SRT connection.Default: - no stream ID
-
builder
- Returns:
- a
SrtCallerUrlOptions.BuilderofSrtCallerUrlOptions
-