Interface CfnFileSystem.ElasticFileSystemTagProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnFileSystem.ElasticFileSystemTagProperty.Jsii$Proxy
- Enclosing class:
- CfnFileSystem
@Stability(Stable)
public static interface CfnFileSystem.ElasticFileSystemTagProperty
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.*; ElasticFileSystemTagProperty elasticFileSystemTagProperty = ElasticFileSystemTagProperty.builder() .key("key") .value("value") .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnFileSystem.ElasticFileSystemTagProperty
static final class
An implementation forCfnFileSystem.ElasticFileSystemTagProperty
-
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:
. -
getValue
The value of the tag key. -
builder
-