Class ClientVpnAuthorizationRule

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.Resource
software.amazon.awscdk.services.ec2.ClientVpnAuthorizationRule
All Implemented Interfaces:
IResource, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:06.084Z") @Stability(Stable) public class ClientVpnAuthorizationRule extends Resource
A client VPN authorization rule.

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;
 ClientVpnAuthorizationRule clientVpnAuthorizationRule = ClientVpnAuthorizationRule.Builder.create(this, "MyClientVpnAuthorizationRule")
         .cidr("cidr")
         // the properties below are optional
         .clientVpnEndpoint(clientVpnEndpoint)
         .description("description")
         .groupId("groupId")
         .build();
 
  • Constructor Details

    • ClientVpnAuthorizationRule

      protected ClientVpnAuthorizationRule(software.amazon.jsii.JsiiObjectRef objRef)
    • ClientVpnAuthorizationRule

      protected ClientVpnAuthorizationRule(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • ClientVpnAuthorizationRule

      @Stability(Stable) public ClientVpnAuthorizationRule(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull ClientVpnAuthorizationRuleProps props)
      Parameters:
      scope - This parameter is required.
      id - This parameter is required.
      props - This parameter is required.