interface OpenZFSPosixFileSystemUserProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.FSx.CfnS3AccessPointAttachment.OpenZFSPosixFileSystemUserProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsfsx#CfnS3AccessPointAttachment_OpenZFSPosixFileSystemUserProperty |
Java | software.amazon.awscdk.services.fsx.CfnS3AccessPointAttachment.OpenZFSPosixFileSystemUserProperty |
Python | aws_cdk.aws_fsx.CfnS3AccessPointAttachment.OpenZFSPosixFileSystemUserProperty |
TypeScript | aws-cdk-lib » aws_fsx » CfnS3AccessPointAttachment » OpenZFSPosixFileSystemUserProperty |
The FSx for OpenZFS file system user that is used for authorizing all file access requests that are made using the S3 access point.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_fsx as fsx } from 'aws-cdk-lib';
const openZFSPosixFileSystemUserProperty: fsx.CfnS3AccessPointAttachment.OpenZFSPosixFileSystemUserProperty = {
gid: 123,
uid: 123,
// the properties below are optional
secondaryGids: [{
gid: 123,
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| gid | number | The GID of the file system user. |
| uid | number | The UID of the file system user. |
| secondary | IResolvable | (IResolvable | File)[] | The list of secondary GIDs for the file system user. |
gid
Type:
number
The GID of the file system user.
uid
Type:
number
The UID of the file system user.
secondaryGids?
Type:
IResolvable | (IResolvable | File)[]
(optional)
The list of secondary GIDs for the file system user.

.NET
Go
Java
Python
TypeScript