interface RouterOutputProtocolConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnRouterOutputPropsMixin.RouterOutputProtocolConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnRouterOutputPropsMixin_RouterOutputProtocolConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnRouterOutputPropsMixin.RouterOutputProtocolConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnRouterOutputPropsMixin.RouterOutputProtocolConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnRouterOutputPropsMixin » RouterOutputProtocolConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as mediaconnect_mixins } from '@aws-cdk/mixins-preview/aws-mediaconnect';
const routerOutputProtocolConfigurationProperty: mediaconnect_mixins.CfnRouterOutputPropsMixin.RouterOutputProtocolConfigurationProperty = {
rist: {
destinationAddress: 'destinationAddress',
destinationPort: 123,
},
rtp: {
destinationAddress: 'destinationAddress',
destinationPort: 123,
forwardErrorCorrection: 'forwardErrorCorrection',
},
srtCaller: {
destinationAddress: 'destinationAddress',
destinationPort: 123,
encryptionConfiguration: {
encryptionKey: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
minimumLatencyMilliseconds: 123,
streamId: 'streamId',
},
srtListener: {
encryptionConfiguration: {
encryptionKey: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
minimumLatencyMilliseconds: 123,
port: 123,
},
};
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