Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UpdateModelCardRequest

import type { UpdateModelCardRequest } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface UpdateModelCardRequest {
Content?: string | null;
ModelCardName: string;
ModelCardStatus?: ModelCardStatus | null;
}

§Properties

§
Content?: string | null
[src]

The updated model card content. Content must be in model card JSON schema and provided as a string.

When updating model card content, be sure to include the full content and not just updated content.

§
ModelCardName: string
[src]

The name of the model card to update.

§
ModelCardStatus?: ModelCardStatus | null
[src]

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.