Struct aws_sdk_codedeploy::model::TargetGroupInfo
source · #[non_exhaustive]pub struct TargetGroupInfo { /* private fields */ }
Expand description
Information about a target group in Elastic Load Balancing to use in a deployment. Instances are registered as targets in a target group, and traffic is routed to the target group.
Implementations§
source§impl TargetGroupInfo
impl TargetGroupInfo
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
For blue/green deployments, the name of the target group that instances in the original environment are deregistered from, and instances in the replacement environment are registered with. For in-place deployments, the name of the target group that instances are deregistered from, so they are not serving traffic during a deployment, and then re-registered with after the deployment is complete.
source§impl TargetGroupInfo
impl TargetGroupInfo
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TargetGroupInfo
.
Trait Implementations§
source§impl Clone for TargetGroupInfo
impl Clone for TargetGroupInfo
source§fn clone(&self) -> TargetGroupInfo
fn clone(&self) -> TargetGroupInfo
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 TargetGroupInfo
impl Debug for TargetGroupInfo
source§impl PartialEq<TargetGroupInfo> for TargetGroupInfo
impl PartialEq<TargetGroupInfo> for TargetGroupInfo
source§fn eq(&self, other: &TargetGroupInfo) -> bool
fn eq(&self, other: &TargetGroupInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.