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