Struct aws_sdk_sagemaker::output::DescribeImageVersionOutput [−][src]
#[non_exhaustive]pub struct DescribeImageVersionOutput {
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>,
}
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 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
The registry path of the container image on which this image version is based.
The registry path of the container image that contains this image version.
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 DescribeImageVersionOutput
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 DescribeImageVersionOutput
impl Send for DescribeImageVersionOutput
impl Sync for DescribeImageVersionOutput
impl Unpin for DescribeImageVersionOutput
impl UnwindSafe for DescribeImageVersionOutput
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