Interface ICfnClientVpnEndpointProps
Properties for defining a CfnClientVpnEndpoint
.
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnClientVpnEndpointProps
Syntax (vb)
Public Interface ICfnClientVpnEndpointProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EC2;
var cfnClientVpnEndpointProps = new CfnClientVpnEndpointProps {
AuthenticationOptions = new [] { new ClientAuthenticationRequestProperty {
Type = "type",
// the properties below are optional
ActiveDirectory = new DirectoryServiceAuthenticationRequestProperty {
DirectoryId = "directoryId"
},
FederatedAuthentication = new FederatedAuthenticationRequestProperty {
SamlProviderArn = "samlProviderArn",
// the properties below are optional
SelfServiceSamlProviderArn = "selfServiceSamlProviderArn"
},
MutualAuthentication = new CertificateAuthenticationRequestProperty {
ClientRootCertificateChainArn = "clientRootCertificateChainArn"
}
} },
ClientCidrBlock = "clientCidrBlock",
ConnectionLogOptions = new ConnectionLogOptionsProperty {
Enabled = false,
// the properties below are optional
CloudwatchLogGroup = "cloudwatchLogGroup",
CloudwatchLogStream = "cloudwatchLogStream"
},
ServerCertificateArn = "serverCertificateArn",
// the properties below are optional
ClientConnectOptions = new ClientConnectOptionsProperty {
Enabled = false,
// the properties below are optional
LambdaFunctionArn = "lambdaFunctionArn"
},
ClientLoginBannerOptions = new ClientLoginBannerOptionsProperty {
Enabled = false,
// the properties below are optional
BannerText = "bannerText"
},
ClientRouteEnforcementOptions = new ClientRouteEnforcementOptionsProperty {
Enforced = false
},
Description = "description",
DisconnectOnSessionTimeout = false,
DnsServers = new [] { "dnsServers" },
SecurityGroupIds = new [] { "securityGroupIds" },
SelfServicePortal = "selfServicePortal",
SessionTimeoutHours = 123,
SplitTunnel = false,
TagSpecifications = new [] { new TagSpecificationProperty {
ResourceType = "resourceType",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
} },
TransportProtocol = "transportProtocol",
VpcId = "vpcId",
VpnPort = 123
};
Synopsis
Properties
AuthenticationOptions | Information about the authentication method to be used to authenticate clients. |
ClientCidrBlock | The IPv4 address range, in CIDR notation, from which to assign client IP addresses. |
ClientConnectOptions | The options for managing connection authorization for new client connections. |
ClientLoginBannerOptions | Options for enabling a customizable text banner that will be displayed on AWS provided clients when a VPN session is established. |
ClientRouteEnforcementOptions | Client route enforcement is a feature of the Client VPN service that helps enforce administrator defined routes on devices connected through the VPN. |
ConnectionLogOptions | Information about the client connection logging options. |
Description | A brief description of the Client VPN endpoint. |
DisconnectOnSessionTimeout | Indicates whether the client VPN session is disconnected after the maximum |
DnsServers | Information about the DNS servers to be used for DNS resolution. |
SecurityGroupIds | The IDs of one or more security groups to apply to the target network. |
SelfServicePortal | Specify whether to enable the self-service portal for the Client VPN endpoint. |
ServerCertificateArn | The ARN of the server certificate. |
SessionTimeoutHours | The maximum VPN session duration time in hours. |
SplitTunnel | Indicates whether split-tunnel is enabled on the AWS Client VPN endpoint. |
TagSpecifications | The tags to apply to the Client VPN endpoint during creation. |
TransportProtocol | The transport protocol to be used by the VPN session. |
VpcId | The ID of the VPC to associate with the Client VPN endpoint. |
VpnPort | The port number to assign to the Client VPN endpoint for TCP and UDP traffic. |
Properties
AuthenticationOptions
Information about the authentication method to be used to authenticate clients.
object AuthenticationOptions { get; }
Property Value
Remarks
ClientCidrBlock
The IPv4 address range, in CIDR notation, from which to assign client IP addresses.
string ClientCidrBlock { get; }
Property Value
Remarks
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. Client CIDR range must have a size of at least /22 and must not be greater than /12.
ClientConnectOptions
The options for managing connection authorization for new client connections.
object? ClientConnectOptions { get; }
Property Value
Remarks
ClientLoginBannerOptions
Options for enabling a customizable text banner that will be displayed on AWS provided clients when a VPN session is established.
object? ClientLoginBannerOptions { get; }
Property Value
Remarks
ClientRouteEnforcementOptions
Client route enforcement is a feature of the Client VPN service that helps enforce administrator defined routes on devices connected through the VPN.
object? ClientRouteEnforcementOptions { get; }
Property Value
Remarks
T his feature helps improve your security posture by ensuring that network traffic originating from a connected client is not inadvertently sent outside the VPN tunnel.
Client route enforcement works by monitoring the route table of a connected device for routing policy changes to the VPN connection. If the feature detects any VPN routing policy modifications, it will automatically force an update to the route table, reverting it back to the expected route configurations.
ConnectionLogOptions
Information about the client connection logging options.
object ConnectionLogOptions { get; }
Property Value
Remarks
If you enable client connection logging, data about client connections is sent to a Cloudwatch Logs log stream. The following information is logged:
Description
A brief description of the Client VPN endpoint.
string? Description { get; }
Property Value
Remarks
DisconnectOnSessionTimeout
Indicates whether the client VPN session is disconnected after the maximum sessionTimeoutHours
is reached.
object? DisconnectOnSessionTimeout { get; }
Property Value
Remarks
If true
, users are prompted to reconnect client VPN. If false
, client VPN attempts to reconnect automatically. The default value is true
.
DnsServers
Information about the DNS servers to be used for DNS resolution.
string[]? DnsServers { get; }
Property Value
string[]
Remarks
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.
SecurityGroupIds
The IDs of one or more security groups to apply to the target network.
string[]? SecurityGroupIds { get; }
Property Value
string[]
Remarks
You must also specify the ID of the VPC that contains the security groups.
SelfServicePortal
Specify whether to enable the self-service portal for the Client VPN endpoint.
string? SelfServicePortal { get; }
Property Value
Remarks
ServerCertificateArn
The ARN of the server certificate.
string ServerCertificateArn { get; }
Property Value
Remarks
SessionTimeoutHours
The maximum VPN session duration time in hours.
double? SessionTimeoutHours { get; }
Property Value
Remarks
Valid values: 8 | 10 | 12 | 24
Default value: 24
SplitTunnel
Indicates whether split-tunnel is enabled on the AWS Client VPN endpoint.
object? SplitTunnel { get; }
Property Value
Remarks
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 .
TagSpecifications
The tags to apply to the Client VPN endpoint during creation.
object? TagSpecifications { get; }
Property Value
Remarks
TransportProtocol
The transport protocol to be used by the VPN session.
string? TransportProtocol { get; }
Property Value
Remarks
VpcId
The ID of the VPC to associate with the Client VPN endpoint.
string? VpcId { get; }
Property Value
Remarks
If no security group IDs are specified in the request, the default security group for the VPC is applied.
VpnPort
The port number to assign to the Client VPN endpoint for TCP and UDP traffic.
double? VpnPort { get; }
Property Value
Remarks
Valid Values: 443
| 1194
Default Value: 443