interface CfnRouterInputMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaConnect.CfnRouterInputMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediaconnect#CfnRouterInputMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.CfnRouterInputMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_mediaconnect.CfnRouterInputMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediaconnect » 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 { aws_mediaconnect as mediaconnect } from '@aws-cdk/cfn-property-mixins';
declare const automatic: any;
declare const default_: any;
const cfnRouterInputMixinProps: mediaconnect.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',
},
},
mediaLiveChannel: {
mediaLiveChannelArn: 'mediaLiveChannelArn',
mediaLiveChannelOutputName: 'mediaLiveChannelOutputName',
mediaLivePipelineId: 'mediaLivePipelineId',
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,
},
},
},
},
contentQualityAnalysisConfiguration: {
contentLevel: {
blackFrames: {
state: 'state',
thresholdSeconds: 123,
},
frozenFrames: {
state: 'state',
thresholdSeconds: 123,
},
silentAudio: {
state: 'state',
thresholdSeconds: 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. |
| content | IResolvable | Router | The content quality analysis configuration for the 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.
contentQualityAnalysisConfiguration?
Type:
IResolvable | Router
(optional)
The content quality analysis configuration for the router input.
The content quality analysis feature only monitors the first video stream and the first audio stream it encounters within the router input source.
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