pub struct InternetGateway {
pub internet_gateway_id: String,
pub attachments: Vec<(String, String)>,
}Expand description
An internet gateway (or egress-only IGW) with its VPC attachments.
Fields§
§internet_gateway_id: String§attachments: Vec<(String, String)>(vpc_id, state) pairs.
Trait Implementations§
Source§impl Clone for InternetGateway
impl Clone for InternetGateway
Source§fn clone(&self) -> InternetGateway
fn clone(&self) -> InternetGateway
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InternetGateway
impl Debug for InternetGateway
Source§impl<'de> Deserialize<'de> for InternetGateway
impl<'de> Deserialize<'de> for InternetGateway
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for InternetGateway
impl RefUnwindSafe for InternetGateway
impl Send for InternetGateway
impl Sync for InternetGateway
impl Unpin for InternetGateway
impl UnsafeUnpin for InternetGateway
impl UnwindSafe for InternetGateway
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