Update Image Version
| sagemaker_update_image_version | R Documentation |
Updates the properties of a SageMaker image version¶
Description¶
Updates the properties of a SageMaker image version.
Usage¶
sagemaker_update_image_version(ImageName, Alias, Version, AliasesToAdd,
AliasesToDelete, VendorGuidance, JobType, MLFramework, ProgrammingLang,
Processor, Horovod, ReleaseNotes)
Arguments¶
ImageName[required] The name of the image.
AliasThe alias of the image version.
VersionThe version of the image.
AliasesToAddA list of aliases to add.
AliasesToDeleteA list of aliases to delete.
VendorGuidanceThe availability of the image version specified by the maintainer.
NOT_PROVIDED: The maintainers did not provide a status for image version stability.STABLE: The image version is stable.TO_BE_ARCHIVED: The image version is set to be archived. Custom image versions that are set to be archived are automatically archived after three months.ARCHIVED: The image version is archived. Archived image versions are not searchable and are no longer actively supported.
JobTypeIndicates SageMaker job type compatibility.
TRAINING: The image version is compatible with SageMaker training jobs.INFERENCE: The image version is compatible with SageMaker inference jobs.NOTEBOOK_KERNEL: The image version is compatible with SageMaker notebook kernels.
MLFrameworkThe machine learning framework vended in the image version.
ProgrammingLangThe supported programming language and its version.
ProcessorIndicates CPU or GPU compatibility.
CPU: The image version is compatible with CPU.GPU: The image version is compatible with GPU.
HorovodIndicates Horovod compatibility.
ReleaseNotesThe maintainer description of the image version.
Value¶
A list with the following syntax:
Request syntax¶
svc$update_image_version(
ImageName = "string",
Alias = "string",
Version = 123,
AliasesToAdd = list(
"string"
),
AliasesToDelete = list(
"string"
),
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"
)