Skip to content

Create Model Card Export Job

sagemaker_create_model_card_export_job R Documentation

Creates an Amazon SageMaker Model Card export job

Description

Creates an Amazon SageMaker Model Card export job.

Usage

sagemaker_create_model_card_export_job(ModelCardName, ModelCardVersion,
  ModelCardExportJobName, OutputConfig)

Arguments

ModelCardName

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

ModelCardVersion

The version of the model card to export. If a version is not provided, then the latest version of the model card is exported.

ModelCardExportJobName

[required] The name of the model card export job.

OutputConfig

[required] The model card output configuration that specifies the Amazon S3 path for exporting.

Value

A list with the following syntax:

list(
  ModelCardExportJobArn = "string"
)

Request syntax

svc$create_model_card_export_job(
  ModelCardName = "string",
  ModelCardVersion = 123,
  ModelCardExportJobName = "string",
  OutputConfig = list(
    S3OutputPath = "string"
  )
)