Struct aws_sdk_ec2::model::RouteTableAssociation
source · #[non_exhaustive]pub struct RouteTableAssociation { /* private fields */ }
Expand description
Describes an association between a route table and a subnet or gateway.
Implementations§
source§impl RouteTableAssociation
impl RouteTableAssociation
sourcepub fn route_table_association_id(&self) -> Option<&str>
pub fn route_table_association_id(&self) -> Option<&str>
The ID of the association.
sourcepub fn route_table_id(&self) -> Option<&str>
pub fn route_table_id(&self) -> Option<&str>
The ID of the route table.
sourcepub fn subnet_id(&self) -> Option<&str>
pub fn subnet_id(&self) -> Option<&str>
The ID of the subnet. A subnet ID is not returned for an implicit association.
sourcepub fn gateway_id(&self) -> Option<&str>
pub fn gateway_id(&self) -> Option<&str>
The ID of the internet gateway or virtual private gateway.
sourcepub fn association_state(&self) -> Option<&RouteTableAssociationState>
pub fn association_state(&self) -> Option<&RouteTableAssociationState>
The state of the association.
source§impl RouteTableAssociation
impl RouteTableAssociation
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RouteTableAssociation
.
Trait Implementations§
source§impl Clone for RouteTableAssociation
impl Clone for RouteTableAssociation
source§fn clone(&self) -> RouteTableAssociation
fn clone(&self) -> RouteTableAssociation
Returns a copy 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 PartialEq<RouteTableAssociation> for RouteTableAssociation
impl PartialEq<RouteTableAssociation> for RouteTableAssociation
source§fn eq(&self, other: &RouteTableAssociation) -> bool
fn eq(&self, other: &RouteTableAssociation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.