Interface ClientVpnAuthorizationRuleProps
- All Superinterfaces:
ClientVpnAuthorizationRuleOptions,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ClientVpnAuthorizationRuleProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-05T22:26:35.243Z")
@Stability(Stable)
public interface ClientVpnAuthorizationRuleProps
extends software.amazon.jsii.JsiiSerializable, ClientVpnAuthorizationRuleOptions
Properties for a ClientVpnAuthorizationRule.
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.*;
import software.amazon.awscdk.interfaces.ec2.*;
IClientVpnEndpointRef clientVpnEndpointRef;
ClientVpnAuthorizationRuleProps clientVpnAuthorizationRuleProps = ClientVpnAuthorizationRuleProps.builder()
.cidr("cidr")
// the properties below are optional
.clientVpnEndpoint(clientVpnEndpointRef)
.description("description")
.groupId("groupId")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forClientVpnAuthorizationRulePropsstatic final classAn implementation forClientVpnAuthorizationRuleProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default IClientVpnEndpointRefThe client VPN endpoint to which to add the rule.Methods inherited from interface software.amazon.awscdk.services.ec2.ClientVpnAuthorizationRuleOptions
getCidr, getDescription, getGroupIdMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClientVpnEndpoint
The client VPN endpoint to which to add the rule.Default: clientVpnEndpoint is required
-
builder
-