pub struct DeleteRouteRequest {
pub destination_cidr_block: Option<String>,
pub destination_ipv_6_cidr_block: Option<String>,
pub destination_prefix_list_id: Option<String>,
pub dry_run: Option<bool>,
pub route_table_id: String,
}Fields§
§destination_cidr_block: Option<String>The IPv4 CIDR range for the route. The value you specify must match the CIDR for the route exactly.
destination_ipv_6_cidr_block: Option<String>The IPv6 CIDR range for the route. The value you specify must match the CIDR for the route exactly.
destination_prefix_list_id: Option<String>The ID of the prefix list for the route.
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.
route_table_id: StringThe ID of the route table.
Trait Implementations§
Source§impl Clone for DeleteRouteRequest
impl Clone for DeleteRouteRequest
Source§fn clone(&self) -> DeleteRouteRequest
fn clone(&self) -> DeleteRouteRequest
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 DeleteRouteRequest
impl Debug for DeleteRouteRequest
Source§impl Default for DeleteRouteRequest
impl Default for DeleteRouteRequest
Source§fn default() -> DeleteRouteRequest
fn default() -> DeleteRouteRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteRouteRequest
impl PartialEq for DeleteRouteRequest
impl StructuralPartialEq for DeleteRouteRequest
Auto Trait Implementations§
impl Freeze for DeleteRouteRequest
impl RefUnwindSafe for DeleteRouteRequest
impl Send for DeleteRouteRequest
impl Sync for DeleteRouteRequest
impl Unpin for DeleteRouteRequest
impl UnwindSafe for DeleteRouteRequest
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