Struct aws_sdk_emr::types::ClusterStatus
source · #[non_exhaustive]pub struct ClusterStatus { /* private fields */ }Expand description
The detailed status of the cluster.
Implementations§
source§impl ClusterStatus
impl ClusterStatus
sourcepub fn state(&self) -> Option<&ClusterState>
pub fn state(&self) -> Option<&ClusterState>
The current state of the cluster.
sourcepub fn state_change_reason(&self) -> Option<&ClusterStateChangeReason>
pub fn state_change_reason(&self) -> Option<&ClusterStateChangeReason>
The reason for the cluster status change.
sourcepub fn timeline(&self) -> Option<&ClusterTimeline>
pub fn timeline(&self) -> Option<&ClusterTimeline>
A timeline that represents the status of a cluster over the lifetime of the cluster.
sourcepub fn error_details(&self) -> Option<&[ErrorDetail]>
pub fn error_details(&self) -> Option<&[ErrorDetail]>
A list of tuples that provide information about the errors that caused a cluster termination. This structure may have up to 10 different ErrorDetail tuples.
source§impl ClusterStatus
impl ClusterStatus
sourcepub fn builder() -> ClusterStatusBuilder
pub fn builder() -> ClusterStatusBuilder
Creates a new builder-style object to manufacture ClusterStatus.
Trait Implementations§
source§impl Clone for ClusterStatus
impl Clone for ClusterStatus
source§fn clone(&self) -> ClusterStatus
fn clone(&self) -> ClusterStatus
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 ClusterStatus
impl Debug for ClusterStatus
source§impl PartialEq<ClusterStatus> for ClusterStatus
impl PartialEq<ClusterStatus> for ClusterStatus
source§fn eq(&self, other: &ClusterStatus) -> bool
fn eq(&self, other: &ClusterStatus) -> bool
This method tests for
self and other values to be equal, and is used
by ==.