[][src]Struct rusoto_elbv2::TargetGroup

pub struct TargetGroup {
    pub health_check_enabled: Option<bool>,
    pub health_check_interval_seconds: Option<i64>,
    pub health_check_path: Option<String>,
    pub health_check_port: Option<String>,
    pub health_check_protocol: Option<String>,
    pub health_check_timeout_seconds: Option<i64>,
    pub healthy_threshold_count: Option<i64>,
    pub load_balancer_arns: Option<Vec<String>>,
    pub matcher: Option<Matcher>,
    pub port: Option<i64>,
    pub protocol: Option<String>,
    pub target_group_arn: Option<String>,
    pub target_group_name: Option<String>,
    pub target_type: Option<String>,
    pub unhealthy_threshold_count: Option<i64>,
    pub vpc_id: Option<String>,
}

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. Not used if the target is a Lambda function.

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 Clone for TargetGroup[src]

impl Debug for TargetGroup[src]

impl Default for TargetGroup[src]

impl PartialEq<TargetGroup> for TargetGroup[src]

impl StructuralPartialEq for TargetGroup[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.