Show / Hide Table of Contents

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-user-posixprofile.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.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

double

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-user-posixprofile.html#cfn-transfer-user-posixprofile-gid

SecondaryGids

The secondary POSIX group IDs used for all EFS operations by this user.

object? SecondaryGids { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-user-posixprofile.html#cfn-transfer-user-posixprofile-secondarygids

Type union: either (double)[] or IResolvable

Uid

The POSIX user ID used for all EFS operations by this user.

double Uid { get; }
Property Value

double

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-transfer-user-posixprofile.html#cfn-transfer-user-posixprofile-uid

Back to top Generated by DocFX