interface MediaLiveChannelConfigurationWithoutConnectionProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaConnect.Alpha.MediaLiveChannelConfigurationWithoutConnectionProps |
Go | github.com/aws/aws-cdk-go/awsmediaconnectalpha/v2#MediaLiveChannelConfigurationWithoutConnectionProps |
Java | software.amazon.awscdk.services.mediaconnect.alpha.MediaLiveChannelConfigurationWithoutConnectionProps |
Python | aws_cdk.aws_mediaconnect_alpha.MediaLiveChannelConfigurationWithoutConnectionProps |
TypeScript (source) | @aws-cdk/aws-mediaconnect-alpha ยป MediaLiveChannelConfigurationWithoutConnectionProps |
Properties for MediaLive Channel Router Input configuration without a specific channel connection.
Use this when you want to set up the router input before the target MediaLive channel exists.
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 mediaLiveChannelConfigurationWithoutConnectionProps: mediaconnect_alpha.MediaLiveChannelConfigurationWithoutConnectionProps = {
availabilityZone: 'availabilityZone',
// the properties below are optional
sourceTransitDecryption: {
secret: secret,
// the properties below are optional
role: role,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| availability | string | Availability Zone the router input will be placed in. |
| source | Transit | Optional transit encryption configuration. |
availabilityZone
Type:
string
Availability Zone the router input will be placed in.
sourceTransitDecryption?
Type:
Transit
(optional, default: Automatic encryption will be used)
Optional transit encryption configuration.

.NET
Go
Java
Python
TypeScript (