pub struct CreateLocalGatewayRouteRequest {
pub destination_cidr_block: String,
pub dry_run: Option<bool>,
pub local_gateway_route_table_id: String,
pub local_gateway_virtual_interface_group_id: String,
}Fields§
§destination_cidr_block: StringThe CIDR range used for destination matches. Routing decisions are based on the most specific match.
dry_run: Option<bool>Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
local_gateway_route_table_id: StringThe ID of the local gateway route table.
local_gateway_virtual_interface_group_id: StringThe ID of the virtual interface group.
Trait Implementations§
Source§impl Clone for CreateLocalGatewayRouteRequest
impl Clone for CreateLocalGatewayRouteRequest
Source§fn clone(&self) -> CreateLocalGatewayRouteRequest
fn clone(&self) -> CreateLocalGatewayRouteRequest
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 Default for CreateLocalGatewayRouteRequest
impl Default for CreateLocalGatewayRouteRequest
Source§fn default() -> CreateLocalGatewayRouteRequest
fn default() -> CreateLocalGatewayRouteRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateLocalGatewayRouteRequest
impl PartialEq for CreateLocalGatewayRouteRequest
Source§fn eq(&self, other: &CreateLocalGatewayRouteRequest) -> bool
fn eq(&self, other: &CreateLocalGatewayRouteRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateLocalGatewayRouteRequest
Auto Trait Implementations§
impl Freeze for CreateLocalGatewayRouteRequest
impl RefUnwindSafe for CreateLocalGatewayRouteRequest
impl Send for CreateLocalGatewayRouteRequest
impl Sync for CreateLocalGatewayRouteRequest
impl Unpin for CreateLocalGatewayRouteRequest
impl UnwindSafe for CreateLocalGatewayRouteRequest
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