interface InferenceExperimentReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.InferenceExperimentReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#InferenceExperimentReference |
Java | software.amazon.awscdk.services.sagemaker.InferenceExperimentReference |
Python | aws_cdk.aws_sagemaker.InferenceExperimentReference |
TypeScript | aws-cdk-lib » aws_sagemaker » InferenceExperimentReference |
A reference to a InferenceExperiment 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 sagemaker } from 'aws-cdk-lib';
const inferenceExperimentReference: sagemaker.InferenceExperimentReference = {
inferenceExperimentArn: 'inferenceExperimentArn',
inferenceExperimentName: 'inferenceExperimentName',
};
Properties
| Name | Type | Description |
|---|---|---|
| inference | string | The ARN of the InferenceExperiment resource. |
| inference | string | The Name of the InferenceExperiment resource. |
inferenceExperimentArn
Type:
string
The ARN of the InferenceExperiment resource.
inferenceExperimentName
Type:
string
The Name of the InferenceExperiment resource.

.NET
Go
Java
Python
TypeScript