Struct aws_sdk_emr::types::CancelStepsInfo
source · #[non_exhaustive]pub struct CancelStepsInfo {
pub step_id: Option<String>,
pub status: Option<CancelStepsRequestStatus>,
pub reason: Option<String>,
}
Expand description
Specification of the status of a CancelSteps request. Available only in Amazon EMR version 4.8.0 and later, excluding version 5.0.0.
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.step_id: Option<String>
The encrypted StepId of a step.
status: Option<CancelStepsRequestStatus>
The status of a CancelSteps Request. The value may be SUBMITTED or FAILED.
reason: Option<String>
The reason for the failure if the CancelSteps request fails.
Implementations§
source§impl CancelStepsInfo
impl CancelStepsInfo
sourcepub fn status(&self) -> Option<&CancelStepsRequestStatus>
pub fn status(&self) -> Option<&CancelStepsRequestStatus>
The status of a CancelSteps Request. The value may be SUBMITTED or FAILED.
source§impl CancelStepsInfo
impl CancelStepsInfo
sourcepub fn builder() -> CancelStepsInfoBuilder
pub fn builder() -> CancelStepsInfoBuilder
Creates a new builder-style object to manufacture CancelStepsInfo
.
Trait Implementations§
source§impl Clone for CancelStepsInfo
impl Clone for CancelStepsInfo
source§fn clone(&self) -> CancelStepsInfo
fn clone(&self) -> CancelStepsInfo
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 CancelStepsInfo
impl Debug for CancelStepsInfo
source§impl PartialEq for CancelStepsInfo
impl PartialEq for CancelStepsInfo
source§fn eq(&self, other: &CancelStepsInfo) -> bool
fn eq(&self, other: &CancelStepsInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CancelStepsInfo
Auto Trait Implementations§
impl RefUnwindSafe for CancelStepsInfo
impl Send for CancelStepsInfo
impl Sync for CancelStepsInfo
impl Unpin for CancelStepsInfo
impl UnwindSafe for CancelStepsInfo
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.