interface ChannelPlacementGroupReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.MediaLive.ChannelPlacementGroupReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsmedialive#ChannelPlacementGroupReference |
Java | software.amazon.awscdk.interfaces.medialive.ChannelPlacementGroupReference |
Python | aws_cdk.interfaces.aws_medialive.ChannelPlacementGroupReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_medialive } from 'aws-cdk-lib/interfaces';
const channelPlacementGroupReference: interfaces_aws_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.

.NET
Go
Java
Python
TypeScript