pub struct TransitGatewayRouteTable {
pub creation_time: Option<String>,
pub default_association_route_table: Option<bool>,
pub default_propagation_route_table: Option<bool>,
pub state: Option<String>,
pub tags: Option<Vec<Tag>>,
pub transit_gateway_id: Option<String>,
pub transit_gateway_route_table_id: Option<String>,
}Expand description
Describes a transit gateway route table.
Fields§
§creation_time: Option<String>The creation time.
default_association_route_table: Option<bool>Indicates whether this is the default association route table for the transit gateway.
default_propagation_route_table: Option<bool>Indicates whether this is the default propagation route table for the transit gateway.
state: Option<String>The state of the transit gateway route table.
Any tags assigned to the route table.
transit_gateway_id: Option<String>The ID of the transit gateway.
transit_gateway_route_table_id: Option<String>The ID of the transit gateway route table.
Trait Implementations§
Source§impl Clone for TransitGatewayRouteTable
impl Clone for TransitGatewayRouteTable
Source§fn clone(&self) -> TransitGatewayRouteTable
fn clone(&self) -> TransitGatewayRouteTable
Returns a duplicate 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 TransitGatewayRouteTable
impl Debug for TransitGatewayRouteTable
Source§impl Default for TransitGatewayRouteTable
impl Default for TransitGatewayRouteTable
Source§fn default() -> TransitGatewayRouteTable
fn default() -> TransitGatewayRouteTable
Returns the “default value” for a type. Read more
Source§impl PartialEq for TransitGatewayRouteTable
impl PartialEq for TransitGatewayRouteTable
impl StructuralPartialEq for TransitGatewayRouteTable
Auto Trait Implementations§
impl Freeze for TransitGatewayRouteTable
impl RefUnwindSafe for TransitGatewayRouteTable
impl Send for TransitGatewayRouteTable
impl Sync for TransitGatewayRouteTable
impl Unpin for TransitGatewayRouteTable
impl UnwindSafe for TransitGatewayRouteTable
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