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>>,
}
Expand description
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§
Source§impl Clone for LoadBalancerInfo
impl Clone for LoadBalancerInfo
Source§fn clone(&self) -> LoadBalancerInfo
fn clone(&self) -> LoadBalancerInfo
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 LoadBalancerInfo
impl Debug for LoadBalancerInfo
Source§impl Default for LoadBalancerInfo
impl Default for LoadBalancerInfo
Source§fn default() -> LoadBalancerInfo
fn default() -> LoadBalancerInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LoadBalancerInfo
impl<'de> Deserialize<'de> for LoadBalancerInfo
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 LoadBalancerInfo
impl PartialEq for LoadBalancerInfo
Source§impl Serialize for LoadBalancerInfo
impl Serialize for LoadBalancerInfo
impl StructuralPartialEq for LoadBalancerInfo
Auto Trait Implementations§
impl Freeze for LoadBalancerInfo
impl RefUnwindSafe for LoadBalancerInfo
impl Send for LoadBalancerInfo
impl Sync for LoadBalancerInfo
impl Unpin for LoadBalancerInfo
impl UnwindSafe for LoadBalancerInfo
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