interface OpenZFSFileSystemIdentityProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FSx.Mixins.CfnS3AccessPointAttachmentPropsMixin.OpenZFSFileSystemIdentityProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfsx/mixins#CfnS3AccessPointAttachmentPropsMixin_OpenZFSFileSystemIdentityProperty |
Java | software.amazon.awscdk.mixins.preview.services.fsx.mixins.CfnS3AccessPointAttachmentPropsMixin.OpenZFSFileSystemIdentityProperty |
Python | aws_cdk.mixins_preview.aws_fsx.mixins.CfnS3AccessPointAttachmentPropsMixin.OpenZFSFileSystemIdentityProperty |
TypeScript | @aws-cdk/mixins-preview » aws_fsx » mixins » CfnS3AccessPointAttachmentPropsMixin » 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 { mixins as fsx_mixins } from '@aws-cdk/mixins-preview/aws-fsx';
const openZFSFileSystemIdentityProperty: fsx_mixins.CfnS3AccessPointAttachmentPropsMixin.OpenZFSFileSystemIdentityProperty = {
posixUser: {
gid: 123,
secondaryGids: [{
gid: 123,
}],
uid: 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
(optional)
Specifies the UID and GIDs of the file system POSIX user.
type?
Type:
string
(optional)
Specifies the FSx for OpenZFS user identity type, accepts only POSIX .

.NET
Go
Java
Python
TypeScript