interface TagSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.EC2.CfnClientVpnEndpoint.TagSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsec2#CfnClientVpnEndpoint_TagSpecificationProperty |
Java | software.amazon.awscdk.services.ec2.CfnClientVpnEndpoint.TagSpecificationProperty |
Python | aws_cdk.aws_ec2.CfnClientVpnEndpoint.TagSpecificationProperty |
TypeScript | aws-cdk-lib » aws_ec2 » CfnClientVpnEndpoint » TagSpecificationProperty |
Specifies the tags to apply to the Client VPN endpoint.
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-lib';
const tagSpecificationProperty: ec2.CfnClientVpnEndpoint.TagSpecificationProperty = {
resourceType: 'resourceType',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| resource | string | The type of resource to tag. |
| tags | Cfn[] | The tags to apply to the resource. |
resourceType
Type:
string
The type of resource to tag.
To tag a Client VPN endpoint, ResourceType must be client-vpn-endpoint .
tags
Type:
Cfn[]
The tags to apply to the resource.

.NET
Go
Java
Python
TypeScript