ChannelPlacementGroupReference

class aws_cdk.interfaces.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.interfaces import aws_medialive as interfaces_aws_medialive

channel_placement_group_reference = interfaces_aws_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.