Skip to content

Describe Image

sagemaker_describe_image R Documentation

Describes a SageMaker image

Description

Describes a SageMaker image.

Usage

sagemaker_describe_image(ImageName)

Arguments

ImageName

[required] The name of the image to describe.

Value

A list with the following syntax:

list(
  CreationTime = as.POSIXct(
    "2015-01-01"
  ),
  Description = "string",
  DisplayName = "string",
  FailureReason = "string",
  ImageArn = "string",
  ImageName = "string",
  ImageStatus = "CREATING"|"CREATED"|"CREATE_FAILED"|"UPDATING"|"UPDATE_FAILED"|"DELETING"|"DELETE_FAILED",
  LastModifiedTime = as.POSIXct(
    "2015-01-01"
  ),
  RoleArn = "string"
)

Request syntax

svc$describe_image(
  ImageName = "string"
)