pub struct DeleteClientVpnRouteRequest {
pub client_vpn_endpoint_id: String,
pub destination_cidr_block: String,
pub dry_run: Option<bool>,
pub target_vpc_subnet_id: Option<String>,
}
Fields§
§client_vpn_endpoint_id: String
The ID of the Client VPN endpoint from which the route is to be deleted.
destination_cidr_block: String
The IPv4 address range, in CIDR notation, of the route to be deleted.
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
.
target_vpc_subnet_id: Option<String>
The ID of the target subnet used by the route.
Trait Implementations§
Source§impl Clone for DeleteClientVpnRouteRequest
impl Clone for DeleteClientVpnRouteRequest
Source§fn clone(&self) -> DeleteClientVpnRouteRequest
fn clone(&self) -> DeleteClientVpnRouteRequest
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 DeleteClientVpnRouteRequest
impl Debug for DeleteClientVpnRouteRequest
Source§impl Default for DeleteClientVpnRouteRequest
impl Default for DeleteClientVpnRouteRequest
Source§fn default() -> DeleteClientVpnRouteRequest
fn default() -> DeleteClientVpnRouteRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for DeleteClientVpnRouteRequest
Auto Trait Implementations§
impl Freeze for DeleteClientVpnRouteRequest
impl RefUnwindSafe for DeleteClientVpnRouteRequest
impl Send for DeleteClientVpnRouteRequest
impl Sync for DeleteClientVpnRouteRequest
impl Unpin for DeleteClientVpnRouteRequest
impl UnwindSafe for DeleteClientVpnRouteRequest
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