interface RouterInputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnRouterInputPropsMixin.RouterInputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnRouterInputPropsMixin_RouterInputConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnRouterInputPropsMixin.RouterInputConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnRouterInputPropsMixin.RouterInputConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnRouterInputPropsMixin » RouterInputConfigurationProperty |
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';
declare const automatic: any;
const routerInputConfigurationProperty: mediaconnect_mixins.CfnRouterInputPropsMixin.RouterInputConfigurationProperty = {
failover: {
networkInterfaceArn: 'networkInterfaceArn',
primarySourceIndex: 123,
protocolConfigurations: [{
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,
},
}],
sourcePriorityMode: 'sourcePriorityMode',
},
mediaConnectFlow: {
flowArn: 'flowArn',
flowOutputArn: 'flowOutputArn',
sourceTransitDecryption: {
encryptionKeyConfiguration: {
automatic: automatic,
secretsManager: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
encryptionKeyType: 'encryptionKeyType',
},
},
merge: {
mergeRecoveryWindowMilliseconds: 123,
networkInterfaceArn: 'networkInterfaceArn',
protocolConfigurations: [{
rist: {
port: 123,
recoveryLatencyMilliseconds: 123,
},
rtp: {
forwardErrorCorrection: 'forwardErrorCorrection',
port: 123,
},
}],
},
standard: {
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 |
|---|---|---|
| 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