interface ElasticFileSystemTagProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EFS.Mixins.CfnFileSystemPropsMixin.ElasticFileSystemTagProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsefs/mixins#CfnFileSystemPropsMixin_ElasticFileSystemTagProperty |
Java | software.amazon.awscdk.mixins.preview.services.efs.mixins.CfnFileSystemPropsMixin.ElasticFileSystemTagProperty |
Python | aws_cdk.mixins_preview.aws_efs.mixins.CfnFileSystemPropsMixin.ElasticFileSystemTagProperty |
TypeScript | @aws-cdk/mixins-preview » aws_efs » mixins » 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 { mixins as efs_mixins } from '@aws-cdk/mixins-preview/aws-efs';
const elasticFileSystemTagProperty: efs_mixins.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