#[non_exhaustive]pub struct ConnectionDrainingBuilder { /* private fields */ }
Expand description
A builder for ConnectionDraining
.
Implementations§
source§impl ConnectionDrainingBuilder
impl ConnectionDrainingBuilder
sourcepub fn enabled(self, input: bool) -> Self
pub fn enabled(self, input: bool) -> Self
Specifies whether connection draining is enabled for the load balancer.
This field is required.sourcepub fn set_enabled(self, input: Option<bool>) -> Self
pub fn set_enabled(self, input: Option<bool>) -> Self
Specifies whether connection draining is enabled for the load balancer.
sourcepub fn get_enabled(&self) -> &Option<bool>
pub fn get_enabled(&self) -> &Option<bool>
Specifies whether connection draining is enabled for the load balancer.
sourcepub fn timeout(self, input: i32) -> Self
pub fn timeout(self, input: i32) -> Self
The maximum time, in seconds, to keep the existing connections open before deregistering the instances.
sourcepub fn set_timeout(self, input: Option<i32>) -> Self
pub fn set_timeout(self, input: Option<i32>) -> Self
The maximum time, in seconds, to keep the existing connections open before deregistering the instances.
sourcepub fn get_timeout(&self) -> &Option<i32>
pub fn get_timeout(&self) -> &Option<i32>
The maximum time, in seconds, to keep the existing connections open before deregistering the instances.
sourcepub fn build(self) -> ConnectionDraining
pub fn build(self) -> ConnectionDraining
Consumes the builder and constructs a ConnectionDraining
.
Trait Implementations§
source§impl Clone for ConnectionDrainingBuilder
impl Clone for ConnectionDrainingBuilder
source§fn clone(&self) -> ConnectionDrainingBuilder
fn clone(&self) -> ConnectionDrainingBuilder
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 ConnectionDrainingBuilder
impl Debug for ConnectionDrainingBuilder
source§impl Default for ConnectionDrainingBuilder
impl Default for ConnectionDrainingBuilder
source§fn default() -> ConnectionDrainingBuilder
fn default() -> ConnectionDrainingBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ConnectionDrainingBuilder
impl PartialEq for ConnectionDrainingBuilder
source§fn eq(&self, other: &ConnectionDrainingBuilder) -> bool
fn eq(&self, other: &ConnectionDrainingBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ConnectionDrainingBuilder
Auto Trait Implementations§
impl Freeze for ConnectionDrainingBuilder
impl RefUnwindSafe for ConnectionDrainingBuilder
impl Send for ConnectionDrainingBuilder
impl Sync for ConnectionDrainingBuilder
impl Unpin for ConnectionDrainingBuilder
impl UnwindSafe for ConnectionDrainingBuilder
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.