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

.NET
Go
Java
Python
TypeScript