#[non_exhaustive]
pub struct UpdateEndpointGroupInput { pub endpoint_group_arn: Option<String>, pub endpoint_configurations: Option<Vec<EndpointConfiguration>>, pub traffic_dial_percentage: Option<f32>, pub health_check_port: Option<i32>, pub health_check_protocol: Option<HealthCheckProtocol>, pub health_check_path: Option<String>, pub health_check_interval_seconds: Option<i32>, pub threshold_count: Option<i32>, pub port_overrides: Option<Vec<PortOverride>>, }

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§endpoint_group_arn: Option<String>

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

§endpoint_configurations: Option<Vec<EndpointConfiguration>>

The list of endpoint objects. A resource must be valid and active when you add it as an endpoint.

§traffic_dial_percentage: 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.

§health_check_port: Option<i32>

The port that Global Accelerator uses to check the health of endpoints that are part of this endpoint group. The default port is the listener port that this endpoint group is associated with. If the listener port is a list of ports, Global Accelerator uses the first port in the list.

§health_check_protocol: Option<HealthCheckProtocol>

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

§health_check_path: Option<String>

If the protocol is HTTP/S, then this specifies the path that is the destination for health check targets. The default value is slash (/).

§health_check_interval_seconds: Option<i32>

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

§threshold_count: 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.

§port_overrides: Option<Vec<PortOverride>>

Override specific listener ports used to route traffic to endpoints that are part of this endpoint group. For example, you can create a port override in which the listener receives user traffic on ports 80 and 443, but your accelerator routes that traffic to ports 1080 and 1443, respectively, on the endpoints.

For more information, see Overriding listener ports in the Global Accelerator Developer Guide.

Implementations§

source§

impl UpdateEndpointGroupInput

source

pub fn endpoint_group_arn(&self) -> Option<&str>

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

source

pub fn endpoint_configurations(&self) -> &[EndpointConfiguration]

The list of endpoint objects. A resource must be valid and active when you add it as an endpoint.

If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .endpoint_configurations.is_none().

source

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.

source

pub fn health_check_port(&self) -> Option<i32>

The port that Global Accelerator uses to check the health of endpoints that are part of this endpoint group. The default port is the listener port that this endpoint group is associated with. If the listener port is a list of ports, Global Accelerator uses the first port in the list.

source

pub fn health_check_protocol(&self) -> Option<&HealthCheckProtocol>

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

source

pub fn health_check_path(&self) -> Option<&str>

If the protocol is HTTP/S, then this specifies the path that is the destination for health check targets. The default value is slash (/).

source

pub fn health_check_interval_seconds(&self) -> Option<i32>

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

source

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.

source

pub fn port_overrides(&self) -> &[PortOverride]

Override specific listener ports used to route traffic to endpoints that are part of this endpoint group. For example, you can create a port override in which the listener receives user traffic on ports 80 and 443, but your accelerator routes that traffic to ports 1080 and 1443, respectively, on the endpoints.

For more information, see Overriding listener ports in the Global Accelerator Developer Guide.

If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .port_overrides.is_none().

source§

impl UpdateEndpointGroupInput

source

pub fn builder() -> UpdateEndpointGroupInputBuilder

Creates a new builder-style object to manufacture UpdateEndpointGroupInput.

Trait Implementations§

source§

impl Clone for UpdateEndpointGroupInput

source§

fn clone(&self) -> UpdateEndpointGroupInput

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for UpdateEndpointGroupInput

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl PartialEq for UpdateEndpointGroupInput

source§

fn eq(&self, other: &UpdateEndpointGroupInput) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl StructuralPartialEq for UpdateEndpointGroupInput

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

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

fn in_current_span(self) -> Instrumented<Self>

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

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

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

source§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

source§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

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
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more