interface ExperimentReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Sagemaker.ExperimentReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssagemaker#ExperimentReference |
Java | software.amazon.awscdk.interfaces.sagemaker.ExperimentReference |
Python | aws_cdk.interfaces.aws_sagemaker.ExperimentReference |
TypeScript | aws-cdk-lib » interfaces » aws_sagemaker » ExperimentReference |
A reference to a Experiment 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_sagemaker } from 'aws-cdk-lib/interfaces';
const experimentReference: interfaces_sagemaker.ExperimentReference = {
experimentArn: 'experimentArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| experiment | string | The Arn of the Experiment resource. |
experimentArn
Type:
string
The Arn of the Experiment resource.

.NET
Go
Java
Python
TypeScript