Struct aws_sdk_codedeploy::model::LoadBalancerInfo [−][src]
#[non_exhaustive]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 (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.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.
Implementations
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.
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.
The target group pair information. This is an array of
TargeGroupPairInfo
objects with a maximum size of one.
Creates a new builder-style object to manufacture LoadBalancerInfo
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for LoadBalancerInfo
impl Send for LoadBalancerInfo
impl Sync for LoadBalancerInfo
impl Unpin for LoadBalancerInfo
impl UnwindSafe for LoadBalancerInfo
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more