Struct aws_sdk_sagemaker::output::DescribeImageOutput [−][src]
#[non_exhaustive]pub struct DescribeImageOutput {
pub creation_time: Option<Instant>,
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<Instant>,
pub role_arn: Option<String>,
}
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<Instant>
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<Instant>
When the image was last modified.
role_arn: Option<String>
The Amazon Resource Name (ARN) of the IAM role that enables Amazon SageMaker to perform tasks on your behalf.
Implementations
Creates a new builder-style object to manufacture DescribeImageOutput
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 DescribeImageOutput
impl Send for DescribeImageOutput
impl Sync for DescribeImageOutput
impl Unpin for DescribeImageOutput
impl UnwindSafe for DescribeImageOutput
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