#[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 ==
.