[][src]Struct rusoto_globalaccelerator::DestinationPortMapping

pub struct DestinationPortMapping {
    pub accelerator_arn: Option<String>,
    pub accelerator_socket_addresses: Option<Vec<SocketAddress>>,
    pub destination_socket_address: Option<SocketAddress>,
    pub destination_traffic_state: Option<String>,
    pub endpoint_group_arn: Option<String>,
    pub endpoint_group_region: Option<String>,
    pub endpoint_id: Option<String>,
    pub ip_address_type: Option<String>,
}

The port mappings for a specified endpoint IP address (destination).

Fields

accelerator_arn: Option<String>

The Amazon Resource Name (ARN) of the custom routing accelerator that you have port mappings for.

accelerator_socket_addresses: Option<Vec<SocketAddress>>

The IP address/port combinations (sockets) that map to a given destination socket address.

destination_socket_address: Option<SocketAddress>

The endpoint IP address/port combination for traffic received on the accelerator socket address.

destination_traffic_state: Option<String>

Indicates whether or not a port mapping destination can receive traffic. The value is either ALLOW, if traffic is allowed to the destination, or DENY, if traffic is not allowed to the destination.

endpoint_group_arn: Option<String>

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

endpoint_group_region: Option<String>

The AWS Region for the endpoint group.

endpoint_id: Option<String>

The ID for the virtual private cloud (VPC) subnet.

ip_address_type: Option<String>

The IP address type, which must be IPv4.

Trait Implementations

impl Clone for DestinationPortMapping[src]

impl Debug for DestinationPortMapping[src]

impl Default for DestinationPortMapping[src]

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

impl PartialEq<DestinationPortMapping> for DestinationPortMapping[src]

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