Struct aws_sdk_emr::operation::set_unhealthy_node_replacement::SetUnhealthyNodeReplacementInput
source · #[non_exhaustive]pub struct SetUnhealthyNodeReplacementInput {
pub job_flow_ids: Option<Vec<String>>,
pub unhealthy_node_replacement: Option<bool>,
}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.job_flow_ids: Option<Vec<String>>The list of strings that uniquely identify the clusters for which to turn on unhealthy node replacement. You can get these identifiers by running the RunJobFlow or the DescribeJobFlows operations.
unhealthy_node_replacement: Option<bool>Indicates whether to turn on or turn off graceful unhealthy node replacement.
Implementations§
source§impl SetUnhealthyNodeReplacementInput
impl SetUnhealthyNodeReplacementInput
sourcepub fn job_flow_ids(&self) -> &[String]
pub fn job_flow_ids(&self) -> &[String]
The list of strings that uniquely identify the clusters for which to turn on unhealthy node replacement. You can get these identifiers by running the RunJobFlow or the DescribeJobFlows operations.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .job_flow_ids.is_none().
sourcepub fn unhealthy_node_replacement(&self) -> Option<bool>
pub fn unhealthy_node_replacement(&self) -> Option<bool>
Indicates whether to turn on or turn off graceful unhealthy node replacement.
source§impl SetUnhealthyNodeReplacementInput
impl SetUnhealthyNodeReplacementInput
sourcepub fn builder() -> SetUnhealthyNodeReplacementInputBuilder
pub fn builder() -> SetUnhealthyNodeReplacementInputBuilder
Creates a new builder-style object to manufacture SetUnhealthyNodeReplacementInput.
Trait Implementations§
source§impl Clone for SetUnhealthyNodeReplacementInput
impl Clone for SetUnhealthyNodeReplacementInput
source§fn clone(&self) -> SetUnhealthyNodeReplacementInput
fn clone(&self) -> SetUnhealthyNodeReplacementInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for SetUnhealthyNodeReplacementInput
impl PartialEq for SetUnhealthyNodeReplacementInput
source§fn eq(&self, other: &SetUnhealthyNodeReplacementInput) -> bool
fn eq(&self, other: &SetUnhealthyNodeReplacementInput) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SetUnhealthyNodeReplacementInput
Auto Trait Implementations§
impl Freeze for SetUnhealthyNodeReplacementInput
impl RefUnwindSafe for SetUnhealthyNodeReplacementInput
impl Send for SetUnhealthyNodeReplacementInput
impl Sync for SetUnhealthyNodeReplacementInput
impl Unpin for SetUnhealthyNodeReplacementInput
impl UnwindSafe for SetUnhealthyNodeReplacementInput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more