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
sourceimpl 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.
sourceimpl TargetGroupInfo
impl TargetGroupInfo
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TargetGroupInfo
.
Trait Implementations
sourceimpl Clone for TargetGroupInfo
impl Clone for TargetGroupInfo
sourcefn clone(&self) -> TargetGroupInfo
fn clone(&self) -> TargetGroupInfo
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for TargetGroupInfo
impl Debug for TargetGroupInfo
sourceimpl PartialEq<TargetGroupInfo> for TargetGroupInfo
impl PartialEq<TargetGroupInfo> for TargetGroupInfo
sourcefn eq(&self, other: &TargetGroupInfo) -> bool
fn eq(&self, other: &TargetGroupInfo) -> bool
impl StructuralPartialEq for TargetGroupInfo
Auto Trait Implementations
impl RefUnwindSafe for TargetGroupInfo
impl Send for TargetGroupInfo
impl Sync for TargetGroupInfo
impl Unpin for TargetGroupInfo
impl UnwindSafe for TargetGroupInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more