[][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 PartialEq<LoadBalancerInfo> for LoadBalancerInfo[src]

impl Default for LoadBalancerInfo[src]

impl Clone for LoadBalancerInfo[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for LoadBalancerInfo[src]

impl Serialize for LoadBalancerInfo[src]

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

Auto Trait Implementations

impl Send for LoadBalancerInfo

impl Sync for LoadBalancerInfo

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self