[][src]Struct rusoto_codedeploy::TargetGroupPairInfo

pub struct TargetGroupPairInfo {
    pub prod_traffic_route: Option<TrafficRoute>,
    pub target_groups: Option<Vec<TargetGroupInfo>>,
    pub test_traffic_route: Option<TrafficRoute>,
}

Information about two target groups and how traffic is routed during an Amazon ECS deployment. An optional test traffic route can be specified.

Fields

prod_traffic_route: Option<TrafficRoute>

The path used by a load balancer to route production traffic when an Amazon ECS deployment is complete.

target_groups: Option<Vec<TargetGroupInfo>>

One pair of target groups. One is associated with the original task set. The second is associated with the task set that serves traffic after the deployment is complete.

test_traffic_route: Option<TrafficRoute>

An optional path used by a load balancer to route test traffic after an Amazon ECS deployment. Validation can occur while test traffic is served during a deployment.

Trait Implementations

impl Clone for TargetGroupPairInfo[src]

impl Debug for TargetGroupPairInfo[src]

impl Default for TargetGroupPairInfo[src]

impl<'de> Deserialize<'de> for TargetGroupPairInfo[src]

impl PartialEq<TargetGroupPairInfo> for TargetGroupPairInfo[src]

impl Serialize for TargetGroupPairInfo[src]

impl StructuralPartialEq for TargetGroupPairInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.