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

DescribeModelCardExportJobResponse

import type { DescribeModelCardExportJobResponse } from "https://aws-api.deno.dev/v0.4/services/sagemaker.ts?docs=full";
interface DescribeModelCardExportJobResponse {
CreatedAt: Date | number;
ExportArtifacts?: ModelCardExportArtifacts | null;
FailureReason?: string | null;
LastModifiedAt: Date | number;
ModelCardExportJobArn: string;
ModelCardExportJobName: string;
ModelCardName: string;
ModelCardVersion: number;
}

§Properties

§
CreatedAt: Date | number
[src]

The date and time that the model export job was created.

§
ExportArtifacts?: ModelCardExportArtifacts | null
[src]

The exported model card artifacts.

§
FailureReason?: string | null
[src]

The failure reason if the model export job fails.

§
LastModifiedAt: Date | number
[src]

The date and time that the model export job was last modified.

§
ModelCardExportJobArn: string
[src]

The Amazon Resource Name (ARN) of the model card export job.

§
ModelCardExportJobName: string
[src]

The name of the model card export job to describe.

§
ModelCardName: string
[src]

The name of the model card that the model export job exports.

§
ModelCardVersion: number
[src]

The version of the model card that the model export job exports.

§

The export output details for the model card.

§

The completion status of the model card export job.

  • InProgress: The model card export job is in progress.
  • Completed: The model card export job is complete.
  • Failed: The model card export job failed. To see the reason for the failure, see the FailureReason field in the response to a DescribeModelCardExportJob call.