pub struct EndpointConfiguration {
pub client_ip_preservation_enabled: Option<bool>,
pub endpoint_id: Option<String>,
pub weight: Option<i64>,
}
Expand description
A complex type for endpoints.
Fields§
§client_ip_preservation_enabled: Option<bool>
Indicates whether client IP address preservation is enabled for an Application Load Balancer 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 Application Load Balancer endpoint fronted by the accelerator.
For more information, see Preserve Client IP Addresses in AWS Global Accelerator in the AWS Global Accelerator Developer Guide.
endpoint_id: Option<String>
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 EC2 instances, this is the EC2 instance ID.
An Application Load Balancer can be either internal or internet-facing.
weight: Option<i64>
The weight associated with the endpoint. When you add weights to endpoints, you configure AWS 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 AWS Global Accelerator Developer Guide.
Trait Implementations§
Source§impl Clone for EndpointConfiguration
impl Clone for EndpointConfiguration
Source§fn clone(&self) -> EndpointConfiguration
fn clone(&self) -> EndpointConfiguration
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more