Struct aws_sdk_codedeploy::types::builders::ElbInfoBuilder
source · #[non_exhaustive]pub struct ElbInfoBuilder { /* private fields */ }
Expand description
A builder for ElbInfo
.
Implementations§
source§impl ElbInfoBuilder
impl ElbInfoBuilder
sourcepub fn name(self, input: impl Into<String>) -> Self
pub fn name(self, input: impl Into<String>) -> Self
For blue/green deployments, the name of the Classic Load Balancer that is used to route traffic from original instances to replacement instances in a blue/green deployment. For in-place deployments, the name of the Classic Load Balancer that instances are deregistered from so they are not serving traffic during a deployment, and then re-registered with after the deployment is complete.
sourcepub fn set_name(self, input: Option<String>) -> Self
pub fn set_name(self, input: Option<String>) -> Self
For blue/green deployments, the name of the Classic Load Balancer that is used to route traffic from original instances to replacement instances in a blue/green deployment. For in-place deployments, the name of the Classic Load Balancer that instances are deregistered from so they are not serving traffic during a deployment, and then re-registered with after the deployment is complete.
sourcepub fn get_name(&self) -> &Option<String>
pub fn get_name(&self) -> &Option<String>
For blue/green deployments, the name of the Classic Load Balancer that is used to route traffic from original instances to replacement instances in a blue/green deployment. For in-place deployments, the name of the Classic Load Balancer that instances are deregistered from so they are not serving traffic during a deployment, and then re-registered with after the deployment is complete.
Trait Implementations§
source§impl Clone for ElbInfoBuilder
impl Clone for ElbInfoBuilder
source§fn clone(&self) -> ElbInfoBuilder
fn clone(&self) -> ElbInfoBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ElbInfoBuilder
impl Debug for ElbInfoBuilder
source§impl Default for ElbInfoBuilder
impl Default for ElbInfoBuilder
source§fn default() -> ElbInfoBuilder
fn default() -> ElbInfoBuilder
source§impl PartialEq for ElbInfoBuilder
impl PartialEq for ElbInfoBuilder
source§fn eq(&self, other: &ElbInfoBuilder) -> bool
fn eq(&self, other: &ElbInfoBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ElbInfoBuilder
Auto Trait Implementations§
impl Freeze for ElbInfoBuilder
impl RefUnwindSafe for ElbInfoBuilder
impl Send for ElbInfoBuilder
impl Sync for ElbInfoBuilder
impl Unpin for ElbInfoBuilder
impl UnwindSafe for ElbInfoBuilder
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> 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