pub struct RouteTableAssociation {
pub association_state: Option<RouteTableAssociationState>,
pub gateway_id: Option<String>,
pub main: Option<bool>,
pub route_table_association_id: Option<String>,
pub route_table_id: Option<String>,
pub subnet_id: Option<String>,
}
Expand description
Describes an association between a route table and a subnet or gateway.
Fields§
§association_state: Option<RouteTableAssociationState>
The state of the association.
gateway_id: Option<String>
The ID of the internet gateway or virtual private gateway.
main: Option<bool>
Indicates whether this is the main route table.
route_table_association_id: Option<String>
The ID of the association.
route_table_id: Option<String>
The ID of the route table.
subnet_id: Option<String>
The ID of the subnet. A subnet ID is not returned for an implicit association.
Trait Implementations§
Source§impl Clone for RouteTableAssociation
impl Clone for RouteTableAssociation
Source§fn clone(&self) -> RouteTableAssociation
fn clone(&self) -> RouteTableAssociation
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 RouteTableAssociation
impl Debug for RouteTableAssociation
Source§impl Default for RouteTableAssociation
impl Default for RouteTableAssociation
Source§fn default() -> RouteTableAssociation
fn default() -> RouteTableAssociation
Returns the “default value” for a type. Read more
Source§impl PartialEq for RouteTableAssociation
impl PartialEq for RouteTableAssociation
impl StructuralPartialEq for RouteTableAssociation
Auto Trait Implementations§
impl Freeze for RouteTableAssociation
impl RefUnwindSafe for RouteTableAssociation
impl Send for RouteTableAssociation
impl Sync for RouteTableAssociation
impl Unpin for RouteTableAssociation
impl UnwindSafe for RouteTableAssociation
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