interface InferenceExperimentReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Sagemaker.InferenceExperimentReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssagemaker#InferenceExperimentReference |
Java | software.amazon.awscdk.interfaces.sagemaker.InferenceExperimentReference |
Python | aws_cdk.interfaces.aws_sagemaker.InferenceExperimentReference |
TypeScript | aws-cdk-lib » interfaces » 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 interfaces_aws_sagemaker } from 'aws-cdk-lib/interfaces';
const inferenceExperimentReference: interfaces_aws_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