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>,
}Expand description
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).
Any tags assigned to the customer gateway.
type_: Option<String>The type of VPN connection the customer gateway supports (ipsec.1).
Trait Implementations§
Source§impl Clone for CustomerGateway
impl Clone for CustomerGateway
Source§fn clone(&self) -> CustomerGateway
fn clone(&self) -> CustomerGateway
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CustomerGateway
impl Debug for CustomerGateway
Source§impl Default for CustomerGateway
impl Default for CustomerGateway
Source§fn default() -> CustomerGateway
fn default() -> CustomerGateway
Returns the “default value” for a type. Read more
Source§impl PartialEq for CustomerGateway
impl PartialEq for CustomerGateway
impl StructuralPartialEq for CustomerGateway
Auto Trait Implementations§
impl Freeze for CustomerGateway
impl RefUnwindSafe for CustomerGateway
impl Send for CustomerGateway
impl Sync for CustomerGateway
impl Unpin for CustomerGateway
impl UnwindSafe for CustomerGateway
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more