interface MediaLiveInputConnectionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.MediaLiveInputConnectionProps |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#MediaLiveInputConnectionProps |
Java | software.amazon.awscdk.services.mediaconnect.alpha.MediaLiveInputConnectionProps |
Python | aws_cdk.aws_mediaconnect_alpha.MediaLiveInputConnectionProps |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป MediaLiveInputConnectionProps |
Properties for MediaLive Router Output configuration with specific input connection.
Example
declare const stack: Stack;
declare const mediaLiveInput: medialive.CfnInput;
const output = new RouterOutput(stack, 'MediaLiveOutput', {
routerOutputName: 'medialive-output',
maximumBitrate: Bitrate.mbps(15),
routingScope: RoutingScope.GLOBAL,
tier: RouterOutputTier.OUTPUT_50,
configuration: RouterOutputConfiguration.mediaLiveInput({
mediaLiveInputArn: mediaLiveInput.attrArn,
mediaLivePipelineId: MediaLivePipeline.PIPELINE_0,
}),
});
Properties
| Name | Type | Description |
|---|---|---|
| media | string | ARN of the MediaLive input to send output to. |
| media | Media | Pipeline ID for MediaLive input. |
| destination | Transit | Optional transit encryption configuration. |
mediaLiveInputArn
Type:
string
ARN of the MediaLive input to send output to.
Note: This will change to accept an IInputRef (typed MediaLive Input reference) when the
mediaLivePipelineId
Type:
Media
Pipeline ID for MediaLive input.
destinationTransitEncryption?
Type:
Transit
(optional, default: Automatic encryption will be used)
Optional transit encryption configuration.

.NET
Go
Java
Python
TypeScript (