pub struct ClientVpnConnection {Show 15 fields
pub connection_id: String,
pub client_vpn_endpoint_id: String,
pub username: Option<String>,
pub status: ClientVpnConnectionStatus,
pub posture_compliance_statuses: Vec<String>,
pub common_name: Option<String>,
pub connection_established_time: String,
pub connection_end_time: Option<String>,
pub ingress_bytes: String,
pub egress_bytes: String,
pub ingress_packets: String,
pub egress_packets: String,
pub client_ip: Option<String>,
pub client_port: Option<String>,
pub timestamp: String,
}Fields§
§connection_id: String§client_vpn_endpoint_id: String§username: Option<String>§status: ClientVpnConnectionStatus§posture_compliance_statuses: Vec<String>§common_name: Option<String>§connection_established_time: String§connection_end_time: Option<String>§ingress_bytes: String§egress_bytes: String§ingress_packets: String§egress_packets: String§client_ip: Option<String>§client_port: Option<String>§timestamp: StringTrait Implementations§
Source§impl Clone for ClientVpnConnection
impl Clone for ClientVpnConnection
Source§fn clone(&self) -> ClientVpnConnection
fn clone(&self) -> ClientVpnConnection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ClientVpnConnection
impl Debug for ClientVpnConnection
Source§impl From<&ClientVpnConnection> for ClientVpnConnectionView
impl From<&ClientVpnConnection> for ClientVpnConnectionView
Source§fn from(c: &ClientVpnConnection) -> Self
fn from(c: &ClientVpnConnection) -> Self
Converts to this type from the input type.
Source§impl From<ClientVpnConnectionView> for ClientVpnConnection
impl From<ClientVpnConnectionView> for ClientVpnConnection
Source§fn from(v: ClientVpnConnectionView) -> Self
fn from(v: ClientVpnConnectionView) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ClientVpnConnection
impl RefUnwindSafe for ClientVpnConnection
impl Send for ClientVpnConnection
impl Sync for ClientVpnConnection
impl Unpin for ClientVpnConnection
impl UnsafeUnpin for ClientVpnConnection
impl UnwindSafe for ClientVpnConnection
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.