Struct aws_sdk_sagemaker::model::AlgorithmStatusItem
source · #[non_exhaustive]pub struct AlgorithmStatusItem { /* private fields */ }
Expand description
Represents the overall status of an algorithm.
Implementations§
source§impl AlgorithmStatusItem
impl AlgorithmStatusItem
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name of the algorithm for which the overall status is being reported.
sourcepub fn status(&self) -> Option<&DetailedAlgorithmStatus>
pub fn status(&self) -> Option<&DetailedAlgorithmStatus>
The current status.
sourcepub fn failure_reason(&self) -> Option<&str>
pub fn failure_reason(&self) -> Option<&str>
if the overall status is Failed
, the reason for the failure.
source§impl AlgorithmStatusItem
impl AlgorithmStatusItem
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AlgorithmStatusItem
.
Trait Implementations§
source§impl Clone for AlgorithmStatusItem
impl Clone for AlgorithmStatusItem
source§fn clone(&self) -> AlgorithmStatusItem
fn clone(&self) -> AlgorithmStatusItem
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for AlgorithmStatusItem
impl Debug for AlgorithmStatusItem
source§impl PartialEq<AlgorithmStatusItem> for AlgorithmStatusItem
impl PartialEq<AlgorithmStatusItem> for AlgorithmStatusItem
source§fn eq(&self, other: &AlgorithmStatusItem) -> bool
fn eq(&self, other: &AlgorithmStatusItem) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.