pub struct TerminateClientVpnConnectionsRequest {
pub client_vpn_endpoint_id: String,
pub connection_id: Option<String>,
pub dry_run: Option<bool>,
pub username: Option<String>,
}Fields§
§client_vpn_endpoint_id: StringThe ID of the Client VPN endpoint to which the client is connected.
connection_id: Option<String>The ID of the client connection to be terminated.
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.
username: Option<String>The name of the user who initiated the connection. Use this option to terminate all active connections for the specified user. This option can only be used if the user has established up to five connections.
Trait Implementations§
Source§impl Clone for TerminateClientVpnConnectionsRequest
impl Clone for TerminateClientVpnConnectionsRequest
Source§fn clone(&self) -> TerminateClientVpnConnectionsRequest
fn clone(&self) -> TerminateClientVpnConnectionsRequest
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 TerminateClientVpnConnectionsRequest
impl Default for TerminateClientVpnConnectionsRequest
Source§fn default() -> TerminateClientVpnConnectionsRequest
fn default() -> TerminateClientVpnConnectionsRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for TerminateClientVpnConnectionsRequest
impl PartialEq for TerminateClientVpnConnectionsRequest
Source§fn eq(&self, other: &TerminateClientVpnConnectionsRequest) -> bool
fn eq(&self, other: &TerminateClientVpnConnectionsRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TerminateClientVpnConnectionsRequest
Auto Trait Implementations§
impl Freeze for TerminateClientVpnConnectionsRequest
impl RefUnwindSafe for TerminateClientVpnConnectionsRequest
impl Send for TerminateClientVpnConnectionsRequest
impl Sync for TerminateClientVpnConnectionsRequest
impl Unpin for TerminateClientVpnConnectionsRequest
impl UnwindSafe for TerminateClientVpnConnectionsRequest
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