Struct aws_sdk_sagemaker::model::ImageVersion [−][src]
#[non_exhaustive]pub struct ImageVersion {
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>,
}
Expand description
A version of a SageMaker Image
. A version represents an existing container
image.
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 version was created.
failure_reason: Option<String>
When a create or delete operation fails, the reason for the failure.
image_arn: Option<String>
The Amazon Resource Name (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.
Implementations
When the version was created.
When a create or delete operation fails, the reason for the failure.
The Amazon Resource Name (ARN) of the image the version is based on.
The ARN of the version.
The status of the version.
When the version was last modified.
Creates a new builder-style object to manufacture ImageVersion
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ImageVersion
impl Send for ImageVersion
impl Sync for ImageVersion
impl Unpin for ImageVersion
impl UnwindSafe for ImageVersion
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