pub struct InternetGateway {
pub attachments: Option<Vec<InternetGatewayAttachment>>,
pub internet_gateway_id: Option<String>,
pub owner_id: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Describes an internet gateway.
Fields§
§attachments: Option<Vec<InternetGatewayAttachment>>
Any VPCs attached to the internet gateway.
internet_gateway_id: Option<String>
The ID of the internet gateway.
owner_id: Option<String>
The ID of the AWS account that owns the internet gateway.
Any tags assigned to the internet gateway.
Trait Implementations§
Source§impl Clone for InternetGateway
impl Clone for InternetGateway
Source§fn clone(&self) -> InternetGateway
fn clone(&self) -> InternetGateway
Returns a copy 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 InternetGateway
impl Debug for InternetGateway
Source§impl Default for InternetGateway
impl Default for InternetGateway
Source§fn default() -> InternetGateway
fn default() -> InternetGateway
Returns the “default value” for a type. Read more
Source§impl PartialEq for InternetGateway
impl PartialEq for InternetGateway
impl StructuralPartialEq for InternetGateway
Auto Trait Implementations§
impl Freeze for InternetGateway
impl RefUnwindSafe for InternetGateway
impl Send for InternetGateway
impl Sync for InternetGateway
impl Unpin 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