Skip to content

Describe Model Card

sagemaker_describe_model_card R Documentation

Describes the content, creation time, and security configuration of an Amazon SageMaker Model Card

Description

Describes the content, creation time, and security configuration of an Amazon SageMaker Model Card.

Usage

sagemaker_describe_model_card(ModelCardName, ModelCardVersion)

Arguments

ModelCardName

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

ModelCardVersion

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

Value

A list with the following syntax:

list(
  ModelCardArn = "string",
  ModelCardName = "string",
  ModelCardVersion = 123,
  Content = "string",
  ModelCardStatus = "Draft"|"PendingReview"|"Approved"|"Archived",
  SecurityConfig = list(
    KmsKeyId = "string"
  ),
  CreationTime = as.POSIXct(
    "2015-01-01"
  ),
  CreatedBy = list(
    UserProfileArn = "string",
    UserProfileName = "string",
    DomainId = "string",
    IamIdentity = list(
      Arn = "string",
      PrincipalId = "string",
      SourceIdentity = "string"
    )
  ),
  LastModifiedTime = as.POSIXct(
    "2015-01-01"
  ),
  LastModifiedBy = list(
    UserProfileArn = "string",
    UserProfileName = "string",
    DomainId = "string",
    IamIdentity = list(
      Arn = "string",
      PrincipalId = "string",
      SourceIdentity = "string"
    )
  ),
  ModelCardProcessingStatus = "DeleteInProgress"|"DeletePending"|"ContentDeleted"|"ExportJobsDeleted"|"DeleteCompleted"|"DeleteFailed"
)

Request syntax

svc$describe_model_card(
  ModelCardName = "string",
  ModelCardVersion = 123
)