ModifyClientVpnEndpointRequest

public struct ModifyClientVpnEndpointRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The ID of the Client VPN endpoint to modify.

    Declaration

    Swift

    public let clientVpnEndpointId: String
  • 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

    Declaration

    Swift

    public let connectionLogOptions: ConnectionLogOptions?
  • A brief description of the Client VPN endpoint.

    Declaration

    Swift

    public let description: String?
  • Information about the DNS servers to be used by Client VPN connections. A Client VPN endpoint can have up to two DNS servers.

    Declaration

    Swift

    public let dnsServers: DnsServersOptionsModifyStructure?
  • 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.

    Declaration

    Swift

    public let dryRun: Bool?
  • The IDs of one or more security groups to apply to the target network.

    Declaration

    Swift

    public let securityGroupIds: [String]?
  • The ARN of the server certificate to be used. The server certificate must be provisioned in AWS Certificate Manager (ACM).

    Declaration

    Swift

    public let serverCertificateArn: String?
  • 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.

    Declaration

    Swift

    public let splitTunnel: Bool?
  • The ID of the VPC to associate with the Client VPN endpoint.

    Declaration

    Swift

    public let vpcId: String?
  • The port number to assign to the Client VPN endpoint for TCP and UDP traffic. Valid Values: 443 | 1194 Default Value: 443

    Declaration

    Swift

    public let vpnPort: Int?
  • Undocumented

    Declaration

    Swift

    public init(clientVpnEndpointId: String, connectionLogOptions: ConnectionLogOptions? = nil, description: String? = nil, dnsServers: DnsServersOptionsModifyStructure? = nil, dryRun: Bool? = nil, securityGroupIds: [String]? = nil, serverCertificateArn: String? = nil, splitTunnel: Bool? = nil, vpcId: String? = nil, vpnPort: Int? = nil)