[−][src]Struct rusoto_elbv2::TargetGroup
Information about a target group.
Fields
health_check_enabled: Option<bool>
Indicates whether health checks are enabled.
health_check_interval_seconds: Option<i64>
The approximate amount of time, in seconds, between health checks of an individual target.
health_check_path: Option<String>
The destination for the health check request.
health_check_port: Option<String>
The port to use to connect with the target.
health_check_protocol: Option<String>
The protocol to use to connect with the target.
health_check_timeout_seconds: Option<i64>
The amount of time, in seconds, during which no response means a failed health check.
healthy_threshold_count: Option<i64>
The number of consecutive health checks successes required before considering an unhealthy target healthy.
load_balancer_arns: Option<Vec<String>>
The Amazon Resource Names (ARN) of the load balancers that route traffic to this target group.
matcher: Option<Matcher>
The HTTP codes to use when checking for a successful response from a target.
port: Option<i64>
The port on which the targets are listening.
protocol: Option<String>
The protocol to use for routing traffic to the targets.
target_group_arn: Option<String>
The Amazon Resource Name (ARN) of the target group.
target_group_name: Option<String>
The name of the target group.
target_type: Option<String>
The type of target that you must specify when registering targets with this target group. The possible values are instance
(targets are specified by instance ID) or ip
(targets are specified by IP address).
unhealthy_threshold_count: Option<i64>
The number of consecutive health check failures required before considering the target unhealthy.
vpc_id: Option<String>
The ID of the VPC for the targets.
Trait Implementations
impl PartialEq<TargetGroup> for TargetGroup
[src]
fn eq(&self, other: &TargetGroup) -> bool
[src]
fn ne(&self, other: &TargetGroup) -> bool
[src]
impl Default for TargetGroup
[src]
fn default() -> TargetGroup
[src]
impl Clone for TargetGroup
[src]
fn clone(&self) -> TargetGroup
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for TargetGroup
[src]
Auto Trait Implementations
impl Send for TargetGroup
impl Sync for TargetGroup
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self