interface RistRouterOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnRouterOutputPropsMixin.RistRouterOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnRouterOutputPropsMixin_RistRouterOutputConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnRouterOutputPropsMixin.RistRouterOutputConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnRouterOutputPropsMixin.RistRouterOutputConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnRouterOutputPropsMixin » RistRouterOutputConfigurationProperty |
The configuration settings for a router output using the RIST (Reliable Internet Stream Transport) protocol, including the destination address and port.
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 ristRouterOutputConfigurationProperty: mediaconnect_mixins.CfnRouterOutputPropsMixin.RistRouterOutputConfigurationProperty = {
destinationAddress: 'destinationAddress',
destinationPort: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| destination | string | The destination IP address for the RIST protocol in the router output configuration. |
| destination | number | The destination port number for the RIST protocol in the router output configuration. |
destinationAddress?
Type:
string
(optional)
The destination IP address for the RIST protocol in the router output configuration.
destinationPort?
Type:
number
(optional)
The destination port number for the RIST protocol in the router output configuration.

.NET
Go
Java
Python
TypeScript