[][src]Struct rusoto_globalaccelerator::CustomRoutingDestinationConfiguration

pub struct CustomRoutingDestinationConfiguration {
    pub from_port: i64,
    pub protocols: Vec<String>,
    pub to_port: i64,
}

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

Fields

from_port: i64

The first port, inclusive, in the range of ports for the endpoint group that is associated with a custom routing accelerator.

protocols: Vec<String>

The protocol for the endpoint group that is associated with a custom routing accelerator. The protocol can be either TCP or UDP.

to_port: i64

The last port, inclusive, in the range of ports for the endpoint group that is associated with a custom routing accelerator.

Trait Implementations

impl Clone for CustomRoutingDestinationConfiguration[src]

impl Debug for CustomRoutingDestinationConfiguration[src]

impl Default for CustomRoutingDestinationConfiguration[src]

impl PartialEq<CustomRoutingDestinationConfiguration> for CustomRoutingDestinationConfiguration[src]

impl Serialize for CustomRoutingDestinationConfiguration[src]

impl StructuralPartialEq for CustomRoutingDestinationConfiguration[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> 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.