pub struct VpnGateway {
pub amazon_side_asn: Option<i64>,
pub availability_zone: Option<String>,
pub state: Option<String>,
pub tags: Option<Vec<Tag>>,
pub type_: Option<String>,
pub vpc_attachments: Option<Vec<VpcAttachment>>,
pub vpn_gateway_id: Option<String>,
}Expand description
Describes a virtual private gateway.
Fields§
§amazon_side_asn: Option<i64>The private Autonomous System Number (ASN) for the Amazon side of a BGP session.
availability_zone: Option<String>The Availability Zone where the virtual private gateway was created, if applicable. This field may be empty or not returned.
state: Option<String>The current state of the virtual private gateway.
Any tags assigned to the virtual private gateway.
type_: Option<String>The type of VPN connection the virtual private gateway supports.
vpc_attachments: Option<Vec<VpcAttachment>>Any VPCs attached to the virtual private gateway.
vpn_gateway_id: Option<String>The ID of the virtual private gateway.
Trait Implementations§
Source§impl Clone for VpnGateway
impl Clone for VpnGateway
Source§fn clone(&self) -> VpnGateway
fn clone(&self) -> VpnGateway
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 VpnGateway
impl Debug for VpnGateway
Source§impl Default for VpnGateway
impl Default for VpnGateway
Source§fn default() -> VpnGateway
fn default() -> VpnGateway
Returns the “default value” for a type. Read more
Source§impl PartialEq for VpnGateway
impl PartialEq for VpnGateway
impl StructuralPartialEq for VpnGateway
Auto Trait Implementations§
impl Freeze for VpnGateway
impl RefUnwindSafe for VpnGateway
impl Send for VpnGateway
impl Sync for VpnGateway
impl Unpin for VpnGateway
impl UnwindSafe for VpnGateway
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