aws-cdk-lib.aws_transfer.CfnUser.PosixProfileProperty

interface PosixProfileProperty

LanguageType name
.NETAmazon.CDK.AWS.Transfer.CfnUser.PosixProfileProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awstransfer#CfnUser_PosixProfileProperty
Javasoftware.amazon.awscdk.services.transfer.CfnUser.PosixProfileProperty
Pythonaws_cdk.aws_transfer.CfnUser.PosixProfileProperty
TypeScript aws-cdk-lib » aws_transfer » 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.

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.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_transfer as transfer } from 'aws-cdk-lib';
const posixProfileProperty: transfer.CfnUser.PosixProfileProperty = {
  gid: 123,
  uid: 123,

  // the properties below are optional
  secondaryGids: [123],
};

Properties

NameTypeDescription
gidnumberThe POSIX group ID used for all EFS operations by this user.
uidnumberThe POSIX user ID used for all EFS operations by this user.
secondaryGids?number[] | IResolvableThe secondary POSIX group IDs used for all EFS operations by this user.

gid

Type: number

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


uid

Type: number

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


secondaryGids?

Type: number[] | IResolvable (optional)

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