Show / Hide Table of Contents

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.

Inheritance
object
CfnUser.PosixProfileProperty
Implements
CfnUser.IPosixProfileProperty
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.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.

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

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.

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.

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 }
             };

Properties

Gid

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

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

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

public double Uid { get; set; }
Property Value

double

Remarks

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

Implements

CfnUser.IPosixProfileProperty
Back to top Generated by DocFX