interface ChannelPlacementGroupReference
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.MediaLive.ChannelPlacementGroupReference | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmedialive#ChannelPlacementGroupReference | 
|  Java | software.amazon.awscdk.services.medialive.ChannelPlacementGroupReference | 
|  Python | aws_cdk.aws_medialive.ChannelPlacementGroupReference | 
|  TypeScript | aws-cdk-lib»aws_medialive»ChannelPlacementGroupReference | 
A reference to a ChannelPlacementGroup resource.
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 channelPlacementGroupReference: medialive.ChannelPlacementGroupReference = {
  channelPlacementGroupArn: 'channelPlacementGroupArn',
  channelPlacementGroupId: 'channelPlacementGroupId',
  clusterId: 'clusterId',
};
Properties
| Name | Type | Description | 
|---|---|---|
| channel | string | The ARN of the ChannelPlacementGroup resource. | 
| channel | string | The Id of the ChannelPlacementGroup resource. | 
| cluster | string | The ClusterId of the ChannelPlacementGroup resource. | 
channelPlacementGroupArn
Type:
string
The ARN of the ChannelPlacementGroup resource.
channelPlacementGroupId
Type:
string
The Id of the ChannelPlacementGroup resource.
clusterId
Type:
string
The ClusterId of the ChannelPlacementGroup resource.
