Interface CfnUser.IPosixProfileProperty
The full POSIX identity, including user ID ( Uid ), group ID ( Gid ), and any secondary groups IDs ( SecondaryGids ), that controls your users' access to your Amazon EFS file systems.
Namespace: Amazon.CDK.AWS.Transfer
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnUser.IPosixProfileProperty
Syntax (vb)
Public Interface CfnUser.IPosixProfileProperty
Remarks
The POSIX permissions that are set on files and directories in your file system determine the level of access your users get when transferring files into and out of your Amazon EFS file systems.
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.Transfer;
var posixProfileProperty = new PosixProfileProperty {
Gid = 123,
Uid = 123,
// the properties below are optional
SecondaryGids = new [] { 123 }
};
Synopsis
Properties
| Gid | The POSIX group ID used for all EFS operations by this user. |
| SecondaryGids | The secondary POSIX group IDs used for all EFS operations by this user. |
| Uid | The POSIX user ID used for all EFS operations by this user. |
Properties
Gid
The POSIX group ID used for all EFS operations by this user.
double Gid { get; }
Property Value
Remarks
SecondaryGids
The secondary POSIX group IDs used for all EFS operations by this user.
object? SecondaryGids { get; }
Property Value
Remarks
Uid
The POSIX user ID used for all EFS operations by this user.
double Uid { get; }