interface SrtCallerOutputProtocolProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.SrtCallerOutputProtocolProps |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#SrtCallerOutputProtocolProps |
Java | software.amazon.awscdk.services.mediaconnect.alpha.SrtCallerOutputProtocolProps |
Python | aws_cdk.aws_mediaconnect_alpha.SrtCallerOutputProtocolProps |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป SrtCallerOutputProtocolProps |
Properties for SRT Caller protocol configuration for outputs.
Example
declare const stack: Stack;
declare const networkInterface: RouterNetworkInterface;
declare const role: iam.IRole;
declare const secret: secretsmanager.ISecret;
const output = new RouterOutput(stack, 'EncryptedOutput', {
routerOutputName: 'encrypted-output',
maximumBitrate: Bitrate.mbps(10),
routingScope: RoutingScope.REGIONAL,
tier: RouterOutputTier.OUTPUT_50,
configuration: RouterOutputConfiguration.standard({
protocol: RouterOutputProtocol.srtCaller({
destinationAddress: '203.0.113.100',
destinationPort: 9001,
minimumLatency: Duration.millis(200),
encryptionConfiguration: { role, secret },
}),
networkInterface: networkInterface,
}),
});
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | Destination IP address to connect to. |
| destination | number | Destination port to connect to. |
| minimum | Duration | Minimum latency for SRT. |
| encryption | Router | Optional encryption configuration for SRT streams. |
| stream | string | Optional stream ID for SRT connection. |
destinationAddress
Type:
string
Destination IP address to connect to.
destinationPort
Type:
number
Destination port to connect to.
minimumLatency
Type:
Duration
Minimum latency for SRT.
encryptionConfiguration?
Type:
Router
(optional, default: No encryption)
Optional encryption configuration for SRT streams.
streamId?
Type:
string
(optional, default: No stream ID)
Optional stream ID for SRT connection.

.NET
Go
Java
Python
TypeScript (