CfnChannelPlacementGroupProps

class aws_cdk.aws_medialive.CfnChannelPlacementGroupProps(*, cluster_id=None, name=None, nodes=None, tags=None)

Bases: object

Properties for defining a CfnChannelPlacementGroup.

Parameters:
  • cluster_id (Optional[str]) – The ID of the cluster the node is on.

  • name (Optional[str]) – The name of the channel placement group.

  • nodes (Optional[Sequence[str]]) – List of nodes added to the channel placement group.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – A collection of key-value pairs.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channelplacementgroup.html

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

cfn_channel_placement_group_props = medialive.CfnChannelPlacementGroupProps(
    cluster_id="clusterId",
    name="name",
    nodes=["nodes"],
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

cluster_id

The ID of the cluster the node is on.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channelplacementgroup.html#cfn-medialive-channelplacementgroup-clusterid

name

The name of the channel placement group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channelplacementgroup.html#cfn-medialive-channelplacementgroup-name

nodes

List of nodes added to the channel placement group.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channelplacementgroup.html#cfn-medialive-channelplacementgroup-nodes

tags

A collection of key-value pairs.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-medialive-channelplacementgroup.html#cfn-medialive-channelplacementgroup-tags