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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forSrtCallerProtocolPropsstatic final classAn implementation forSrtCallerProtocolProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default RouterSrtEncryption(experimental) Optional decryption configuration for encrypted SRT streams.(experimental) Minimum latency for SRT.(experimental) Source IP address to connect to.(experimental) Source port to connect to.default String(experimental) Optional stream ID for SRT connection.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMinimumLatency
(experimental) Minimum latency for SRT. -
getSourceAddress
(experimental) Source IP address to connect to. -
getSourcePort
(experimental) Source port to connect to. -
getDecryptionConfiguration
(experimental) Optional decryption configuration for encrypted SRT streams.Default: - No decryption
-
getStreamId
(experimental) Optional stream ID for SRT connection.Default: - No stream ID
-
builder
- Returns:
- a
SrtCallerProtocolProps.BuilderofSrtCallerProtocolProps
-