pub struct LocalGatewayRoute {
pub destination_cidr_block: Option<String>,
pub local_gateway_route_table_id: Option<String>,
pub local_gateway_virtual_interface_group_id: Option<String>,
pub state: Option<String>,
pub type_: Option<String>,
}
Expand description
Describes a route for a local gateway route table.
Fields§
§destination_cidr_block: Option<String>
The CIDR block used for destination matches.
local_gateway_route_table_id: Option<String>
The ID of the local gateway route table.
local_gateway_virtual_interface_group_id: Option<String>
The ID of the virtual interface group.
state: Option<String>
The state of the route.
type_: Option<String>
The route type.
Trait Implementations§
Source§impl Clone for LocalGatewayRoute
impl Clone for LocalGatewayRoute
Source§fn clone(&self) -> LocalGatewayRoute
fn clone(&self) -> LocalGatewayRoute
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 LocalGatewayRoute
impl Debug for LocalGatewayRoute
Source§impl Default for LocalGatewayRoute
impl Default for LocalGatewayRoute
Source§fn default() -> LocalGatewayRoute
fn default() -> LocalGatewayRoute
Returns the “default value” for a type. Read more
Source§impl PartialEq for LocalGatewayRoute
impl PartialEq for LocalGatewayRoute
impl StructuralPartialEq for LocalGatewayRoute
Auto Trait Implementations§
impl Freeze for LocalGatewayRoute
impl RefUnwindSafe for LocalGatewayRoute
impl Send for LocalGatewayRoute
impl Sync for LocalGatewayRoute
impl Unpin for LocalGatewayRoute
impl UnwindSafe for LocalGatewayRoute
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