Describe Image Version
sagemaker_describe_image_version | R Documentation |
Describes a version of a SageMaker AI image¶
Description¶
Describes a version of a SageMaker AI image.
Usage¶
sagemaker_describe_image_version(ImageName, Version, Alias)
Arguments¶
ImageName |
[required] The name of the image. |
Version |
The version of the image. If not specified, the latest version is described. |
Alias |
The alias of the image version. |
Value¶
A list with the following syntax:
list(
BaseImage = "string",
ContainerImage = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
FailureReason = "string",
ImageArn = "string",
ImageVersionArn = "string",
ImageVersionStatus = "CREATING"|"CREATED"|"CREATE_FAILED"|"DELETING"|"DELETE_FAILED",
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
Version = 123,
VendorGuidance = "NOT_PROVIDED"|"STABLE"|"TO_BE_ARCHIVED"|"ARCHIVED",
JobType = "TRAINING"|"INFERENCE"|"NOTEBOOK_KERNEL",
MLFramework = "string",
ProgrammingLang = "string",
Processor = "CPU"|"GPU",
Horovod = TRUE|FALSE,
ReleaseNotes = "string"
)
Request syntax¶
svc$describe_image_version(
ImageName = "string",
Version = 123,
Alias = "string"
)