aws-cdk-lib.aws_efs.CfnFileSystem.ElasticFileSystemTagProperty

interface ElasticFileSystemTagProperty

LanguageType name
.NETAmazon.CDK.AWS.EFS.CfnFileSystem.ElasticFileSystemTagProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsefs#CfnFileSystem_ElasticFileSystemTagProperty
Javasoftware.amazon.awscdk.services.efs.CfnFileSystem.ElasticFileSystemTagProperty
Pythonaws_cdk.aws_efs.CfnFileSystem.ElasticFileSystemTagProperty
TypeScript aws-cdk-lib » aws_efs » CfnFileSystem » 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-lib';
const elasticFileSystemTagProperty: efs.CfnFileSystem.ElasticFileSystemTagProperty = {
  key: 'key',
  value: 'value',
};

Properties

NameTypeDescription
keystringThe tag key (String).
valuestringThe value of the tag key.

key

Type: string

The tag key (String).

The key can't start with aws: .


value

Type: string

The value of the tag key.