#[non_exhaustive]pub struct EndpointDescription { /* private fields */ }Expand description
A complex type for an endpoint. Each endpoint group can include one or more endpoints, such as load balancers.
Implementations
sourceimpl EndpointDescription
impl EndpointDescription
sourcepub fn endpoint_id(&self) -> Option<&str>
pub fn endpoint_id(&self) -> Option<&str>
An ID for the endpoint. If the endpoint is a Network Load Balancer or Application Load Balancer, this is the Amazon Resource Name (ARN) of the resource. If the endpoint is an Elastic IP address, this is the Elastic IP address allocation ID. For Amazon EC2 instances, this is the EC2 instance ID.
An Application Load Balancer can be either internal or internet-facing.
sourcepub fn weight(&self) -> Option<i32>
pub fn weight(&self) -> Option<i32>
The weight associated with the endpoint. When you add weights to endpoints, you configure Global Accelerator to route traffic based on proportions that you specify. For example, you might specify endpoint weights of 4, 5, 5, and 6 (sum=20). The result is that 4/20 of your traffic, on average, is routed to the first endpoint, 5/20 is routed both to the second and third endpoints, and 6/20 is routed to the last endpoint. For more information, see Endpoint weights in the Global Accelerator Developer Guide.
sourcepub fn health_state(&self) -> Option<&HealthState>
pub fn health_state(&self) -> Option<&HealthState>
The health status of the endpoint.
sourcepub fn health_reason(&self) -> Option<&str>
pub fn health_reason(&self) -> Option<&str>
Returns a null result.
sourcepub fn client_ip_preservation_enabled(&self) -> Option<bool>
pub fn client_ip_preservation_enabled(&self) -> Option<bool>
Indicates whether client IP address preservation is enabled for an endpoint. The value is true or false. The default value is true for new accelerators.
If the value is set to true, the client's IP address is preserved in the X-Forwarded-For request header as traffic travels to applications on the endpoint fronted by the accelerator.
Client IP address preservation is supported, in specific Amazon Web Services Regions, for endpoints that are Application Load Balancers and Amazon EC2 instances.
For more information, see Preserve client IP addresses in Global Accelerator in the Global Accelerator Developer Guide.
sourceimpl EndpointDescription
impl EndpointDescription
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture EndpointDescription.
Trait Implementations
sourceimpl Clone for EndpointDescription
impl Clone for EndpointDescription
sourcefn clone(&self) -> EndpointDescription
fn clone(&self) -> EndpointDescription
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more