aws-cdk-lib.aws_efs.CfnAccessPoint.AccessPointTagProperty

interface AccessPointTagProperty

LanguageType name
.NETAmazon.CDK.AWS.EFS.CfnAccessPoint.AccessPointTagProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsefs#CfnAccessPoint_AccessPointTagProperty
Javasoftware.amazon.awscdk.services.efs.CfnAccessPoint.AccessPointTagProperty
Pythonaws_cdk.aws_efs.CfnAccessPoint.AccessPointTagProperty
TypeScript aws-cdk-lib » aws_efs » CfnAccessPoint » AccessPointTagProperty

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 accessPointTagProperty: efs.CfnAccessPoint.AccessPointTagProperty = {
  key: 'key',
  value: 'value',
};

Properties

NameTypeDescription
key?stringThe tag key (String).
value?stringThe 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.