interface MediaLiveChannelRouterInputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.CfnRouterInput.MediaLiveChannelRouterInputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmediaconnect#CfnRouterInput_MediaLiveChannelRouterInputConfigurationProperty |
Java | software.amazon.awscdk.services.mediaconnect.CfnRouterInput.MediaLiveChannelRouterInputConfigurationProperty |
Python | aws_cdk.aws_mediaconnect.CfnRouterInput.MediaLiveChannelRouterInputConfigurationProperty |
TypeScript | aws-cdk-lib » aws_mediaconnect » CfnRouterInput » MediaLiveChannelRouterInputConfigurationProperty |
Configuration settings for connecting a router input to a MediaLive channel output.
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-lib';
declare const automatic: any;
const mediaLiveChannelRouterInputConfigurationProperty: mediaconnect.CfnRouterInput.MediaLiveChannelRouterInputConfigurationProperty = {
sourceTransitDecryption: {
encryptionKeyConfiguration: {
automatic: automatic,
secretsManager: {
roleArn: 'roleArn',
secretArn: 'secretArn',
},
},
// the properties below are optional
encryptionKeyType: 'encryptionKeyType',
},
// the properties below are optional
mediaLiveChannelArn: 'mediaLiveChannelArn',
mediaLiveChannelOutputName: 'mediaLiveChannelOutputName',
mediaLivePipelineId: 'mediaLivePipelineId',
};
Properties
| Name | Type | Description |
|---|---|---|
| source | IResolvable | Media | The encryption configuration that defines how content is encrypted during transit between MediaConnect Router and MediaLive. |
| media | string | The ARN of the MediaLive channel to connect to this router input. |
| media | string | The name of the MediaLive channel output to connect to this router input. |
| media | string |
sourceTransitDecryption
Type:
IResolvable | Media
The encryption configuration that defines how content is encrypted during transit between MediaConnect Router and MediaLive.
This configuration determines whether encryption keys are automatically managed by the service or manually managed through Secrets Manager.
mediaLiveChannelArn?
Type:
string
(optional)
The ARN of the MediaLive channel to connect to this router input.
mediaLiveChannelOutputName?
Type:
string
(optional)
The name of the MediaLive channel output to connect to this router input.
mediaLivePipelineId?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript