Skip to content

Describe Model Card Export Job

sagemaker_describe_model_card_export_job R Documentation

Describes an Amazon SageMaker Model Card export job

Description

Describes an Amazon SageMaker Model Card export job.

Usage

sagemaker_describe_model_card_export_job(ModelCardExportJobArn)

Arguments

ModelCardExportJobArn

[required] The Amazon Resource Name (ARN) of the model card export job to describe.

Value

A list with the following syntax:

list(
  ModelCardExportJobName = "string",
  ModelCardExportJobArn = "string",
  Status = "InProgress"|"Completed"|"Failed",
  ModelCardName = "string",
  ModelCardVersion = 123,
  OutputConfig = list(
    S3OutputPath = "string"
  ),
  CreatedAt = as.POSIXct(
    "2015-01-01"
  ),
  LastModifiedAt = as.POSIXct(
    "2015-01-01"
  ),
  FailureReason = "string",
  ExportArtifacts = list(
    S3ExportArtifacts = "string"
  )
)

Request syntax

svc$describe_model_card_export_job(
  ModelCardExportJobArn = "string"
)