pub struct InternetGatewayAttachment {
pub state: Option<String>,
pub vpc_id: Option<String>,
}Expand description
Describes the attachment of a VPC to an internet gateway or an egress-only internet gateway.
Fields§
§state: Option<String>The current state of the attachment. For an internet gateway, the state is available when attached to a VPC; otherwise, this value is not returned.
vpc_id: Option<String>The ID of the VPC.
Trait Implementations§
Source§impl Clone for InternetGatewayAttachment
impl Clone for InternetGatewayAttachment
Source§fn clone(&self) -> InternetGatewayAttachment
fn clone(&self) -> InternetGatewayAttachment
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 InternetGatewayAttachment
impl Debug for InternetGatewayAttachment
Source§impl Default for InternetGatewayAttachment
impl Default for InternetGatewayAttachment
Source§fn default() -> InternetGatewayAttachment
fn default() -> InternetGatewayAttachment
Returns the “default value” for a type. Read more
impl StructuralPartialEq for InternetGatewayAttachment
Auto Trait Implementations§
impl Freeze for InternetGatewayAttachment
impl RefUnwindSafe for InternetGatewayAttachment
impl Send for InternetGatewayAttachment
impl Sync for InternetGatewayAttachment
impl Unpin for InternetGatewayAttachment
impl UnwindSafe for InternetGatewayAttachment
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