interface OpenZFSPosixFileSystemUserProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FSx.Mixins.CfnS3AccessPointAttachmentPropsMixin.OpenZFSPosixFileSystemUserProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfsx/mixins#CfnS3AccessPointAttachmentPropsMixin_OpenZFSPosixFileSystemUserProperty |
Java | software.amazon.awscdk.mixins.preview.services.fsx.mixins.CfnS3AccessPointAttachmentPropsMixin.OpenZFSPosixFileSystemUserProperty |
Python | aws_cdk.mixins_preview.aws_fsx.mixins.CfnS3AccessPointAttachmentPropsMixin.OpenZFSPosixFileSystemUserProperty |
TypeScript | @aws-cdk/mixins-preview » aws_fsx » mixins » CfnS3AccessPointAttachmentPropsMixin » 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 { mixins as fsx_mixins } from '@aws-cdk/mixins-preview/aws-fsx';
const openZFSPosixFileSystemUserProperty: fsx_mixins.CfnS3AccessPointAttachmentPropsMixin.OpenZFSPosixFileSystemUserProperty = {
gid: 123,
secondaryGids: [{
gid: 123,
}],
uid: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| gid? | number | The GID of the file system user. |
| secondary | IResolvable | (IResolvable | File)[] | The list of secondary GIDs for the file system user. |
| uid? | number | The UID of the file system user. |
gid?
Type:
number
(optional)
The GID of the file system user.
secondaryGids?
Type:
IResolvable | (IResolvable | File)[]
(optional)
The list of secondary GIDs for the file system user.
uid?
Type:
number
(optional)
The UID of the file system user.

.NET
Go
Java
Python
TypeScript