interface StandardRouterOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnRouterOutput.StandardRouterOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnRouterOutput_StandardRouterOutputConfigurationProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnRouterOutput.StandardRouterOutputConfigurationProperty |
Python | aws_cdk.aws_mediaconnect.CfnRouterOutput.StandardRouterOutputConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnRouterOutput » StandardRouterOutputConfigurationProperty |
The configuration settings for a standard router output, including the protocol, protocol-specific configuration, network interface, and availability zone.
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 standardRouterOutputConfigurationProperty: mediaconnect.CfnRouterOutput.StandardRouterOutputConfigurationProperty = {
networkInterfaceArn: 'networkInterfaceArn',
protocolConfiguration: {
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',
},
},
},
},
// the properties below are optional
protocol: 'protocol',
};
Properties
| Name | Type | Description |
|---|---|---|
| network | string | The Amazon Resource Name (ARN) of the network interface associated with the standard router output. |
| protocol | IResolvable | Router | The protocol configuration settings for a router output. |
| protocol? | string |
networkInterfaceArn
Type:
string
The Amazon Resource Name (ARN) of the network interface associated with the standard router output.
protocolConfiguration
Type:
IResolvable | Router
The protocol configuration settings for a router output.
protocol?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript