Class CfnUser.PosixProfileProperty
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.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Transfer
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnUser.PosixProfileProperty : CfnUser.IPosixProfileProperty
Syntax (vb)
Public Class CfnUser.PosixProfileProperty Implements 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
Constructors
| PosixProfileProperty() | The full POSIX identity, including user ID ( |
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. |
Constructors
PosixProfileProperty()
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.
public PosixProfileProperty()
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 }
};
Properties
Gid
The POSIX group ID used for all EFS operations by this user.
public double Gid { get; set; }
Property Value
Remarks
SecondaryGids
The secondary POSIX group IDs used for all EFS operations by this user.
public object? SecondaryGids { get; set; }
Property Value
Remarks
Uid
The POSIX user ID used for all EFS operations by this user.
public double Uid { get; set; }