Interface CfnAccessPoint.IAccessPointTagProperty
A tag is a key-value pair attached to a file system.
Namespace: Amazon.CDK.AWS.EFS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnAccessPoint.IAccessPointTagProperty
Syntax (vb)
Public Interface CfnAccessPoint.IAccessPointTagProperty
Remarks
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: + - = . _ : /
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EFS;
var accessPointTagProperty = new AccessPointTagProperty {
Key = "key",
Value = "value"
};
Synopsis
Properties
| Key | The tag key (String). |
| Value | The value of the tag key. |
Properties
Key
The tag key (String).
string? Key { get; }
Property Value
Remarks
Value
The value of the tag key.
string? Value { get; }