aws-cdk-lib.aws_efs.CfnAccessPoint.PosixUserProperty

interface PosixUserProperty

LanguageType name
.NETAmazon.CDK.AWS.EFS.CfnAccessPoint.PosixUserProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsefs#CfnAccessPoint_PosixUserProperty
Javasoftware.amazon.awscdk.services.efs.CfnAccessPoint.PosixUserProperty
Pythonaws_cdk.aws_efs.CfnAccessPoint.PosixUserProperty
TypeScript aws-cdk-lib » aws_efs » CfnAccessPoint » PosixUserProperty

The full POSIX identity, including the user ID, group ID, and any secondary group IDs, on the access point that is used for all file system operations performed by NFS clients using the access point.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_efs as efs } from 'aws-cdk-lib';
const posixUserProperty: efs.CfnAccessPoint.PosixUserProperty = {
  gid: 'gid',
  uid: 'uid',

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

Properties

NameTypeDescription
gidstringThe POSIX group ID used for all file system operations using this access point.
uidstringThe POSIX user ID used for all file system operations using this access point.
secondaryGids?string[]Secondary POSIX group IDs used for all file system operations using this access point.

gid

Type: string

The POSIX group ID used for all file system operations using this access point.


uid

Type: string

The POSIX user ID used for all file system operations using this access point.


secondaryGids?

Type: string[] (optional)

Secondary POSIX group IDs used for all file system operations using this access point.