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.
Implements
Inherited Members
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
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
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
Remarks
SecondaryGids
Secondary POSIX group IDs used for all file system operations using this access point.
public string[]? SecondaryGids { get; set; }
Property Value
string[]
Remarks
Uid
The POSIX user ID used for all file system operations using this access point.
public string Uid { get; set; }