pub struct TargetGroupInfo {
pub name: Option<String>,
}
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.
Fields§
§name: Option<String>
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.
Trait Implementations§
Source§impl Clone for TargetGroupInfo
impl Clone for TargetGroupInfo
Source§fn clone(&self) -> TargetGroupInfo
fn clone(&self) -> TargetGroupInfo
Returns a duplicate 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 Default for TargetGroupInfo
impl Default for TargetGroupInfo
Source§fn default() -> TargetGroupInfo
fn default() -> TargetGroupInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TargetGroupInfo
impl<'de> Deserialize<'de> for TargetGroupInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TargetGroupInfo
impl PartialEq for TargetGroupInfo
Source§impl Serialize for TargetGroupInfo
impl Serialize for TargetGroupInfo
impl StructuralPartialEq for TargetGroupInfo
Auto Trait Implementations§
impl Freeze for TargetGroupInfo
impl RefUnwindSafe for TargetGroupInfo
impl Send for TargetGroupInfo
impl Sync for TargetGroupInfo
impl Unpin for TargetGroupInfo
impl UnwindSafe for TargetGroupInfo
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