#[non_exhaustive]pub struct DescribeImageVersionOutput {Show 16 fields
pub base_image: Option<String>,
pub container_image: Option<String>,
pub creation_time: Option<DateTime>,
pub failure_reason: Option<String>,
pub image_arn: Option<String>,
pub image_version_arn: Option<String>,
pub image_version_status: Option<ImageVersionStatus>,
pub last_modified_time: Option<DateTime>,
pub version: Option<i32>,
pub vendor_guidance: Option<VendorGuidance>,
pub job_type: Option<JobType>,
pub ml_framework: Option<String>,
pub programming_lang: Option<String>,
pub processor: Option<Processor>,
pub horovod: Option<bool>,
pub release_notes: Option<String>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.base_image: Option<String>
The registry path of the container image on which this image version is based.
container_image: Option<String>
The registry path of the container image that contains this image version.
creation_time: Option<DateTime>
When the version was created.
failure_reason: Option<String>
When a create or delete operation fails, the reason for the failure.
image_arn: Option<String>
The ARN of the image the version is based on.
image_version_arn: Option<String>
The ARN of the version.
image_version_status: Option<ImageVersionStatus>
The status of the version.
last_modified_time: Option<DateTime>
When the version was last modified.
version: Option<i32>
The version number.
vendor_guidance: 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.
job_type: 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.
ml_framework: Option<String>
The machine learning framework vended in the image version.
programming_lang: Option<String>
The supported programming language and its version.
processor: Option<Processor>
Indicates CPU or GPU compatibility.
-
CPU
: The image version is compatible with CPU. -
GPU
: The image version is compatible with GPU.
horovod: Option<bool>
Indicates Horovod compatibility.
release_notes: Option<String>
The maintainer description of the image version.
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() -> DescribeImageVersionOutputBuilder
pub fn builder() -> DescribeImageVersionOutputBuilder
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 for DescribeImageVersionOutput
impl PartialEq 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 ==
.source§impl RequestId for DescribeImageVersionOutput
impl RequestId for DescribeImageVersionOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.