interface RouterInputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnRouterInput.RouterInputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnRouterInput_RouterInputConfigurationProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnRouterInput.RouterInputConfigurationProperty |
Python | aws_cdk.aws_mediaconnect.CfnRouterInput.RouterInputConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnRouterInput » RouterInputConfigurationProperty |
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';
declare const automatic: any;
const routerInputConfigurationProperty: mediaconnect.CfnRouterInput.RouterInputConfigurationProperty = {
failover: {
networkInterfaceArn: 'networkInterfaceArn',
protocolConfigurations: [{
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',
},
},
},
}],
sourcePriorityMode: 'sourcePriorityMode',
// the properties below are optional
primarySourceIndex: 123,
},
mediaConnectFlow: {
sourceTransitDecryption: {
encryptionKeyConfiguration: {
automatic: automatic,
secretsManager: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
// the properties below are optional
encryptionKeyType: 'encryptionKeyType',
},
// the properties below are optional
flowArn: 'flowArn',
flowOutputArn: 'flowOutputArn',
},
merge: {
mergeRecoveryWindowMilliseconds: 123,
networkInterfaceArn: 'networkInterfaceArn',
protocolConfigurations: [{
rist: {
port: 123,
recoveryLatencyMilliseconds: 123,
},
rtp: {
port: 123,
// the properties below are optional
forwardErrorCorrection: 'forwardErrorCorrection',
},
}],
},
standard: {
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 |
|---|---|---|
| failover? | IResolvable | Failover | Configuration settings for a failover router input that allows switching between two input sources. |
| media | IResolvable | Media | Configuration settings for connecting a router input to a flow output. |
| merge? | IResolvable | Merge | Configuration settings for a merge router input that combines two input sources. |
| standard? | IResolvable | Standard | The configuration settings for a standard router input, including the protocol, protocol-specific configuration, network interface, and availability zone. |
failover?
Type:
IResolvable | Failover
(optional)
Configuration settings for a failover router input that allows switching between two input sources.
mediaConnectFlow?
Type:
IResolvable | Media
(optional)
Configuration settings for connecting a router input to a flow output.
merge?
Type:
IResolvable | Merge
(optional)
Configuration settings for a merge router input that combines two input sources.
standard?
Type:
IResolvable | Standard
(optional)
The configuration settings for a standard router input, including the protocol, protocol-specific configuration, network interface, and availability zone.

.NET
Go
Java
Python
TypeScript