pub struct ClientVpnEndpoint {Show 18 fields
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>,
}Expand description
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.
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§
Source§impl Clone for ClientVpnEndpoint
impl Clone for ClientVpnEndpoint
Source§fn clone(&self) -> ClientVpnEndpoint
fn clone(&self) -> ClientVpnEndpoint
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more