interface PosixUserProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EFS.Mixins.CfnAccessPointPropsMixin.PosixUserProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsefs/mixins#CfnAccessPointPropsMixin_PosixUserProperty |
Java | software.amazon.awscdk.mixins.preview.services.efs.mixins.CfnAccessPointPropsMixin.PosixUserProperty |
Python | aws_cdk.mixins_preview.aws_efs.mixins.CfnAccessPointPropsMixin.PosixUserProperty |
TypeScript | @aws-cdk/mixins-preview » aws_efs » mixins » CfnAccessPointPropsMixin » 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 { mixins as efs_mixins } from '@aws-cdk/mixins-preview/aws-efs';
const posixUserProperty: efs_mixins.CfnAccessPointPropsMixin.PosixUserProperty = {
gid: 'gid',
secondaryGids: ['secondaryGids'],
uid: 'uid',
};
Properties
| Name | Type | Description |
|---|---|---|
| gid? | string | The POSIX group ID used for all file system operations using this access point. |
| secondary | string[] | Secondary POSIX group IDs used for all file system operations using this access point. |
| uid? | string | The POSIX user ID used for all file system operations using this access point. |
gid?
Type:
string
(optional)
The POSIX group 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.
uid?
Type:
string
(optional)
The POSIX user ID used for all file system operations using this access point.

.NET
Go
Java
Python
TypeScript