@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.128Z") @Stability(value=Stable) public interface CfnClientVpnAuthorizationRuleProps extends software.amazon.jsii.JsiiSerializable
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.*;
CfnClientVpnAuthorizationRuleProps cfnClientVpnAuthorizationRuleProps = CfnClientVpnAuthorizationRuleProps.builder()
.clientVpnEndpointId("clientVpnEndpointId")
.targetNetworkCidr("targetNetworkCidr")
// the properties below are optional
.accessGroupId("accessGroupId")
.authorizeAllGroups(false)
.description("description")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnClientVpnAuthorizationRuleProps.Builder
A builder for
CfnClientVpnAuthorizationRuleProps |
static class |
CfnClientVpnAuthorizationRuleProps.Jsii$Proxy
An implementation for
CfnClientVpnAuthorizationRuleProps |
| Modifier and Type | Method and Description |
|---|---|
static CfnClientVpnAuthorizationRuleProps.Builder |
builder() |
default String |
getAccessGroupId()
The ID of the group to grant access to, for example, the Active Directory group or identity provider (IdP) group.
|
default Object |
getAuthorizeAllGroups()
Indicates whether to grant access to all clients.
|
String |
getClientVpnEndpointId()
The ID of the Client VPN endpoint.
|
default String |
getDescription()
A brief description of the authorization rule.
|
String |
getTargetNetworkCidr()
The IPv4 address range, in CIDR notation, of the network for which access is being authorized.
|
@Stability(value=Stable) @NotNull String getClientVpnEndpointId()
@Stability(value=Stable) @NotNull String getTargetNetworkCidr()
@Stability(value=Stable) @Nullable default String getAccessGroupId()
Required if AuthorizeAllGroups is false or not specified.
@Stability(value=Stable) @Nullable default Object getAuthorizeAllGroups()
Specify true to grant all clients who successfully establish a VPN connection access to the network. Must be set to true if AccessGroupId is not specified.
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) static CfnClientVpnAuthorizationRuleProps.Builder builder()
Copyright © 2022. All rights reserved.