class LinkedChannelSettings
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.Alpha.LinkedChannelSettings |
Go | github.com/aws/aws-cdk-go/awsmedialivealpha/v2#LinkedChannelSettings |
Java | software.amazon.awscdk.services.medialive.alpha.LinkedChannelSettings |
Python | aws_cdk.aws_medialive_alpha.LinkedChannelSettings |
TypeScript (source) | @aws-cdk/aws-medialive-alpha ยป LinkedChannelSettings |
Linked channel settings for primary/follower channel configurations.
Use the static factory methods to create.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as medialive_alpha from '@aws-cdk/aws-medialive-alpha';
declare const channel: medialive_alpha.Channel;
const linkedChannelSettings = medialive_alpha.LinkedChannelSettings.follower(channel);
Initializer
new LinkedChannelSettings()
Methods
| Name | Description |
|---|---|
| static follower(primaryChannel) | Configure this channel as a follower of a primary channel. |
| static primary() | Configure this channel as a primary in a linked channel pair. |
static follower(primaryChannel)
public static follower(primaryChannel: IChannel): LinkedChannelSettings
Parameters
- primaryChannel
IChannelโ The primary channel this channel follows.
Returns
Configure this channel as a follower of a primary channel.
static primary()
public static primary(): LinkedChannelSettings
Returns
Configure this channel as a primary in a linked channel pair.

.NET
Go
Java
Python
TypeScript (