#[non_exhaustive]pub struct EndpointDescription {
pub endpoint_id: Option<String>,
pub weight: Option<i32>,
pub health_state: Option<HealthState>,
pub health_reason: Option<String>,
pub client_ip_preservation_enabled: Option<bool>,
}Expand description
A complex type for an endpoint. Each endpoint group can include one or more endpoints, such as load balancers.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.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 Amazon EC2 instances, this is the EC2 instance ID.
An Application Load Balancer can be either internal or internet-facing.
weight: Option<i32>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.
health_state: Option<HealthState>The health status of the endpoint.
health_reason: Option<String>Returns a null result.
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 Viewing Client IP Addresses in AWS Global Accelerator in the AWS Global Accelerator Developer Guide.
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 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.
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 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 Viewing Client IP Addresses in AWS Global Accelerator in the AWS 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
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for EndpointDescription
impl Debug for EndpointDescription
sourceimpl PartialEq<EndpointDescription> for EndpointDescription
impl PartialEq<EndpointDescription> for EndpointDescription
sourcefn eq(&self, other: &EndpointDescription) -> bool
fn eq(&self, other: &EndpointDescription) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &EndpointDescription) -> bool
fn ne(&self, other: &EndpointDescription) -> bool
This method tests for !=.
impl StructuralPartialEq for EndpointDescription
Auto Trait Implementations
impl RefUnwindSafe for EndpointDescription
impl Send for EndpointDescription
impl Sync for EndpointDescription
impl Unpin for EndpointDescription
impl UnwindSafe for EndpointDescription
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more