Struct aws_sdk_sagemaker::model::AlgorithmStatusItem [−][src]
#[non_exhaustive]pub struct AlgorithmStatusItem {
pub name: Option<String>,
pub status: Option<DetailedAlgorithmStatus>,
pub failure_reason: Option<String>,
}
Expand description
Represents the overall status of an algorithm.
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.name: Option<String>
The name of the algorithm for which the overall status is being reported.
status: Option<DetailedAlgorithmStatus>
The current status.
failure_reason: Option<String>
if the overall status is Failed
, the reason for the failure.
Implementations
The name of the algorithm for which the overall status is being reported.
The current status.
if the overall status is Failed
, the reason for the failure.
Creates a new builder-style object to manufacture AlgorithmStatusItem
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 AlgorithmStatusItem
impl Send for AlgorithmStatusItem
impl Sync for AlgorithmStatusItem
impl Unpin for AlgorithmStatusItem
impl UnwindSafe for AlgorithmStatusItem
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