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