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
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as mediaconnect_alpha from '@aws-cdk/aws-mediaconnect-alpha';
import { aws_iam as iam } from 'aws-cdk-lib';
import { aws_secretsmanager as secretsmanager } from 'aws-cdk-lib';
declare const role: iam.Role;
declare const secret: secretsmanager.Secret;
const mediaLiveChannelConfigurationProps: mediaconnect_alpha.MediaLiveChannelConfigurationProps = {
mediaLiveChannelArn: 'mediaLiveChannelArn',
mediaLiveChannelOutputName: 'mediaLiveChannelOutputName',
mediaLivePipelineId: mediaconnect_alpha.MediaLivePipeline.PIPELINE_0,
// the properties below are optional
sourceTransitDecryption: {
secret: secret,
// the properties below are optional
role: role,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| media | string | ARN of the MediaLive channel to use as input. |
| media | string | The name of the MediaLive channel output to connect to this router input. |
| media | Media | The MediaLive pipeline to connect to this router input. |
| source | Transit | Optional transit encryption configuration. |
mediaLiveChannelArn
Type:
string
ARN of the MediaLive channel to use as input.
Note: This will change to accept a typed MediaLive channel reference when the
mediaLiveChannelOutputName
Type:
string
The name of the MediaLive channel output to connect to this router input.
mediaLivePipelineId
Type:
Media
The MediaLive pipeline to connect to this router input.
sourceTransitDecryption?
Type:
Transit
(optional, default: Automatic encryption will be used)
Optional transit encryption configuration.

.NET
Go
Java
Python
TypeScript (