logo
pub struct EndpointGroup {
    pub endpoint_descriptions: Option<Vec<EndpointDescription>>,
    pub endpoint_group_arn: Option<String>,
    pub endpoint_group_region: Option<String>,
    pub health_check_interval_seconds: Option<i64>,
    pub health_check_path: Option<String>,
    pub health_check_port: Option<i64>,
    pub health_check_protocol: Option<String>,
    pub port_overrides: Option<Vec<PortOverride>>,
    pub threshold_count: Option<i64>,
    pub traffic_dial_percentage: Option<f32>,
}
Expand description

A complex type for the endpoint group. An AWS Region can have only one endpoint group for a specific listener.

Fields

endpoint_descriptions: Option<Vec<EndpointDescription>>

The list of endpoint objects.

endpoint_group_arn: Option<String>

The Amazon Resource Name (ARN) of the endpoint group.

endpoint_group_region: Option<String>

The AWS Region where the endpoint group is located.

health_check_interval_seconds: Option<i64>

The time—10 seconds or 30 seconds—between health checks for each endpoint. The default value is 30.

health_check_path: Option<String>

If the protocol is HTTP/S, then this value provides the ping path that Global Accelerator uses for the destination on the endpoints for health checks. The default is slash (/).

health_check_port: Option<i64>

The port that Global Accelerator uses to perform health checks on endpoints that are part of this endpoint group.

The default port is the port for the listener that this endpoint group is associated with. If the listener port is a list, Global Accelerator uses the first specified port in the list of ports.

health_check_protocol: Option<String>

The protocol that Global Accelerator uses to perform health checks on endpoints that are part of this endpoint group. The default value is TCP.

port_overrides: Option<Vec<PortOverride>>

Allows you to override the destination ports used to route traffic to an endpoint. Using a port override lets you to map a list of external destination ports (that your users send traffic to) to a list of internal destination ports that you want an application endpoint to receive traffic on.

threshold_count: Option<i64>

The number of consecutive health checks required to set the state of a healthy endpoint to unhealthy, or to set an unhealthy endpoint to healthy. The default value is 3.

traffic_dial_percentage: Option<f32>

The percentage of traffic to send to an AWS Region. Additional traffic is distributed to other endpoint groups for this listener.

Use this action to increase (dial up) or decrease (dial down) traffic to a specific Region. The percentage is applied to the traffic that would otherwise have been routed to the Region based on optimal routing.

The default value is 100.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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