Struct aws_sdk_ec2::types::builders::LoadBalancersConfigBuilder
source · #[non_exhaustive]pub struct LoadBalancersConfigBuilder { /* private fields */ }
Expand description
A builder for LoadBalancersConfig
.
Implementations§
source§impl LoadBalancersConfigBuilder
impl LoadBalancersConfigBuilder
sourcepub fn classic_load_balancers_config(
self,
input: ClassicLoadBalancersConfig,
) -> Self
pub fn classic_load_balancers_config( self, input: ClassicLoadBalancersConfig, ) -> Self
The Classic Load Balancers.
sourcepub fn set_classic_load_balancers_config(
self,
input: Option<ClassicLoadBalancersConfig>,
) -> Self
pub fn set_classic_load_balancers_config( self, input: Option<ClassicLoadBalancersConfig>, ) -> Self
The Classic Load Balancers.
sourcepub fn get_classic_load_balancers_config(
&self,
) -> &Option<ClassicLoadBalancersConfig>
pub fn get_classic_load_balancers_config( &self, ) -> &Option<ClassicLoadBalancersConfig>
The Classic Load Balancers.
sourcepub fn target_groups_config(self, input: TargetGroupsConfig) -> Self
pub fn target_groups_config(self, input: TargetGroupsConfig) -> Self
The target groups.
sourcepub fn set_target_groups_config(self, input: Option<TargetGroupsConfig>) -> Self
pub fn set_target_groups_config(self, input: Option<TargetGroupsConfig>) -> Self
The target groups.
sourcepub fn get_target_groups_config(&self) -> &Option<TargetGroupsConfig>
pub fn get_target_groups_config(&self) -> &Option<TargetGroupsConfig>
The target groups.
sourcepub fn build(self) -> LoadBalancersConfig
pub fn build(self) -> LoadBalancersConfig
Consumes the builder and constructs a LoadBalancersConfig
.
Trait Implementations§
source§impl Clone for LoadBalancersConfigBuilder
impl Clone for LoadBalancersConfigBuilder
source§fn clone(&self) -> LoadBalancersConfigBuilder
fn clone(&self) -> LoadBalancersConfigBuilder
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 LoadBalancersConfigBuilder
impl Debug for LoadBalancersConfigBuilder
source§impl Default for LoadBalancersConfigBuilder
impl Default for LoadBalancersConfigBuilder
source§fn default() -> LoadBalancersConfigBuilder
fn default() -> LoadBalancersConfigBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for LoadBalancersConfigBuilder
impl PartialEq for LoadBalancersConfigBuilder
source§fn eq(&self, other: &LoadBalancersConfigBuilder) -> bool
fn eq(&self, other: &LoadBalancersConfigBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for LoadBalancersConfigBuilder
Auto Trait Implementations§
impl Freeze for LoadBalancersConfigBuilder
impl RefUnwindSafe for LoadBalancersConfigBuilder
impl Send for LoadBalancersConfigBuilder
impl Sync for LoadBalancersConfigBuilder
impl Unpin for LoadBalancersConfigBuilder
impl UnwindSafe for LoadBalancersConfigBuilder
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.