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 ==.