CreateClientVpnEndpointRequest
public struct CreateClientVpnEndpointRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
Information about the authentication method to be used to authenticate clients.
Declaration
Swift
public let authenticationOptions: [ClientVpnAuthenticationRequest]
-
The IPv4 address range, in CIDR notation, from which to assign client IP addresses. The address range cannot overlap with the local CIDR of the VPC in which the associated subnet is located, or the routes that you add manually. The address range cannot be changed after the Client VPN endpoint has been created. The CIDR block should be /22 or greater.
Declaration
Swift
public let clientCidrBlock: String
-
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency.
Declaration
Swift
public let clientToken: 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 for DNS resolution. A Client VPN endpoint can have up to two DNS servers. If no DNS server is specified, the DNS address configured on the device is used for the DNS server.
Declaration
Swift
public let dnsServers: [String]?
-
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. You must also specify the ID of the VPC that contains the security groups.
Declaration
Swift
public let securityGroupIds: [String]?
-
The ARN of the server certificate. For more information, see the AWS Certificate Manager User Guide.
Declaration
Swift
public let serverCertificateArn: String
-
Indicates whether split-tunnel is enabled on the AWS Client VPN endpoint. By default, split-tunnel on a VPN endpoint is disabled. 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 tags to apply to the Client VPN endpoint during creation.
Declaration
Swift
public let tagSpecifications: [TagSpecification]?
-
The transport protocol to be used by the VPN session. Default value: udp
Declaration
Swift
public let transportProtocol: TransportProtocol?
-
The ID of the VPC to associate with the Client VPN endpoint. If no security group IDs are specified in the request, the default security group for the VPC is applied.
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?
-
init(authenticationOptions:clientCidrBlock:clientToken:connectionLogOptions:description:dnsServers:dryRun:securityGroupIds:serverCertificateArn:splitTunnel:tagSpecifications:transportProtocol:vpcId:vpnPort:)
Undocumented
Declaration
Swift
public init(authenticationOptions: [ClientVpnAuthenticationRequest], clientCidrBlock: String, clientToken: String? = CreateClientVpnEndpointRequest.idempotencyToken(), connectionLogOptions: ConnectionLogOptions, description: String? = nil, dnsServers: [String]? = nil, dryRun: Bool? = nil, securityGroupIds: [String]? = nil, serverCertificateArn: String, splitTunnel: Bool? = nil, tagSpecifications: [TagSpecification]? = nil, transportProtocol: TransportProtocol? = nil, vpcId: String? = nil, vpnPort: Int? = nil)