#[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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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) -> Option<&[AssociationSetDetails]>
pub fn association_set(&self) -> Option<&[AssociationSetDetails]>
The associations between a route table and one or more subnets or a gateway.
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) -> Option<&[PropagatingVgwSetDetails]>
pub fn propagating_vgw_set(&self) -> Option<&[PropagatingVgwSetDetails]>
Describes a virtual private gateway propagating route.
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) -> Option<&[RouteSetDetails]>
pub fn route_set(&self) -> Option<&[RouteSetDetails]>
The routes in the route table.
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
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 AwsEc2RouteTableDetails
impl Debug for AwsEc2RouteTableDetails
source§impl PartialEq<AwsEc2RouteTableDetails> for AwsEc2RouteTableDetails
impl PartialEq<AwsEc2RouteTableDetails> for AwsEc2RouteTableDetails
source§fn eq(&self, other: &AwsEc2RouteTableDetails) -> bool
fn eq(&self, other: &AwsEc2RouteTableDetails) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsEc2RouteTableDetails
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more