#[non_exhaustive]pub struct AwsEc2RouteTableDetails {
pub association_set: Option<Vec<AssociationSetDetails>>,
pub owner_id: Option<String>,
pub propagating_vgw_set: Option<Vec<PropagatingVgwSetDetails>>,
pub route_table_id: Option<String>,
pub route_set: Option<Vec<RouteSetDetails>>,
pub vpc_id: Option<String>,
}
Expand description
Provides details about a route table for the specified VPC.
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.association_set: Option<Vec<AssociationSetDetails>>
The associations between a route table and one or more subnets or a gateway.
owner_id: Option<String>
The ID of the Amazon Web Services account that owns the route table.
propagating_vgw_set: Option<Vec<PropagatingVgwSetDetails>>
Describes a virtual private gateway propagating route.
route_table_id: Option<String>
The ID of the route table.
route_set: Option<Vec<RouteSetDetails>>
The routes in the route table.
vpc_id: Option<String>
The ID of the virtual private cloud (VPC).
Implementations§
source§impl AwsEc2RouteTableDetails
impl AwsEc2RouteTableDetails
sourcepub fn association_set(&self) -> &[AssociationSetDetails]
pub fn association_set(&self) -> &[AssociationSetDetails]
The associations between a route table and one or more subnets or a gateway.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .association_set.is_none()
.
sourcepub fn owner_id(&self) -> Option<&str>
pub fn owner_id(&self) -> Option<&str>
The ID of the Amazon Web Services account that owns the route table.
sourcepub fn propagating_vgw_set(&self) -> &[PropagatingVgwSetDetails]
pub fn propagating_vgw_set(&self) -> &[PropagatingVgwSetDetails]
Describes a virtual private gateway propagating route.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .propagating_vgw_set.is_none()
.
sourcepub fn route_table_id(&self) -> Option<&str>
pub fn route_table_id(&self) -> Option<&str>
The ID of the route table.
sourcepub fn route_set(&self) -> &[RouteSetDetails]
pub fn route_set(&self) -> &[RouteSetDetails]
The routes in the route table.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .route_set.is_none()
.
source§impl AwsEc2RouteTableDetails
impl AwsEc2RouteTableDetails
sourcepub fn builder() -> AwsEc2RouteTableDetailsBuilder
pub fn builder() -> AwsEc2RouteTableDetailsBuilder
Creates a new builder-style object to manufacture AwsEc2RouteTableDetails
.
Trait Implementations§
source§impl Clone for AwsEc2RouteTableDetails
impl Clone for AwsEc2RouteTableDetails
source§fn clone(&self) -> AwsEc2RouteTableDetails
fn clone(&self) -> AwsEc2RouteTableDetails
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AwsEc2RouteTableDetails
impl Debug for AwsEc2RouteTableDetails
source§impl PartialEq for AwsEc2RouteTableDetails
impl PartialEq for AwsEc2RouteTableDetails
source§fn eq(&self, other: &AwsEc2RouteTableDetails) -> bool
fn eq(&self, other: &AwsEc2RouteTableDetails) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsEc2RouteTableDetails
Auto Trait Implementations§
impl Freeze for AwsEc2RouteTableDetails
impl RefUnwindSafe for AwsEc2RouteTableDetails
impl Send for AwsEc2RouteTableDetails
impl Sync for AwsEc2RouteTableDetails
impl Unpin for AwsEc2RouteTableDetails
impl UnwindSafe for AwsEc2RouteTableDetails
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more