pub struct CreateClientVpnEndpointResult {
pub client_vpn_endpoint_id: Option<String>,
pub dns_name: Option<String>,
pub status: Option<ClientVpnEndpointStatus>,
}Fields§
§client_vpn_endpoint_id: Option<String>The ID of the Client VPN endpoint.
dns_name: Option<String>The DNS name to be used by clients when establishing their VPN session.
status: Option<ClientVpnEndpointStatus>The current state of the Client VPN endpoint.
Trait Implementations§
Source§impl Clone for CreateClientVpnEndpointResult
impl Clone for CreateClientVpnEndpointResult
Source§fn clone(&self) -> CreateClientVpnEndpointResult
fn clone(&self) -> CreateClientVpnEndpointResult
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 CreateClientVpnEndpointResult
impl Default for CreateClientVpnEndpointResult
Source§fn default() -> CreateClientVpnEndpointResult
fn default() -> CreateClientVpnEndpointResult
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateClientVpnEndpointResult
impl PartialEq for CreateClientVpnEndpointResult
Source§fn eq(&self, other: &CreateClientVpnEndpointResult) -> bool
fn eq(&self, other: &CreateClientVpnEndpointResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateClientVpnEndpointResult
Auto Trait Implementations§
impl Freeze for CreateClientVpnEndpointResult
impl RefUnwindSafe for CreateClientVpnEndpointResult
impl Send for CreateClientVpnEndpointResult
impl Sync for CreateClientVpnEndpointResult
impl Unpin for CreateClientVpnEndpointResult
impl UnwindSafe for CreateClientVpnEndpointResult
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