Interface CfnAccessPoint.AccessPointTagProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAccessPoint.AccessPointTagProperty.Jsii$Proxy
- Enclosing class:
CfnAccessPoint
@Stability(Stable)
public static interface CfnAccessPoint.AccessPointTagProperty
extends software.amazon.jsii.JsiiSerializable
A tag is a key-value pair attached to a file system.
Allowed characters in the Key
and Value
properties are letters, white space, and numbers that can be represented in UTF-8, and the following characters: + - = . _ : /
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.efs.*; AccessPointTagProperty accessPointTagProperty = AccessPointTagProperty.builder() .key("key") .value("value") .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnAccessPoint.AccessPointTagProperty
static final class
An implementation forCfnAccessPoint.AccessPointTagProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKey
The tag key (String).The key can't start with
aws:
.- See Also:
-
getValue
The value of the tag key.- See Also:
-
builder
-