[][src]Struct rusoto_ec2::ClientVpnEndpoint

pub struct ClientVpnEndpoint {
    pub authentication_options: Option<Vec<ClientVpnAuthentication>>,
    pub client_cidr_block: Option<String>,
    pub client_vpn_endpoint_id: Option<String>,
    pub connection_log_options: Option<ConnectionLogResponseOptions>,
    pub creation_time: Option<String>,
    pub deletion_time: Option<String>,
    pub description: Option<String>,
    pub dns_name: Option<String>,
    pub dns_servers: Option<Vec<String>>,
    pub server_certificate_arn: Option<String>,
    pub split_tunnel: Option<bool>,
    pub status: Option<ClientVpnEndpointStatus>,
    pub tags: Option<Vec<Tag>>,
    pub transport_protocol: Option<String>,
    pub vpn_protocol: Option<String>,
}

Describes a Client VPN endpoint.

Fields

authentication_options: Option<Vec<ClientVpnAuthentication>>

Information about the authentication method used by the Client VPN endpoint.

client_cidr_block: Option<String>

The IPv4 address range, in CIDR notation, from which client IP addresses are assigned.

client_vpn_endpoint_id: Option<String>

The ID of the Client VPN endpoint.

connection_log_options: Option<ConnectionLogResponseOptions>

Information about the client connection logging options for the Client VPN endpoint.

creation_time: Option<String>

The date and time the Client VPN endpoint was created.

deletion_time: Option<String>

The date and time the Client VPN endpoint was deleted, if applicable.

description: Option<String>

A brief description of the endpoint.

dns_name: Option<String>

The DNS name to be used by clients when connecting to the Client VPN endpoint.

dns_servers: Option<Vec<String>>

Information about the DNS servers to be used for DNS resolution.

server_certificate_arn: Option<String>

The ARN of the server certificate.

split_tunnel: Option<bool>

Indicates whether VPN split tunneling is supported.

status: Option<ClientVpnEndpointStatus>

The current state of the Client VPN endpoint.

tags: Option<Vec<Tag>>

Any tags assigned to the Client VPN endpoint.

transport_protocol: Option<String>

The transport protocol used by the Client VPN endpoint.

vpn_protocol: Option<String>

The protocol used by the VPN session.

Trait Implementations

impl PartialEq<ClientVpnEndpoint> for ClientVpnEndpoint[src]

impl Default for ClientVpnEndpoint[src]

impl Clone for ClientVpnEndpoint[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ClientVpnEndpoint[src]

Auto Trait Implementations

impl Send for ClientVpnEndpoint

impl Sync for ClientVpnEndpoint

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self