pub struct ClientVpnEndpointStatus {
pub code: Option<String>,
pub message: Option<String>,
}Expand description
Describes the state of a Client VPN endpoint.
Fields§
§code: Option<String>The state of the Client VPN endpoint. Possible states include:
-
pending-associate- The Client VPN endpoint has been created but no target networks have been associated. The Client VPN endpoint cannot accept connections. -
available- The Client VPN endpoint has been created and a target network has been associated. The Client VPN endpoint can accept connections. -
deleting- The Client VPN endpoint is being deleted. The Client VPN endpoint cannot accept connections. -
deleted- The Client VPN endpoint has been deleted. The Client VPN endpoint cannot accept connections.
message: Option<String>A message about the status of the Client VPN endpoint.
Trait Implementations§
Source§impl Clone for ClientVpnEndpointStatus
impl Clone for ClientVpnEndpointStatus
Source§fn clone(&self) -> ClientVpnEndpointStatus
fn clone(&self) -> ClientVpnEndpointStatus
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 Debug for ClientVpnEndpointStatus
impl Debug for ClientVpnEndpointStatus
Source§impl Default for ClientVpnEndpointStatus
impl Default for ClientVpnEndpointStatus
Source§fn default() -> ClientVpnEndpointStatus
fn default() -> ClientVpnEndpointStatus
Returns the “default value” for a type. Read more
Source§impl PartialEq for ClientVpnEndpointStatus
impl PartialEq for ClientVpnEndpointStatus
impl StructuralPartialEq for ClientVpnEndpointStatus
Auto Trait Implementations§
impl Freeze for ClientVpnEndpointStatus
impl RefUnwindSafe for ClientVpnEndpointStatus
impl Send for ClientVpnEndpointStatus
impl Sync for ClientVpnEndpointStatus
impl Unpin for ClientVpnEndpointStatus
impl UnwindSafe for ClientVpnEndpointStatus
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