[][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 security_group_ids: 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 vpc_id: Option<String>,
    pub vpn_port: Option<i64>,
    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.

security_group_ids: Option<Vec<String>>

The IDs of the security groups for the target network.

server_certificate_arn: Option<String>

The ARN of the server certificate.

split_tunnel: Option<bool>

Indicates whether split-tunnel is enabled in the AWS Client VPN endpoint.

For information about split-tunnel VPN endpoints, see Split-Tunnel AWS Client VPN Endpoint in the AWS Client VPN Administrator Guide.

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.

vpc_id: Option<String>

The ID of the VPC.

vpn_port: Option<i64>

The port number for the Client VPN endpoint.

vpn_protocol: Option<String>

The protocol used by the VPN session.

Trait Implementations

impl Clone for ClientVpnEndpoint[src]

impl Debug for ClientVpnEndpoint[src]

impl Default for ClientVpnEndpoint[src]

impl PartialEq<ClientVpnEndpoint> for ClientVpnEndpoint[src]

impl StructuralPartialEq for ClientVpnEndpoint[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.