class CfnRouterOutputPropsMixin (mixin)
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MediaConnect.CfnRouterOutputPropsMixin |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmediaconnect#CfnRouterOutputPropsMixin |
Java | software.amazon.awscdk.cfnpropertymixins.services.mediaconnect.CfnRouterOutputPropsMixin |
Python | aws_cdk.cfn_property_mixins.aws_mediaconnect.CfnRouterOutputPropsMixin |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mediaconnect » CfnRouterOutputPropsMixin |
Implements
IMixin
Extends
Mixin
Represents a router input in AWS Elemental MediaConnect that can be used to egress content transmitted from router inputs.
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';
import * as cdk from 'aws-cdk-lib';
declare const automatic: any;
declare const default_: any;
declare const mergeStrategy: cdk.IMergeStrategy;
const cfnRouterOutputPropsMixin = new mediaconnect.CfnRouterOutputPropsMixin({
availabilityZone: 'availabilityZone',
configuration: {
mediaConnectFlow: {
destinationTransitEncryption: {
encryptionKeyConfiguration: {
automatic: automatic,
secretsManager: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
encryptionKeyType: 'encryptionKeyType',
},
flowArn: 'flowArn',
flowSourceArn: 'flowSourceArn',
},
mediaLiveInput: {
destinationTransitEncryption: {
encryptionKeyConfiguration: {
automatic: automatic,
secretsManager: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
encryptionKeyType: 'encryptionKeyType',
},
mediaLiveInputArn: 'mediaLiveInputArn',
mediaLivePipelineId: 'mediaLivePipelineId',
},
standard: {
networkInterfaceArn: 'networkInterfaceArn',
protocol: 'protocol',
protocolConfiguration: {
rist: {
destinationAddress: 'destinationAddress',
destinationPort: 123,
},
rtp: {
destinationAddress: 'destinationAddress',
destinationPort: 123,
forwardErrorCorrection: 'forwardErrorCorrection',
},
srtCaller: {
destinationAddress: 'destinationAddress',
destinationPort: 123,
encryptionConfiguration: {
encryptionKey: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
minimumLatencyMilliseconds: 123,
streamId: 'streamId',
},
srtListener: {
encryptionConfiguration: {
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',
}, /* all optional props */ {
strategy: mergeStrategy,
});
Initializer
new CfnRouterOutputPropsMixin(props: CfnRouterOutputMixinProps, options?: CfnPropertyMixinOptions)
Parameters
- props
Cfn— L1 properties to apply.Router Output Mixin Props - options
Cfn— Mixin options.Property Mixin Options
Create a mixin to apply properties to AWS::MediaConnect::RouterOutput.
Properties
| Name | Type | Description |
|---|---|---|
| props | Cfn | |
| strategy | IMerge | |
| static CFN_PROPERTY_KEYS | string[] |
props
Type:
Cfn
strategy
Type:
IMerge
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): void
Parameters
- construct
IConstruct
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