Interface ClientVpnEndpointAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ClientVpnEndpointAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:00.599Z")
@Stability(Stable)
public interface ClientVpnEndpointAttributes
extends software.amazon.jsii.JsiiSerializable
Attributes when importing an existing client VPN endpoint.
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.*; SecurityGroup securityGroup; ClientVpnEndpointAttributes clientVpnEndpointAttributes = ClientVpnEndpointAttributes.builder() .endpointId("endpointId") .securityGroups(List.of(securityGroup)) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forClientVpnEndpointAttributes
static final class
An implementation forClientVpnEndpointAttributes
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The endpoint ID.The security groups associated with the endpoint.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEndpointId
The endpoint ID. -
getSecurityGroups
The security groups associated with the endpoint. -
builder
-