Interface CfnClientVpnEndpoint.TagSpecificationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnClientVpnEndpoint.TagSpecificationProperty.Jsii$Proxy
- Enclosing class:
CfnClientVpnEndpoint
@Stability(Stable)
public static interface CfnClientVpnEndpoint.TagSpecificationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.ec2.*;
TagSpecificationProperty tagSpecificationProperty = TagSpecificationProperty.builder()
.resourceType("resourceType")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnClientVpnEndpoint.TagSpecificationPropertystatic final classAn implementation forCfnClientVpnEndpoint.TagSpecificationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getResourceType
The type of resource to tag.To tag a Client VPN endpoint,
ResourceTypemust beclient-vpn-endpoint.- See Also:
-
getTags
The tags to apply to the resource.- See Also:
-
builder
-