pub struct DeleteLocalGatewayRouteRequest {
pub destination_cidr_block: String,
pub dry_run: Option<bool>,
pub local_gateway_route_table_id: String,
}
Fields§
§destination_cidr_block: String
The CIDR range for the route. This must match the CIDR for the route exactly.
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: String
The ID of the local gateway route table.
Trait Implementations§
Source§impl Clone for DeleteLocalGatewayRouteRequest
impl Clone for DeleteLocalGatewayRouteRequest
Source§fn clone(&self) -> DeleteLocalGatewayRouteRequest
fn clone(&self) -> DeleteLocalGatewayRouteRequest
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 Default for DeleteLocalGatewayRouteRequest
impl Default for DeleteLocalGatewayRouteRequest
Source§fn default() -> DeleteLocalGatewayRouteRequest
fn default() -> DeleteLocalGatewayRouteRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteLocalGatewayRouteRequest
impl PartialEq for DeleteLocalGatewayRouteRequest
Source§fn eq(&self, other: &DeleteLocalGatewayRouteRequest) -> bool
fn eq(&self, other: &DeleteLocalGatewayRouteRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DeleteLocalGatewayRouteRequest
Auto Trait Implementations§
impl Freeze for DeleteLocalGatewayRouteRequest
impl RefUnwindSafe for DeleteLocalGatewayRouteRequest
impl Send for DeleteLocalGatewayRouteRequest
impl Sync for DeleteLocalGatewayRouteRequest
impl Unpin for DeleteLocalGatewayRouteRequest
impl UnwindSafe for DeleteLocalGatewayRouteRequest
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