interface CfnRouterInputProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnRouterInputProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnRouterInputProps |
Java | software.amazon.awscdk.services.mediaconnect.CfnRouterInputProps |
Python | aws_cdk.aws_mediaconnect.CfnRouterInputProps |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnRouterInputProps |
Properties for defining a CfnRouterInput.
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;
declare const default_: any;
const cfnRouterInputProps: mediaconnect.CfnRouterInputProps = {
configuration: {
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',
},
},
maximumBitrate: 123,
name: 'name',
routingScope: 'routingScope',
tier: 'tier',
// the properties below are optional
availabilityZone: 'availabilityZone',
maintenanceConfiguration: {
default: default_,
preferredDayTime: {
day: 'day',
time: 'time',
},
},
regionName: 'regionName',
tags: [{
key: 'key',
value: 'value',
}],
transitEncryption: {
encryptionKeyConfiguration: {
automatic: automatic,
secretsManager: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
// the properties below are optional
encryptionKeyType: 'encryptionKeyType',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| configuration | IResolvable | Router | The configuration settings for a router input. |
| maximum | number | The maximum bitrate for the router input. |
| name | string | The name of the router input. |
| routing | string | |
| tier | string | |
| availability | string | The Availability Zone where you want to create the router input. |
| maintenance | IResolvable | Maintenance | The configuration settings for maintenance operations, including preferred maintenance windows and schedules. |
| region | string | The AWS Region for the router input. |
| tags? | Cfn[] | Key-value pairs that can be used to tag and organize this router input. |
| transit | IResolvable | Router | Information about the encryption of the flow. |
configuration
Type:
IResolvable | Router
The configuration settings for a router input.
maximumBitrate
Type:
number
The maximum bitrate for the router input.
name
Type:
string
The name of the router input.
routingScope
Type:
string
tier
Type:
string
availabilityZone?
Type:
string
(optional)
The Availability Zone where you want to create the router input.
This must be a valid Availability Zone for the region specified by regionName, or the current region if no regionName is provided.
maintenanceConfiguration?
Type:
IResolvable | Maintenance
(optional)
The configuration settings for maintenance operations, including preferred maintenance windows and schedules.
regionName?
Type:
string
(optional)
The AWS Region for the router input.
Defaults to the current region if not specified.
tags?
Type:
Cfn[]
(optional)
Key-value pairs that can be used to tag and organize this router input.
transitEncryption?
Type:
IResolvable | Router
(optional)
Information about the encryption of the flow.

.NET
Go
Java
Python
TypeScript