Struct aws_sdk_emr::types::InstanceGroupStateChangeReason
source · #[non_exhaustive]pub struct InstanceGroupStateChangeReason {
pub code: Option<InstanceGroupStateChangeReasonCode>,
pub message: Option<String>,
}Expand description
The status change reason details for the instance group.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.code: Option<InstanceGroupStateChangeReasonCode>The programmable code for the state change reason.
message: Option<String>The status change reason description.
Implementations§
source§impl InstanceGroupStateChangeReason
impl InstanceGroupStateChangeReason
sourcepub fn builder() -> InstanceGroupStateChangeReasonBuilder
pub fn builder() -> InstanceGroupStateChangeReasonBuilder
Creates a new builder-style object to manufacture InstanceGroupStateChangeReason.
Trait Implementations§
source§impl Clone for InstanceGroupStateChangeReason
impl Clone for InstanceGroupStateChangeReason
source§fn clone(&self) -> InstanceGroupStateChangeReason
fn clone(&self) -> InstanceGroupStateChangeReason
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 PartialEq for InstanceGroupStateChangeReason
impl PartialEq for InstanceGroupStateChangeReason
source§fn eq(&self, other: &InstanceGroupStateChangeReason) -> bool
fn eq(&self, other: &InstanceGroupStateChangeReason) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for InstanceGroupStateChangeReason
Auto Trait Implementations§
impl Freeze for InstanceGroupStateChangeReason
impl RefUnwindSafe for InstanceGroupStateChangeReason
impl Send for InstanceGroupStateChangeReason
impl Sync for InstanceGroupStateChangeReason
impl Unpin for InstanceGroupStateChangeReason
impl UnwindSafe for InstanceGroupStateChangeReason
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.