interface CfnChannelPlacementGroupProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MediaLive.CfnChannelPlacementGroupProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#CfnChannelPlacementGroupProps |
Java | software.amazon.awscdk.services.medialive.CfnChannelPlacementGroupProps |
Python | aws_cdk.aws_medialive.CfnChannelPlacementGroupProps |
TypeScript | aws-cdk-lib » aws_medialive » CfnChannelPlacementGroupProps |
Properties for defining a CfnChannelPlacementGroup.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_medialive as medialive } from 'aws-cdk-lib';
const cfnChannelPlacementGroupProps: medialive.CfnChannelPlacementGroupProps = {
clusterId: 'clusterId',
name: 'name',
nodes: ['nodes'],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string | The ID of the cluster the node is on. |
| name? | string | The name of the channel placement group. |
| nodes? | string[] | List of nodes added to the channel placement group. |
| tags? | Cfn[] | A collection of key-value pairs. |
clusterId?
Type:
string
(optional)
The ID of the cluster the node is on.
name?
Type:
string
(optional)
The name of the channel placement group.
nodes?
Type:
string[]
(optional)
List of nodes added to the channel placement group.
tags?
Type:
Cfn[]
(optional)
A collection of key-value pairs.

.NET
Go
Java
Python
TypeScript