Show / Hide Table of Contents

Class CfnAccessPoint.PosixUserProperty

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.

Inheritance
object
CfnAccessPoint.PosixUserProperty
Implements
CfnAccessPoint.IPosixUserProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.EFS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAccessPoint.PosixUserProperty : CfnAccessPoint.IPosixUserProperty
Syntax (vb)
Public Class CfnAccessPoint.PosixUserProperty Implements 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

Constructors

PosixUserProperty()

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.

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.

Constructors

PosixUserProperty()

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.

public PosixUserProperty()
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" }
             };

Properties

Gid

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

public string Gid { get; set; }
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.

public string[]? SecondaryGids { get; set; }
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.

public string Uid { get; set; }
Property Value

string

Remarks

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

Implements

CfnAccessPoint.IPosixUserProperty
Back to top Generated by DocFX