Show / Hide Table of Contents

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: + - = . _ : /

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-accesspointtag.html

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

string

Remarks

The key can't start with aws: .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-accesspointtag.html#cfn-efs-accesspoint-accesspointtag-key

Value

The value of the tag key.

string? Value { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-accesspointtag.html#cfn-efs-accesspoint-accesspointtag-value

Back to top Generated by DocFX