pub struct LocalGateway {
pub local_gateway_id: Option<String>,
pub outpost_arn: Option<String>,
pub owner_id: Option<String>,
pub state: Option<String>,
pub tags: Option<Vec<Tag>>,
}Expand description
Describes a local gateway.
Fields§
§local_gateway_id: Option<String>The ID of the local gateway.
outpost_arn: Option<String>The Amazon Resource Name (ARN) of the Outpost.
owner_id: Option<String>The ID of the AWS account ID that owns the local gateway.
state: Option<String>The state of the local gateway.
The tags assigned to the local gateway.
Trait Implementations§
Source§impl Clone for LocalGateway
impl Clone for LocalGateway
Source§fn clone(&self) -> LocalGateway
fn clone(&self) -> LocalGateway
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 LocalGateway
impl Debug for LocalGateway
Source§impl Default for LocalGateway
impl Default for LocalGateway
Source§fn default() -> LocalGateway
fn default() -> LocalGateway
Returns the “default value” for a type. Read more
Source§impl PartialEq for LocalGateway
impl PartialEq for LocalGateway
impl StructuralPartialEq for LocalGateway
Auto Trait Implementations§
impl Freeze for LocalGateway
impl RefUnwindSafe for LocalGateway
impl Send for LocalGateway
impl Sync for LocalGateway
impl Unpin for LocalGateway
impl UnwindSafe for LocalGateway
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