@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.403Z") @Stability(value=Stable) public interface ClientVpnEndpointAttributes extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
ClientVpnEndpointAttributes.Builder
A builder for
ClientVpnEndpointAttributes |
static class |
ClientVpnEndpointAttributes.Jsii$Proxy
An implementation for
ClientVpnEndpointAttributes |
| Modifier and Type | Method and Description |
|---|---|
static ClientVpnEndpointAttributes.Builder |
builder() |
String |
getEndpointId()
The endpoint ID.
|
List<ISecurityGroup> |
getSecurityGroups()
The security groups associated with the endpoint.
|
@Stability(value=Stable) @NotNull String getEndpointId()
@Stability(value=Stable) @NotNull List<ISecurityGroup> getSecurityGroups()
@Stability(value=Stable) static ClientVpnEndpointAttributes.Builder builder()
Copyright © 2022. All rights reserved.