pub struct TerminateClientVpnConnectionsResult {
pub client_vpn_endpoint_id: Option<String>,
pub connection_statuses: Option<Vec<TerminateConnectionStatus>>,
pub username: Option<String>,
}Fields§
§client_vpn_endpoint_id: Option<String>The ID of the Client VPN endpoint.
connection_statuses: Option<Vec<TerminateConnectionStatus>>The current state of the client connections.
username: Option<String>The user who established the terminated client connections.
Trait Implementations§
Source§impl Clone for TerminateClientVpnConnectionsResult
impl Clone for TerminateClientVpnConnectionsResult
Source§fn clone(&self) -> TerminateClientVpnConnectionsResult
fn clone(&self) -> TerminateClientVpnConnectionsResult
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 TerminateClientVpnConnectionsResult
impl Default for TerminateClientVpnConnectionsResult
Source§fn default() -> TerminateClientVpnConnectionsResult
fn default() -> TerminateClientVpnConnectionsResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for TerminateClientVpnConnectionsResult
impl PartialEq for TerminateClientVpnConnectionsResult
Source§fn eq(&self, other: &TerminateClientVpnConnectionsResult) -> bool
fn eq(&self, other: &TerminateClientVpnConnectionsResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TerminateClientVpnConnectionsResult
Auto Trait Implementations§
impl Freeze for TerminateClientVpnConnectionsResult
impl RefUnwindSafe for TerminateClientVpnConnectionsResult
impl Send for TerminateClientVpnConnectionsResult
impl Sync for TerminateClientVpnConnectionsResult
impl Unpin for TerminateClientVpnConnectionsResult
impl UnwindSafe for TerminateClientVpnConnectionsResult
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