Struct aws_sdk_sagemaker::model::Image [−][src]
#[non_exhaustive]pub struct Image {
pub creation_time: Option<DateTime>,
pub description: Option<String>,
pub display_name: Option<String>,
pub failure_reason: Option<String>,
pub image_arn: Option<String>,
pub image_name: Option<String>,
pub image_status: Option<ImageStatus>,
pub last_modified_time: Option<DateTime>,
}
Expand description
A SageMaker image. A SageMaker image represents a set of container images that are derived from
a common base container image. Each of these container images is represented by a SageMaker
ImageVersion
.
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.creation_time: Option<DateTime>
When the image was created.
description: Option<String>
The description of the image.
display_name: Option<String>
The name of the image as displayed.
failure_reason: Option<String>
When a create, update, or delete operation fails, the reason for the failure.
image_arn: Option<String>
The Amazon Resource Name (ARN) of the image.
image_name: Option<String>
The name of the image.
image_status: Option<ImageStatus>
The status of the image.
last_modified_time: Option<DateTime>
When the image was last modified.
Implementations
When the image was created.
The description of the image.
The name of the image as displayed.
When a create, update, or delete operation fails, the reason for the failure.
The name of the image.
The status of the image.
When the image was last modified.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Image
impl UnwindSafe for Image
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more