interface CfnS3AccessPointAttachmentProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.FSx.CfnS3AccessPointAttachmentProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsfsx#CfnS3AccessPointAttachmentProps |
![]() | software.amazon.awscdk.services.fsx.CfnS3AccessPointAttachmentProps |
![]() | aws_cdk.aws_fsx.CfnS3AccessPointAttachmentProps |
![]() | 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',
openZfsConfiguration: {
fileSystemIdentity: {
posixUser: {
gid: 123,
uid: 123,
// the properties below are optional
secondaryGids: [{
gid: 123,
}],
},
type: 'type',
},
volumeId: 'volumeId',
},
type: 'type',
// the properties below are optional
s3AccessPoint: {
alias: 'alias',
policy: policy,
resourceArn: 'resourceArn',
vpcConfiguration: {
vpcId: 'vpcId',
},
},
};
Properties
Name | Type | Description |
---|---|---|
name | string | The name of the S3 access point attachment; |
open | IResolvable | S3 | The OpenZFSConfiguration of the S3 access point attachment. |
type | string | The type of Amazon FSx volume that the S3 access point is attached to. |
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.
openZfsConfiguration
Type:
IResolvable
|
S3
The OpenZFSConfiguration of the S3 access point attachment.
type
Type:
string
The type of Amazon FSx volume that the S3 access point is attached to.
s3AccessPoint?
Type:
IResolvable
|
S3
(optional)
The S3 access point configuration of the S3 access point attachment.