interface AccessPointTagProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.EFS.CfnAccessPoint.AccessPointTagProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsefs#CfnAccessPoint_AccessPointTagProperty |
![]() | software.amazon.awscdk.services.efs.CfnAccessPoint.AccessPointTagProperty |
![]() | aws_cdk.aws_efs.CfnAccessPoint.AccessPointTagProperty |
![]() | 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
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.