interface CfnClientVpnTargetNetworkAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnClientVpnTargetNetworkAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnClientVpnTargetNetworkAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnClientVpnTargetNetworkAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnClientVpnTargetNetworkAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » 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 { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const cfnClientVpnTargetNetworkAssociationMixinProps: ec2_mixins.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