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
sourceimpl 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.
sourceimpl RouteTableAssociation
impl RouteTableAssociation
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RouteTableAssociation
.
Trait Implementations
sourceimpl Clone for RouteTableAssociation
impl Clone for RouteTableAssociation
sourcefn clone(&self) -> RouteTableAssociation
fn clone(&self) -> RouteTableAssociation
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for RouteTableAssociation
impl Debug for RouteTableAssociation
sourceimpl PartialEq<RouteTableAssociation> for RouteTableAssociation
impl PartialEq<RouteTableAssociation> for RouteTableAssociation
sourcefn eq(&self, other: &RouteTableAssociation) -> bool
fn eq(&self, other: &RouteTableAssociation) -> bool
impl StructuralPartialEq for RouteTableAssociation
Auto Trait Implementations
impl RefUnwindSafe for RouteTableAssociation
impl Send for RouteTableAssociation
impl Sync for RouteTableAssociation
impl Unpin for RouteTableAssociation
impl UnwindSafe for RouteTableAssociation
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more