[][src]Struct rusoto_codedeploy::LoadBalancerInfo

pub struct LoadBalancerInfo {
    pub elb_info_list: Option<Vec<ELBInfo>>,
    pub target_group_info_list: Option<Vec<TargetGroupInfo>>,
    pub target_group_pair_info_list: Option<Vec<TargetGroupPairInfo>>,
}

Information about the Elastic Load Balancing load balancer or target group used in a deployment.

Fields

elb_info_list: Option<Vec<ELBInfo>>

An array that contains information about the load balancer to use for load balancing in a deployment. In Elastic Load Balancing, load balancers are used with Classic Load Balancers.

Adding more than one load balancer to the array is not supported.

target_group_info_list: Option<Vec<TargetGroupInfo>>

An array that contains information about the target group to use for load balancing in a deployment. In Elastic Load Balancing, target groups are used with Application Load Balancers.

Adding more than one target group to the array is not supported.

target_group_pair_info_list: Option<Vec<TargetGroupPairInfo>>

The target group pair information. This is an array of TargeGroupPairInfo objects with a maximum size of one.

Trait Implementations

impl Clone for LoadBalancerInfo[src]

impl Debug for LoadBalancerInfo[src]

impl Default for LoadBalancerInfo[src]

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

impl PartialEq<LoadBalancerInfo> for LoadBalancerInfo[src]

impl Serialize for LoadBalancerInfo[src]

impl StructuralPartialEq for LoadBalancerInfo[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.