Struct aws_sdk_globalaccelerator::model::EndpointGroup
source · [−]#[non_exhaustive]pub struct EndpointGroup { /* private fields */ }Expand description
A complex type for the endpoint group. An Amazon Web Services Region can have only one endpoint group for a specific listener.
Implementations
sourceimpl EndpointGroup
impl EndpointGroup
sourcepub fn endpoint_group_arn(&self) -> Option<&str>
pub fn endpoint_group_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the endpoint group.
sourcepub fn endpoint_group_region(&self) -> Option<&str>
pub fn endpoint_group_region(&self) -> Option<&str>
The Amazon Web Services Region where the endpoint group is located.
sourcepub fn endpoint_descriptions(&self) -> Option<&[EndpointDescription]>
pub fn endpoint_descriptions(&self) -> Option<&[EndpointDescription]>
The list of endpoint objects.
sourcepub fn traffic_dial_percentage(&self) -> Option<f32>
pub fn traffic_dial_percentage(&self) -> Option<f32>
The percentage of traffic to send to an Amazon Web Services 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.
sourcepub fn health_check_port(&self) -> Option<i32>
pub fn health_check_port(&self) -> Option<i32>
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.
sourcepub fn health_check_protocol(&self) -> Option<&HealthCheckProtocol>
pub fn health_check_protocol(&self) -> Option<&HealthCheckProtocol>
The protocol that Global Accelerator uses to perform health checks on endpoints that are part of this endpoint group. The default value is TCP.
sourcepub fn health_check_path(&self) -> Option<&str>
pub fn health_check_path(&self) -> Option<&str>
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 (/).
sourcepub fn health_check_interval_seconds(&self) -> Option<i32>
pub fn health_check_interval_seconds(&self) -> Option<i32>
The time—10 seconds or 30 seconds—between health checks for each endpoint. The default value is 30.
sourcepub fn threshold_count(&self) -> Option<i32>
pub fn threshold_count(&self) -> Option<i32>
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.
sourcepub fn port_overrides(&self) -> Option<&[PortOverride]>
pub fn port_overrides(&self) -> Option<&[PortOverride]>
Allows you to override the destination ports used to route traffic to an endpoint. Using a port override lets you 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.
sourceimpl EndpointGroup
impl EndpointGroup
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EndpointGroup.
Trait Implementations
sourceimpl Clone for EndpointGroup
impl Clone for EndpointGroup
sourcefn clone(&self) -> EndpointGroup
fn clone(&self) -> EndpointGroup
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more