interface CfnChannelPlacementGroupMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.MediaLive.Mixins.CfnChannelPlacementGroupMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsmedialive/mixins#CfnChannelPlacementGroupMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.medialive.mixins.CfnChannelPlacementGroupMixinProps |
Python | aws_cdk.mixins_preview.aws_medialive.mixins.CfnChannelPlacementGroupMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_medialive » mixins » CfnChannelPlacementGroupMixinProps |
Properties for CfnChannelPlacementGroupPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as medialive_mixins } from '@aws-cdk/mixins-preview/aws-medialive';
const cfnChannelPlacementGroupMixinProps: medialive_mixins.CfnChannelPlacementGroupMixinProps = {
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