Interface ClientVpnAuthorizationRuleProps

All Superinterfaces:
ClientVpnAuthorizationRuleOptions, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
ClientVpnAuthorizationRuleProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-11-22T02:24:00.597Z") @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.*;
 ClientVpnEndpoint clientVpnEndpoint;
 ClientVpnAuthorizationRuleProps clientVpnAuthorizationRuleProps = ClientVpnAuthorizationRuleProps.builder()
         .cidr("cidr")
         // the properties below are optional
         .clientVpnEndpoint(clientVpnEndpoint)
         .description("description")
         .groupId("groupId")
         .build();