interface PosixProfileProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Transfer.CfnUser.PosixProfileProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awstransfer#CfnUser_PosixProfileProperty |
![]() | software.amazon.awscdk.services.transfer.CfnUser.PosixProfileProperty |
![]() | aws_cdk.aws_transfer.CfnUser.PosixProfileProperty |
![]() | 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
Name | Type | Description |
---|---|---|
gid | number | The POSIX group ID used for all EFS operations by this user. |
uid | number | The POSIX user ID used for all EFS operations by this user. |
secondary | number[] | IResolvable | The 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.