interface ModelCardProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnModelPackagePropsMixin.ModelCardProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnModelPackagePropsMixin_ModelCardProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnModelPackagePropsMixin.ModelCardProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnModelPackagePropsMixin.ModelCardProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnModelPackagePropsMixin » ModelCardProperty |
An Amazon SageMaker Model Card.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const modelCardProperty: sagemaker_mixins.CfnModelPackagePropsMixin.ModelCardProperty = {
modelCardContent: 'modelCardContent',
modelCardStatus: 'modelCardStatus',
};
Properties
| Name | Type | Description |
|---|---|---|
| model | string | The content of the model card. |
| model | string | The approval status of the model card within your organization. |
modelCardContent?
Type:
string
(optional)
The content of the model card.
modelCardStatus?
Type:
string
(optional)
The approval status of the model card within your organization.
Different organizations might have different criteria for model card review and approval.
Draft: The model card is a work in progress.PendingReview: The model card is pending review.Approved: The model card is approved.Archived: The model card is archived. No more updates should be made to the model card, but it can still be exported.

.NET
Go
Java
Python
TypeScript