interface CfnRouterInputMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnRouterInputMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnRouterInputMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnRouterInputMixinProps |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnRouterInputMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnRouterInputMixinProps |
Properties for CfnRouterInputPropsMixin.
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;
declare const default_: any;
const cfnRouterInputMixinProps: mediaconnect_mixins.CfnRouterInputMixinProps = {
availabilityZone: 'availabilityZone',
configuration: {
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,
},
},
},
},
maintenanceConfiguration: {
default: default_,
preferredDayTime: {
day: 'day',
time: 'time',
},
},
maximumBitrate: 123,
name: 'name',
regionName: 'regionName',
routingScope: 'routingScope',
tags: [{
key: 'key',
value: 'value',
}],
tier: 'tier',
transitEncryption: {
encryptionKeyConfiguration: {
automatic: automatic,
secretsManager: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
encryptionKeyType: 'encryptionKeyType',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| availability | string | The Availability Zone of the router input. |
| configuration? | IResolvable | Router | The configuration settings for a router input. |
| maintenance | IResolvable | Maintenance | The maintenance configuration settings applied to this router input. |
| maximum | number | The maximum bitrate for the router input. |
| name? | string | The name of the router input. |
| region | string | The AWS Region where the router input is located. |
| routing | string | Indicates whether the router input is configured for Regional or global routing. |
| tags? | Cfn[] | Key-value pairs that can be used to tag and organize this router input. |
| tier? | string | The tier level of the router input. |
| transit | IResolvable | Router | Encryption information. |
availabilityZone?
Type:
string
(optional)
The Availability Zone of the router input.
configuration?
Type:
IResolvable | Router
(optional)
The configuration settings for a router input.
maintenanceConfiguration?
Type:
IResolvable | Maintenance
(optional)
The maintenance configuration settings applied to this router input.
maximumBitrate?
Type:
number
(optional)
The maximum bitrate for the router input.
name?
Type:
string
(optional)
The name of the router input.
regionName?
Type:
string
(optional)
The AWS Region where the router input is located.
routingScope?
Type:
string
(optional)
Indicates whether the router input is configured for Regional or global routing.
tags?
Type:
Cfn[]
(optional)
Key-value pairs that can be used to tag and organize this router input.
tier?
Type:
string
(optional)
The tier level of the router input.
transitEncryption?
Type:
IResolvable | Router
(optional)
Encryption information.

.NET
Go
Java
Python
TypeScript