[][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 security_group_ids: Option<Vec<String>>,
    pub server_certificate_arn: Option<String>,
    pub split_tunnel: Option<bool>,
    pub vpc_id: Option<String>,
    pub vpn_port: Option<i64>,
}

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.

security_group_ids: Option<Vec<String>>

The IDs of one or more security groups to apply to the target network.

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.

vpc_id: Option<String>

The ID of the VPC to associate with the Client VPN endpoint.

vpn_port: Option<i64>

The port number to assign to the Client VPN endpoint for TCP and UDP traffic.

Valid Values: 443 | 1194

Default Value: 443

Trait Implementations

impl Clone for ModifyClientVpnEndpointRequest[src]

impl Debug for ModifyClientVpnEndpointRequest[src]

impl Default for ModifyClientVpnEndpointRequest[src]

impl PartialEq<ModifyClientVpnEndpointRequest> for ModifyClientVpnEndpointRequest[src]

impl StructuralPartialEq for ModifyClientVpnEndpointRequest[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.