class CfnRouterInputPropsMixin
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaConnect.Mixins.CfnRouterInputPropsMixin |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmediaconnect/mixins#CfnRouterInputPropsMixin |
Java | software.amazon.awscdk.mixins.preview.services.mediaconnect.mixins.CfnRouterInputPropsMixin |
Python | aws_cdk.mixins_preview.aws_mediaconnect.mixins.CfnRouterInputPropsMixin |
TypeScript | @aws-cdk/mixins-preview » aws_mediaconnect » mixins » CfnRouterInputPropsMixin |
Implements
IMixin
Extends
Mixin
Represents a router input in AWS Elemental MediaConnect that is used to ingest content to be transmitted to router outputs.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins } from '@aws-cdk/mixins-preview';
import { mixins as mediaconnect_mixins } from '@aws-cdk/mixins-preview/aws-mediaconnect';
declare const automatic: any;
declare const default_: any;
const cfnRouterInputPropsMixin = new mediaconnect_mixins.CfnRouterInputPropsMixin({
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',
},
}, /* all optional props */ {
strategy: mixins.PropertyMergeStrategy.OVERRIDE,
});
Initializer
new CfnRouterInputPropsMixin(props: CfnRouterInputMixinProps, options?: CfnPropertyMixinOptions)
Parameters
- props
Cfn— L1 properties to apply.Router Input Mixin Props - options
Cfn— Mixin options.Property Mixin Options
Create a mixin to apply properties to AWS::MediaConnect::RouterInput.
Properties
| Name | Type | Description |
|---|---|---|
| props | Cfn | |
| strategy | Property | |
| static CFN_PROPERTY_KEYS | string[] |
props
Type:
Cfn
strategy
Type:
Property
static CFN_PROPERTY_KEYS
Type:
string[]
Methods
| Name | Description |
|---|---|
| apply | Apply the mixin properties to the construct. |
| supports(construct) | Check if this mixin supports the given construct. |
applyTo(construct)
public applyTo(construct: IConstruct): IConstruct
Parameters
- construct
IConstruct
Returns
Apply the mixin properties to the construct.
supports(construct)
public supports(construct: IConstruct): boolean
Parameters
- construct
IConstruct
Returns
boolean
Check if this mixin supports the given construct.

.NET
Go
Java
Python
TypeScript