Struct aws_sdk_elasticloadbalancingv2::model::TargetHealthDescription [−][src]
#[non_exhaustive]pub struct TargetHealthDescription {
pub target: Option<TargetDescription>,
pub health_check_port: Option<String>,
pub target_health: Option<TargetHealth>,
}
Expand description
Information about the health of a target.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.target: Option<TargetDescription>
The description of the target.
health_check_port: Option<String>
The port to use to connect with the target.
target_health: Option<TargetHealth>
The health information for the target.
Implementations
The description of the target.
The port to use to connect with the target.
The health information for the target.
Creates a new builder-style object to manufacture TargetHealthDescription
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 TargetHealthDescription
impl Send for TargetHealthDescription
impl Sync for TargetHealthDescription
impl Unpin for TargetHealthDescription
impl UnwindSafe for TargetHealthDescription
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