interface CfnClientVpnAuthorizationRuleMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnClientVpnAuthorizationRuleMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnClientVpnAuthorizationRuleMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnClientVpnAuthorizationRuleMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnClientVpnAuthorizationRuleMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnClientVpnAuthorizationRuleMixinProps |
Properties for CfnClientVpnAuthorizationRulePropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ec2 as ec2 } from '@aws-cdk/cfn-property-mixins';
const cfnClientVpnAuthorizationRuleMixinProps: ec2.CfnClientVpnAuthorizationRuleMixinProps = {
accessGroupId: 'accessGroupId',
authorizeAllGroups: false,
clientVpnEndpointId: 'clientVpnEndpointId',
description: 'description',
targetNetworkCidr: 'targetNetworkCidr',
};
Properties
| Name | Type | Description |
|---|---|---|
| access | string | The ID of the group to grant access to, for example, the Active Directory group or identity provider (IdP) group. |
| authorize | boolean | IResolvable | Indicates whether to grant access to all clients. |
| client | string | The ID of the Client VPN endpoint. |
| description? | string | A brief description of the authorization rule. |
| target | string | The IPv4 address range, in CIDR notation, of the network for which access is being authorized. |
accessGroupId?
Type:
string
(optional)
The ID of the group to grant access to, for example, the Active Directory group or identity provider (IdP) group.
Required if AuthorizeAllGroups is false or not specified.
authorizeAllGroups?
Type:
boolean | IResolvable
(optional)
Indicates whether to grant access to all clients.
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.
clientVpnEndpointId?
Type:
string
(optional)
The ID of the Client VPN endpoint.
description?
Type:
string
(optional)
A brief description of the authorization rule.
targetNetworkCidr?
Type:
string
(optional)
The IPv4 address range, in CIDR notation, of the network for which access is being authorized.

.NET
Go
Java
Python
TypeScript