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 more
sourceimpl 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
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more