interface OpenZFSFileSystemIdentityProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.FSx.CfnS3AccessPointAttachment.OpenZFSFileSystemIdentityProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsfsx#CfnS3AccessPointAttachment_OpenZFSFileSystemIdentityProperty |
Java | software.amazon.awscdk.services.fsx.CfnS3AccessPointAttachment.OpenZFSFileSystemIdentityProperty |
Python | aws_cdk.aws_fsx.CfnS3AccessPointAttachment.OpenZFSFileSystemIdentityProperty |
TypeScript | aws-cdk-lib » aws_fsx » CfnS3AccessPointAttachment » OpenZFSFileSystemIdentityProperty |
Specifies the file system user identity that will be 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 openZFSFileSystemIdentityProperty: fsx.CfnS3AccessPointAttachment.OpenZFSFileSystemIdentityProperty = {
posixUser: {
gid: 123,
uid: 123,
// the properties below are optional
secondaryGids: [{
gid: 123,
}],
},
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| posix | IResolvable | Open | Specifies the UID and GIDs of the file system POSIX user. |
| type | string | Specifies the FSx for OpenZFS user identity type, accepts only POSIX . |
posixUser
Type:
IResolvable | Open
Specifies the UID and GIDs of the file system POSIX user.
type
Type:
string
Specifies the FSx for OpenZFS user identity type, accepts only POSIX .

.NET
Go
Java
Python
TypeScript