interface ClusterReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Sagemaker.ClusterReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssagemaker#ClusterReference |
Java | software.amazon.awscdk.interfaces.sagemaker.ClusterReference |
Python | aws_cdk.interfaces.aws_sagemaker.ClusterReference |
TypeScript | aws-cdk-lib » interfaces » aws_sagemaker » 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_sagemaker as interfaces_aws_sagemaker } from 'aws-cdk-lib/interfaces';
const clusterReference: interfaces_aws_sagemaker.ClusterReference = {
clusterArn: 'clusterArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string | The ClusterArn of the Cluster resource. |
clusterArn
Type:
string
The ClusterArn of the Cluster resource.

.NET
Go
Java
Python
TypeScript