interface RouterOutputProtocolConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnRouterOutput.RouterOutputProtocolConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnRouterOutput_RouterOutputProtocolConfigurationProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnRouterOutput.RouterOutputProtocolConfigurationProperty |
Python | aws_cdk.aws_mediaconnect.CfnRouterOutput.RouterOutputProtocolConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnRouterOutput » RouterOutputProtocolConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mediaconnect as mediaconnect } from 'aws-cdk-lib';
const routerOutputProtocolConfigurationProperty: mediaconnect.CfnRouterOutput.RouterOutputProtocolConfigurationProperty = {
rist: {
destinationAddress: 'destinationAddress',
destinationPort: 123,
},
rtp: {
destinationAddress: 'destinationAddress',
destinationPort: 123,
// the properties below are optional
forwardErrorCorrection: 'forwardErrorCorrection',
},
srtCaller: {
destinationAddress: 'destinationAddress',
destinationPort: 123,
minimumLatencyMilliseconds: 123,
// the properties below are optional
encryptionConfiguration: {
encryptionKey: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
streamId: 'streamId',
},
srtListener: {
minimumLatencyMilliseconds: 123,
port: 123,
// the properties below are optional
encryptionConfiguration: {
encryptionKey: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| rist? | IResolvable | Rist | The configuration settings for a router output using the RIST (Reliable Internet Stream Transport) protocol, including the destination address and port. |
| rtp? | IResolvable | Rtp | The configuration settings for a router output using the RTP (Real-Time Transport Protocol) protocol, including the destination address and port, and forward error correction state. |
| srt | IResolvable | Srt | The configuration settings for a router output using the SRT (Secure Reliable Transport) protocol in caller mode, including the destination address and port, minimum latency, stream ID, and encryption key configuration. |
| srt | IResolvable | Srt | The configuration settings for a router output using the SRT (Secure Reliable Transport) protocol in listener mode, including the port, minimum latency, and encryption key configuration. |
rist?
Type:
IResolvable | Rist
(optional)
The configuration settings for a router output using the RIST (Reliable Internet Stream Transport) protocol, including the destination address and port.
rtp?
Type:
IResolvable | Rtp
(optional)
The configuration settings for a router output using the RTP (Real-Time Transport Protocol) protocol, including the destination address and port, and forward error correction state.
srtCaller?
Type:
IResolvable | Srt
(optional)
The configuration settings for a router output using the SRT (Secure Reliable Transport) protocol in caller mode, including the destination address and port, minimum latency, stream ID, and encryption key configuration.
srtListener?
Type:
IResolvable | Srt
(optional)
The configuration settings for a router output using the SRT (Secure Reliable Transport) protocol in listener mode, including the port, minimum latency, and encryption key configuration.

.NET
Go
Java
Python
TypeScript