pub struct EgressOnlyInternetGateway {
pub attachments: Option<Vec<InternetGatewayAttachment>>,
pub egress_only_internet_gateway_id: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Describes an egress-only internet gateway.
Fields§
§attachments: Option<Vec<InternetGatewayAttachment>>
Information about the attachment of the egress-only internet gateway.
egress_only_internet_gateway_id: Option<String>
The ID of the egress-only internet gateway.
The tags assigned to the egress-only internet gateway.
Trait Implementations§
Source§impl Clone for EgressOnlyInternetGateway
impl Clone for EgressOnlyInternetGateway
Source§fn clone(&self) -> EgressOnlyInternetGateway
fn clone(&self) -> EgressOnlyInternetGateway
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 EgressOnlyInternetGateway
impl Debug for EgressOnlyInternetGateway
Source§impl Default for EgressOnlyInternetGateway
impl Default for EgressOnlyInternetGateway
Source§fn default() -> EgressOnlyInternetGateway
fn default() -> EgressOnlyInternetGateway
Returns the “default value” for a type. Read more
impl StructuralPartialEq for EgressOnlyInternetGateway
Auto Trait Implementations§
impl Freeze for EgressOnlyInternetGateway
impl RefUnwindSafe for EgressOnlyInternetGateway
impl Send for EgressOnlyInternetGateway
impl Sync for EgressOnlyInternetGateway
impl Unpin for EgressOnlyInternetGateway
impl UnwindSafe for EgressOnlyInternetGateway
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