Show / Hide Table of Contents

Interface CfnAccessPoint.IPosixUserProperty

The full POSIX identity, including the user ID, group ID, and any secondary group IDs, on the access point that is used for all file system operations performed by NFS clients using the access point.

Namespace: Amazon.CDK.AWS.EFS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnAccessPoint.IPosixUserProperty
Syntax (vb)
Public Interface CfnAccessPoint.IPosixUserProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-efs-accesspoint-posixuser.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 posixUserProperty = new PosixUserProperty {
                 Gid = "gid",
                 Uid = "uid",

                 // the properties below are optional
                 SecondaryGids = new [] { "secondaryGids" }
             };

Synopsis

Properties

Gid

The POSIX group ID used for all file system operations using this access point.

SecondaryGids

Secondary POSIX group IDs used for all file system operations using this access point.

Uid

The POSIX user ID used for all file system operations using this access point.

Properties

Gid

The POSIX group ID used for all file system operations using this access point.

string Gid { get; }
Property Value

string

Remarks

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

SecondaryGids

Secondary POSIX group IDs used for all file system operations using this access point.

string[]? SecondaryGids { get; }
Property Value

string[]

Remarks

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

Uid

The POSIX user ID used for all file system operations using this access point.

string Uid { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX