#[non_exhaustive]pub struct MinimumHealthyHostsPerZoneBuilder { /* private fields */ }Expand description
A builder for MinimumHealthyHostsPerZone.
Implementations§
source§impl MinimumHealthyHostsPerZoneBuilder
 
impl MinimumHealthyHostsPerZoneBuilder
sourcepub fn type(self, input: MinimumHealthyHostsPerZoneType) -> Self
 
pub fn type(self, input: MinimumHealthyHostsPerZoneType) -> Self
The type associated with the MinimumHealthyHostsPerZone option.
sourcepub fn set_type(self, input: Option<MinimumHealthyHostsPerZoneType>) -> Self
 
pub fn set_type(self, input: Option<MinimumHealthyHostsPerZoneType>) -> Self
The type associated with the MinimumHealthyHostsPerZone option.
sourcepub fn get_type(&self) -> &Option<MinimumHealthyHostsPerZoneType>
 
pub fn get_type(&self) -> &Option<MinimumHealthyHostsPerZoneType>
The type associated with the MinimumHealthyHostsPerZone option.
sourcepub fn value(self, input: i32) -> Self
 
pub fn value(self, input: i32) -> Self
The value associated with the MinimumHealthyHostsPerZone option.
sourcepub fn set_value(self, input: Option<i32>) -> Self
 
pub fn set_value(self, input: Option<i32>) -> Self
The value associated with the MinimumHealthyHostsPerZone option.
sourcepub fn get_value(&self) -> &Option<i32>
 
pub fn get_value(&self) -> &Option<i32>
The value associated with the MinimumHealthyHostsPerZone option.
sourcepub fn build(self) -> MinimumHealthyHostsPerZone
 
pub fn build(self) -> MinimumHealthyHostsPerZone
Consumes the builder and constructs a MinimumHealthyHostsPerZone.
Trait Implementations§
source§impl Clone for MinimumHealthyHostsPerZoneBuilder
 
impl Clone for MinimumHealthyHostsPerZoneBuilder
source§fn clone(&self) -> MinimumHealthyHostsPerZoneBuilder
 
fn clone(&self) -> MinimumHealthyHostsPerZoneBuilder
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 Default for MinimumHealthyHostsPerZoneBuilder
 
impl Default for MinimumHealthyHostsPerZoneBuilder
source§fn default() -> MinimumHealthyHostsPerZoneBuilder
 
fn default() -> MinimumHealthyHostsPerZoneBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for MinimumHealthyHostsPerZoneBuilder
 
impl PartialEq for MinimumHealthyHostsPerZoneBuilder
source§fn eq(&self, other: &MinimumHealthyHostsPerZoneBuilder) -> bool
 
fn eq(&self, other: &MinimumHealthyHostsPerZoneBuilder) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for MinimumHealthyHostsPerZoneBuilder
Auto Trait Implementations§
impl Freeze for MinimumHealthyHostsPerZoneBuilder
impl RefUnwindSafe for MinimumHealthyHostsPerZoneBuilder
impl Send for MinimumHealthyHostsPerZoneBuilder
impl Sync for MinimumHealthyHostsPerZoneBuilder
impl Unpin for MinimumHealthyHostsPerZoneBuilder
impl UnwindSafe for MinimumHealthyHostsPerZoneBuilder
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>
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>
Converts 
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>
Converts 
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 moreCreates a shared type from an unshared type.