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();