Interface CfnClientVpnEndpoint.ITagSpecificationProperty
Specifies the tags to apply to the Client VPN endpoint.
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ITagSpecificationProperty
Syntax (vb)
Public Interface ITagSpecificationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EC2;
var tagSpecificationProperty = new TagSpecificationProperty {
ResourceType = "resourceType",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
ResourceType | The type of resource to tag. |
Tags | The tags to apply to the resource. |
Properties
ResourceType
The type of resource to tag.
string ResourceType { get; }
Property Value
System.String
Remarks
To tag a Client VPN endpoint, ResourceType
must be client-vpn-endpoint
.