Interface ClientVpnRouteProps
- All Superinterfaces:
ClientVpnRouteOptions,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ClientVpnRouteProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-13T16:10:03.356Z")
@Stability(Stable)
public interface ClientVpnRouteProps
extends software.amazon.jsii.JsiiSerializable, ClientVpnRouteOptions
Properties for a ClientVpnRoute.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.ec2.*;
ClientVpnEndpoint clientVpnEndpoint;
ClientVpnRouteTarget clientVpnRouteTarget;
ClientVpnRouteProps clientVpnRouteProps = ClientVpnRouteProps.builder()
.cidr("cidr")
.target(clientVpnRouteTarget)
// the properties below are optional
.clientVpnEndpoint(clientVpnEndpoint)
.description("description")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forClientVpnRoutePropsstatic final classAn implementation forClientVpnRouteProps -
Method Summary
Modifier and TypeMethodDescriptionstatic ClientVpnRouteProps.Builderbuilder()default IClientVpnEndpointThe client VPN endpoint to which to add the route.Methods inherited from interface software.amazon.awscdk.services.ec2.ClientVpnRouteOptions
getCidr, getDescription, getTargetMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClientVpnEndpoint
The client VPN endpoint to which to add the route.Default: clientVpnEndpoint is required
-
builder
- Returns:
- a
ClientVpnRouteProps.BuilderofClientVpnRouteProps
-