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