CfnChannelPlacementGroupMixinProps
- class aws_cdk.mixins_preview.aws_medialive.mixins.CfnChannelPlacementGroupMixinProps(*, cluster_id=None, name=None, nodes=None, tags=None)
Bases:
objectProperties for CfnChannelPlacementGroupPropsMixin.
- 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:
- 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.mixins_preview.aws_medialive import mixins as medialive_mixins cfn_channel_placement_group_mixin_props = medialive_mixins.CfnChannelPlacementGroupMixinProps( 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.
- name
The name of the channel placement group.
- nodes
List of nodes added to the channel placement group.
- tags
A collection of key-value pairs.