Interface ClientVpnAuthorizationRuleProps
- All Superinterfaces:
 ClientVpnAuthorizationRuleOptions,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 ClientVpnAuthorizationRuleProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
           date="2025-10-29T11:15:37.722Z")
@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.*;
 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
 
 -