interface OpenZFSPosixFileSystemUserProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.FSx.CfnS3AccessPointAttachmentPropsMixin.OpenZFSPosixFileSystemUserProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsfsx#CfnS3AccessPointAttachmentPropsMixin_OpenZFSPosixFileSystemUserProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.fsx.CfnS3AccessPointAttachmentPropsMixin.OpenZFSPosixFileSystemUserProperty |
Python | aws_cdk.cfn_property_mixins.aws_fsx.CfnS3AccessPointAttachmentPropsMixin.OpenZFSPosixFileSystemUserProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_fsx » 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 { aws_fsx as fsx } from '@aws-cdk/cfn-property-mixins';
const openZFSPosixFileSystemUserProperty: fsx.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