interface CfnS3AccessPointAttachmentProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.FSx.CfnS3AccessPointAttachmentProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsfsx#CfnS3AccessPointAttachmentProps |
Java | software.amazon.awscdk.services.fsx.CfnS3AccessPointAttachmentProps |
Python | aws_cdk.aws_fsx.CfnS3AccessPointAttachmentProps |
TypeScript | aws-cdk-lib » aws_fsx » CfnS3AccessPointAttachmentProps |
Properties for defining a CfnS3AccessPointAttachment.
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';
declare const policy: any;
const cfnS3AccessPointAttachmentProps: fsx.CfnS3AccessPointAttachmentProps = {
name: 'name',
type: 'type',
// the properties below are optional
ontapConfiguration: {
fileSystemIdentity: {
type: 'type',
// the properties below are optional
unixUser: {
name: 'name',
},
windowsUser: {
name: 'name',
},
},
volumeId: 'volumeId',
},
openZfsConfiguration: {
fileSystemIdentity: {
posixUser: {
gid: 123,
uid: 123,
// the properties below are optional
secondaryGids: [{
gid: 123,
}],
},
type: 'type',
},
volumeId: 'volumeId',
},
s3AccessPoint: {
alias: 'alias',
policy: policy,
resourceArn: 'resourceArn',
vpcConfiguration: {
vpcId: 'vpcId',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The name of the S3 access point attachment; |
| type | string | The type of Amazon FSx volume that the S3 access point is attached to. |
| ontap | IResolvable | S3 | |
| open | IResolvable | S3 | The OpenZFSConfiguration of the S3 access point attachment. |
| s3 | IResolvable | S3 | The S3 access point configuration of the S3 access point attachment. |
name
Type:
string
The name of the S3 access point attachment;
also used for the name of the S3 access point.
type
Type:
string
The type of Amazon FSx volume that the S3 access point is attached to.
ontapConfiguration?
Type:
IResolvable | S3
(optional)
openZfsConfiguration?
Type:
IResolvable | S3
(optional)
The OpenZFSConfiguration of the S3 access point attachment.
s3AccessPoint?
Type:
IResolvable | S3
(optional)
The S3 access point configuration of the S3 access point attachment.

.NET
Go
Java
Python
TypeScript