ChannelPlacementGroupReference

class aws_cdk.aws_medialive.ChannelPlacementGroupReference(*, channel_placement_group_arn, channel_placement_group_id, cluster_id)

Bases: object

A reference to a ChannelPlacementGroup resource.

Parameters:
  • channel_placement_group_arn (str) – The ARN of the ChannelPlacementGroup resource.

  • channel_placement_group_id (str) – The Id of the ChannelPlacementGroup resource.

  • cluster_id (str) – The ClusterId of the ChannelPlacementGroup resource.

ExampleMetadata:

fixture=_generated

Example:

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

channel_placement_group_reference = medialive.ChannelPlacementGroupReference(
    channel_placement_group_arn="channelPlacementGroupArn",
    channel_placement_group_id="channelPlacementGroupId",
    cluster_id="clusterId"
)

Attributes

channel_placement_group_arn

The ARN of the ChannelPlacementGroup resource.

channel_placement_group_id

The Id of the ChannelPlacementGroup resource.

cluster_id

The ClusterId of the ChannelPlacementGroup resource.