[][src]Struct rusoto_ec2::CustomerGateway

pub struct CustomerGateway {
    pub bgp_asn: Option<String>,
    pub certificate_arn: Option<String>,
    pub customer_gateway_id: Option<String>,
    pub device_name: Option<String>,
    pub ip_address: Option<String>,
    pub state: Option<String>,
    pub tags: Option<Vec<Tag>>,
    pub type_: Option<String>,
}

Describes a customer gateway.

Fields

bgp_asn: Option<String>

The customer gateway's Border Gateway Protocol (BGP) Autonomous System Number (ASN).

certificate_arn: Option<String>

The Amazon Resource Name (ARN) for the customer gateway certificate.

customer_gateway_id: Option<String>

The ID of the customer gateway.

device_name: Option<String>

The name of customer gateway device.

ip_address: Option<String>

The Internet-routable IP address of the customer gateway's outside interface.

state: Option<String>

The current state of the customer gateway (pending | available | deleting | deleted).

tags: Option<Vec<Tag>>

Any tags assigned to the customer gateway.

type_: Option<String>

The type of VPN connection the customer gateway supports (ipsec.1).

Trait Implementations

impl Clone for CustomerGateway[src]

impl Debug for CustomerGateway[src]

impl Default for CustomerGateway[src]

impl PartialEq<CustomerGateway> for CustomerGateway[src]

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