interface CfnClientVpnTargetNetworkAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EC2.CfnClientVpnTargetNetworkAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsec2#CfnClientVpnTargetNetworkAssociationMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.ec2.CfnClientVpnTargetNetworkAssociationMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_ec2.CfnClientVpnTargetNetworkAssociationMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ec2 » CfnClientVpnTargetNetworkAssociationMixinProps |
Properties for CfnClientVpnTargetNetworkAssociationPropsMixin.
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 cfnClientVpnTargetNetworkAssociationMixinProps: ec2.CfnClientVpnTargetNetworkAssociationMixinProps = {
clientVpnEndpointId: 'clientVpnEndpointId',
subnetId: 'subnetId',
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string | The ID of the Client VPN endpoint. |
| subnet | string | The ID of the subnet to associate with the Client VPN endpoint. |
clientVpnEndpointId?
Type:
string
(optional)
The ID of the Client VPN endpoint.
subnetId?
Type:
string
(optional)
The ID of the subnet to associate with the Client VPN endpoint.

.NET
Go
Java
Python
TypeScript