pub struct LocalGatewayRouteTableVirtualInterfaceGroupAssociation {
pub local_gateway_id: Option<String>,
pub local_gateway_route_table_arn: Option<String>,
pub local_gateway_route_table_id: Option<String>,
pub local_gateway_route_table_virtual_interface_group_association_id: Option<String>,
pub local_gateway_virtual_interface_group_id: Option<String>,
pub owner_id: Option<String>,
pub state: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Describes an association between a local gateway route table and a virtual interface group.
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 for the virtual interface group.
local_gateway_route_table_id: Option<String>
The ID of the local gateway route table.
local_gateway_route_table_virtual_interface_group_association_id: Option<String>
The ID of the association.
local_gateway_virtual_interface_group_id: Option<String>
The ID of the virtual interface group.
owner_id: Option<String>
The AWS account ID that owns the local gateway virtual interface group association.
state: Option<String>
The state of the association.
The tags assigned to the association.
Trait Implementations§
Source§impl Clone for LocalGatewayRouteTableVirtualInterfaceGroupAssociation
impl Clone for LocalGatewayRouteTableVirtualInterfaceGroupAssociation
Source§fn clone(&self) -> LocalGatewayRouteTableVirtualInterfaceGroupAssociation
fn clone(&self) -> LocalGatewayRouteTableVirtualInterfaceGroupAssociation
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 Default for LocalGatewayRouteTableVirtualInterfaceGroupAssociation
impl Default for LocalGatewayRouteTableVirtualInterfaceGroupAssociation
Source§fn default() -> LocalGatewayRouteTableVirtualInterfaceGroupAssociation
fn default() -> LocalGatewayRouteTableVirtualInterfaceGroupAssociation
Returns the “default value” for a type. Read more
Source§impl PartialEq for LocalGatewayRouteTableVirtualInterfaceGroupAssociation
impl PartialEq for LocalGatewayRouteTableVirtualInterfaceGroupAssociation
Source§fn eq(
&self,
other: &LocalGatewayRouteTableVirtualInterfaceGroupAssociation,
) -> bool
fn eq( &self, other: &LocalGatewayRouteTableVirtualInterfaceGroupAssociation, ) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for LocalGatewayRouteTableVirtualInterfaceGroupAssociation
Auto Trait Implementations§
impl Freeze for LocalGatewayRouteTableVirtualInterfaceGroupAssociation
impl RefUnwindSafe for LocalGatewayRouteTableVirtualInterfaceGroupAssociation
impl Send for LocalGatewayRouteTableVirtualInterfaceGroupAssociation
impl Sync for LocalGatewayRouteTableVirtualInterfaceGroupAssociation
impl Unpin for LocalGatewayRouteTableVirtualInterfaceGroupAssociation
impl UnwindSafe for LocalGatewayRouteTableVirtualInterfaceGroupAssociation
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