pub struct ClientVpnConnectionView {Show 15 fields
pub connection_id: String,
pub client_vpn_endpoint_id: String,
pub username: Option<String>,
pub status: ClientVpnConnectionStatusView,
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: ClientVpnConnectionStatusView§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 ClientVpnConnectionView
impl Clone for ClientVpnConnectionView
Source§fn clone(&self) -> ClientVpnConnectionView
fn clone(&self) -> ClientVpnConnectionView
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 ClientVpnConnectionView
impl Debug for ClientVpnConnectionView
Source§impl<'de> Deserialize<'de> for ClientVpnConnectionView
impl<'de> Deserialize<'de> for ClientVpnConnectionView
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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 ClientVpnConnectionView
impl RefUnwindSafe for ClientVpnConnectionView
impl Send for ClientVpnConnectionView
impl Sync for ClientVpnConnectionView
impl Unpin for ClientVpnConnectionView
impl UnsafeUnpin for ClientVpnConnectionView
impl UnwindSafe for ClientVpnConnectionView
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.