LinkedChannelSettings

class aws_cdk.aws_medialive_alpha.LinkedChannelSettings

Bases: object

(experimental) Linked channel settings for primary/follower channel configurations.

Use the static factory methods to create.

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_medialive_alpha as medialive_alpha

# channel: medialive_alpha.Channel

linked_channel_settings = medialive_alpha.LinkedChannelSettings.follower(channel)
Stability:

experimental

Static Methods

classmethod follower(primary_channel)

(experimental) Configure this channel as a follower of a primary channel.

Parameters:

primary_channel (IChannel) – The primary channel this channel follows. Use a Channel instance or import one with Channel.fromChannelArn().

Stability:

experimental

Return type:

LinkedChannelSettings

classmethod primary()

(experimental) Configure this channel as a primary in a linked channel pair.

Stability:

experimental

Return type:

LinkedChannelSettings