Struct aws_sdk_ec2::model::RouteTableAssociation [−][src]
#[non_exhaustive]pub struct RouteTableAssociation {
pub main: Option<bool>,
pub route_table_association_id: Option<String>,
pub route_table_id: Option<String>,
pub subnet_id: Option<String>,
pub gateway_id: Option<String>,
pub association_state: Option<RouteTableAssociationState>,
}
Expand description
Describes an association between a route table and a subnet or gateway.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.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.
gateway_id: Option<String>
The ID of the internet gateway or virtual private gateway.
association_state: Option<RouteTableAssociationState>
The state of the association.
Implementations
The ID of the association.
The ID of the route table.
The ID of the subnet. A subnet ID is not returned for an implicit association.
The ID of the internet gateway or virtual private gateway.
The state of the association.
Creates a new builder-style object to manufacture RouteTableAssociation
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more