#[non_exhaustive]pub struct DescribeImageVersionOutput { /* private fields */ }
Implementations§
source§impl DescribeImageVersionOutput
impl DescribeImageVersionOutput
sourcepub fn base_image(&self) -> Option<&str>
pub fn base_image(&self) -> Option<&str>
The registry path of the container image on which this image version is based.
sourcepub fn container_image(&self) -> Option<&str>
pub fn container_image(&self) -> Option<&str>
The registry path of the container image that contains this image version.
sourcepub fn creation_time(&self) -> Option<&DateTime>
pub fn creation_time(&self) -> Option<&DateTime>
When the version was created.
sourcepub fn failure_reason(&self) -> Option<&str>
pub fn failure_reason(&self) -> Option<&str>
When a create or delete operation fails, the reason for the failure.
sourcepub fn image_version_arn(&self) -> Option<&str>
pub fn image_version_arn(&self) -> Option<&str>
The ARN of the version.
sourcepub fn image_version_status(&self) -> Option<&ImageVersionStatus>
pub fn image_version_status(&self) -> Option<&ImageVersionStatus>
The status of the version.
sourcepub fn last_modified_time(&self) -> Option<&DateTime>
pub fn last_modified_time(&self) -> Option<&DateTime>
When the version was last modified.
sourcepub fn vendor_guidance(&self) -> Option<&VendorGuidance>
pub fn vendor_guidance(&self) -> Option<&VendorGuidance>
The stability 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.
sourcepub fn job_type(&self) -> Option<&JobType>
pub fn job_type(&self) -> Option<&JobType>
Indicates 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.
sourcepub fn ml_framework(&self) -> Option<&str>
pub fn ml_framework(&self) -> Option<&str>
The machine learning framework vended in the image version.
sourcepub fn programming_lang(&self) -> Option<&str>
pub fn programming_lang(&self) -> Option<&str>
The supported programming language and its version.
sourcepub fn processor(&self) -> Option<&Processor>
pub fn processor(&self) -> Option<&Processor>
Indicates CPU or GPU compatibility.
-
CPU
: The image version is compatible with CPU. -
GPU
: The image version is compatible with GPU.
sourcepub fn release_notes(&self) -> Option<&str>
pub fn release_notes(&self) -> Option<&str>
The maintainer description of the image version.
source§impl DescribeImageVersionOutput
impl DescribeImageVersionOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeImageVersionOutput
.
Trait Implementations§
source§impl Clone for DescribeImageVersionOutput
impl Clone for DescribeImageVersionOutput
source§fn clone(&self) -> DescribeImageVersionOutput
fn clone(&self) -> DescribeImageVersionOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DescribeImageVersionOutput
impl Debug for DescribeImageVersionOutput
source§impl PartialEq<DescribeImageVersionOutput> for DescribeImageVersionOutput
impl PartialEq<DescribeImageVersionOutput> for DescribeImageVersionOutput
source§fn eq(&self, other: &DescribeImageVersionOutput) -> bool
fn eq(&self, other: &DescribeImageVersionOutput) -> bool
self
and other
values to be equal, and is used
by ==
.