[][src]Struct rusoto_globalaccelerator::CustomRoutingEndpointGroup

pub struct CustomRoutingEndpointGroup {
    pub destination_descriptions: Option<Vec<CustomRoutingDestinationDescription>>,
    pub endpoint_descriptions: Option<Vec<CustomRoutingEndpointDescription>>,
    pub endpoint_group_arn: Option<String>,
    pub endpoint_group_region: Option<String>,
}

A complex type for the endpoint group for a custom routing accelerator. An AWS Region can have only one endpoint group for a specific listener.

Fields

destination_descriptions: Option<Vec<CustomRoutingDestinationDescription>>

For a custom routing accelerator, describes the port range and protocol for all endpoints (virtual private cloud subnets) in an endpoint group to accept client traffic on.

endpoint_descriptions: Option<Vec<CustomRoutingEndpointDescription>>

For a custom routing accelerator, describes the endpoints (virtual private cloud subnets) in an endpoint group to accept client traffic on.

endpoint_group_arn: Option<String>

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

endpoint_group_region: Option<String>

The AWS Region where the endpoint group is located.

Trait Implementations

impl Clone for CustomRoutingEndpointGroup[src]

impl Debug for CustomRoutingEndpointGroup[src]

impl Default for CustomRoutingEndpointGroup[src]

impl<'de> Deserialize<'de> for CustomRoutingEndpointGroup[src]

impl PartialEq<CustomRoutingEndpointGroup> for CustomRoutingEndpointGroup[src]

impl StructuralPartialEq for CustomRoutingEndpointGroup[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.