interface S3AccessPointOpenZFSConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FSx.Mixins.CfnS3AccessPointAttachmentPropsMixin.S3AccessPointOpenZFSConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfsx/mixins#CfnS3AccessPointAttachmentPropsMixin_S3AccessPointOpenZFSConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.fsx.mixins.CfnS3AccessPointAttachmentPropsMixin.S3AccessPointOpenZFSConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_fsx.mixins.CfnS3AccessPointAttachmentPropsMixin.S3AccessPointOpenZFSConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_fsx » mixins » CfnS3AccessPointAttachmentPropsMixin » S3AccessPointOpenZFSConfigurationProperty |
Describes the FSx for OpenZFS attachment configuration of an S3 access point attachment.
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 s3AccessPointOpenZFSConfigurationProperty: fsx_mixins.CfnS3AccessPointAttachmentPropsMixin.S3AccessPointOpenZFSConfigurationProperty = {
fileSystemIdentity: {
posixUser: {
gid: 123,
secondaryGids: [{
gid: 123,
}],
uid: 123,
},
type: 'type',
},
volumeId: 'volumeId',
};
Properties
| Name | Type | Description |
|---|---|---|
| file | IResolvable | Open | The file system identity used to authorize file access requests made using the S3 access point. |
| volume | string | The ID of the FSx for OpenZFS volume that the S3 access point is attached to. |
fileSystemIdentity?
Type:
IResolvable | Open
(optional)
The file system identity used to authorize file access requests made using the S3 access point.
volumeId?
Type:
string
(optional)
The ID of the FSx for OpenZFS volume that the S3 access point is attached to.

.NET
Go
Java
Python
TypeScript