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

.NET
Go
Java
Python
TypeScript