interface StandardRouterInputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnRouterInput.StandardRouterInputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnRouterInput_StandardRouterInputConfigurationProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnRouterInput.StandardRouterInputConfigurationProperty |
Python | aws_cdk.aws_mediaconnect.CfnRouterInput.StandardRouterInputConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnRouterInput » StandardRouterInputConfigurationProperty |
The configuration settings for a standard router input, 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 standardRouterInputConfigurationProperty: mediaconnect.CfnRouterInput.StandardRouterInputConfigurationProperty = {
networkInterfaceArn: 'networkInterfaceArn',
protocolConfiguration: {
rist: {
port: 123,
recoveryLatencyMilliseconds: 123,
},
rtp: {
port: 123,
// the properties below are optional
forwardErrorCorrection: 'forwardErrorCorrection',
},
srtCaller: {
minimumLatencyMilliseconds: 123,
sourceAddress: 'sourceAddress',
sourcePort: 123,
// the properties below are optional
decryptionConfiguration: {
encryptionKey: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
streamId: 'streamId',
},
srtListener: {
minimumLatencyMilliseconds: 123,
port: 123,
// the properties below are optional
decryptionConfiguration: {
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 input. |
| protocol | IResolvable | Router | The protocol configuration settings for a router input. |
| protocol? | string |
networkInterfaceArn
Type:
string
The Amazon Resource Name (ARN) of the network interface associated with the standard router input.
protocolConfiguration
Type:
IResolvable | Router
The protocol configuration settings for a router input.
protocol?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript