[][src]Struct rusoto_ec2::ModifyClientVpnEndpointRequest

pub struct ModifyClientVpnEndpointRequest {
    pub client_vpn_endpoint_id: String,
    pub connection_log_options: Option<ConnectionLogOptions>,
    pub description: Option<String>,
    pub dns_servers: Option<DnsServersOptionsModifyStructure>,
    pub dry_run: Option<bool>,
    pub server_certificate_arn: Option<String>,
    pub split_tunnel: Option<bool>,
}

Fields

client_vpn_endpoint_id: String

The ID of the Client VPN endpoint to modify.

connection_log_options: Option<ConnectionLogOptions>

Information about the client connection logging options.

If you enable client connection logging, data about client connections is sent to a Cloudwatch Logs log stream. The following information is logged:

  • Client connection requests

  • Client connection results (successful and unsuccessful)

  • Reasons for unsuccessful client connection requests

  • Client connection termination time

description: Option<String>

A brief description of the Client VPN endpoint.

dns_servers: Option<DnsServersOptionsModifyStructure>

Information about the DNS servers to be used by Client VPN connections. A Client VPN endpoint can have up to two DNS servers.

dry_run: Option<bool>

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

server_certificate_arn: Option<String>

The ARN of the server certificate to be used. The server certificate must be provisioned in AWS Certificate Manager (ACM).

split_tunnel: Option<bool>

Indicates whether the VPN is split-tunnel.

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

Trait Implementations

impl Clone for ModifyClientVpnEndpointRequest[src]

impl Default for ModifyClientVpnEndpointRequest[src]

impl PartialEq<ModifyClientVpnEndpointRequest> for ModifyClientVpnEndpointRequest[src]

impl Debug for ModifyClientVpnEndpointRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self