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