interface CfnS3AccessPointAttachmentMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FSx.Mixins.CfnS3AccessPointAttachmentMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfsx/mixins#CfnS3AccessPointAttachmentMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.fsx.mixins.CfnS3AccessPointAttachmentMixinProps |
Python | aws_cdk.mixins_preview.aws_fsx.mixins.CfnS3AccessPointAttachmentMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_fsx » mixins » CfnS3AccessPointAttachmentMixinProps |
Properties for CfnS3AccessPointAttachmentPropsMixin.
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';
declare const policy: any;
const cfnS3AccessPointAttachmentMixinProps: fsx_mixins.CfnS3AccessPointAttachmentMixinProps = {
name: 'name',
ontapConfiguration: {
fileSystemIdentity: {
type: 'type',
unixUser: {
name: 'name',
},
windowsUser: {
name: 'name',
},
},
volumeId: 'volumeId',
},
openZfsConfiguration: {
fileSystemIdentity: {
posixUser: {
gid: 123,
secondaryGids: [{
gid: 123,
}],
uid: 123,
},
type: 'type',
},
volumeId: 'volumeId',
},
s3AccessPoint: {
alias: 'alias',
policy: policy,
resourceArn: 'resourceArn',
vpcConfiguration: {
vpcId: 'vpcId',
},
},
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| name? | string | The name of the S3 access point attachment; |
| ontap | IResolvable | S3 | The ONTAP configuration of the S3 access point attachment. |
| 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. |
| type? | string | The type of Amazon FSx volume that the S3 access point is attached to. |
name?
Type:
string
(optional)
The name of the S3 access point attachment;
also used for the name of the S3 access point.
ontapConfiguration?
Type:
IResolvable | S3
(optional)
The ONTAP configuration of the S3 access point attachment.
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.
type?
Type:
string
(optional)
The type of Amazon FSx volume that the S3 access point is attached to.

.NET
Go
Java
Python
TypeScript