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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forClientVpnAuthorizationRuleProps
static final class
An implementation forClientVpnAuthorizationRuleProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default IClientVpnEndpoint
The client VPN endpoint to which to add the rule.Methods inherited from interface software.amazon.awscdk.services.ec2.ClientVpnAuthorizationRuleOptions
getCidr, getDescription, getGroupId
Methods 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
-