interface ElasticFileSystemTagProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.EFS.CfnFileSystemPropsMixin.ElasticFileSystemTagProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsefs#CfnFileSystemPropsMixin_ElasticFileSystemTagProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.efs.CfnFileSystemPropsMixin.ElasticFileSystemTagProperty |
Python | aws_cdk.cfn_property_mixins.aws_efs.CfnFileSystemPropsMixin.ElasticFileSystemTagProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_efs » CfnFileSystemPropsMixin » ElasticFileSystemTagProperty |
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 { aws_efs as efs } from '@aws-cdk/cfn-property-mixins';
const elasticFileSystemTagProperty: efs.CfnFileSystemPropsMixin.ElasticFileSystemTagProperty = {
key: 'key',
value: 'value',
};
Properties
| Name | Type | Description |
|---|---|---|
| key? | string | The tag key (String). |
| value? | string | The value of the tag key. |
key?
Type:
string
(optional)
The tag key (String).
The key can't start with aws: .
value?
Type:
string
(optional)
The value of the tag key.

.NET
Go
Java
Python
TypeScript