interface MediaLiveChannelConfigurationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.MediaLiveChannelConfigurationProps |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#MediaLiveChannelConfigurationProps |
Java | software.amazon.awscdk.services.mediaconnect.alpha.MediaLiveChannelConfigurationProps |
Python | aws_cdk.aws_mediaconnect_alpha.MediaLiveChannelConfigurationProps |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป MediaLiveChannelConfigurationProps |
Properties for MediaLive Channel Router Input configuration.
Use this when the MediaLive channel already exists and you want to ingest from one of its outputs immediately.
Example
declare const stack: Stack;
declare const mediaLiveChannel: medialive.IChannel;
const input = new RouterInput(stack, 'ChannelInput', {
routerInputName: 'channel-input',
maximumBitrate: Bitrate.mbps(20),
routingScope: RoutingScope.REGIONAL,
tier: RouterInputTier.INPUT_50,
configuration: RouterInputConfiguration.mediaLiveChannel({
channel: mediaLiveChannel,
outputName: 'router-ts',
pipeline: MediaLivePipeline.PIPELINE_0,
}),
});
Properties
| Name | Type | Description |
|---|---|---|
| channel | IChannel | The MediaLive channel to use as input. |
| output | string | The name of the individual output (within the channel's MediaConnect Router output group) to connect to this router input โ not the name of the output group itself. |
| pipeline | Media | The MediaLive pipeline to connect to this router input. |
| source | Transit | Optional transit encryption configuration. |
channel
Type:
IChannel
The MediaLive channel to use as input.
outputName
Type:
string
The name of the individual output (within the channel's MediaConnect Router output group) to connect to this router input โ not the name of the output group itself.
pipeline
Type:
Media
The MediaLive pipeline to connect to this router input.
sourceTransitDecryption?
Type:
Transit
(optional, default: automatic encryption)
Optional transit encryption configuration.
Must match the encryption type configured on the MediaLive channel's MediaConnect Router output group.

.NET
Go
Java
Python
TypeScript (