interface ModelReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Sagemaker.ModelReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssagemaker#ModelReference |
Java | software.amazon.awscdk.interfaces.sagemaker.ModelReference |
Python | aws_cdk.interfaces.aws_sagemaker.ModelReference |
TypeScript | aws-cdk-lib » interfaces » aws_sagemaker » ModelReference |
A reference to a Model 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 modelReference: interfaces_sagemaker.ModelReference = {
modelId: 'modelId',
modelName: 'modelName',
};
Properties
| Name | Type | Description |
|---|---|---|
| model | string | The Id of the Model resource. |
| model | string | The ModelName of the Model resource. |
modelId
Type:
string
The Id of the Model resource.
modelName
Type:
string
The ModelName of the Model resource.

.NET
Go
Java
Python
TypeScript