interface S3AccessPointOntapConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.FSx.CfnS3AccessPointAttachment.S3AccessPointOntapConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsfsx#CfnS3AccessPointAttachment_S3AccessPointOntapConfigurationProperty |
Java | software.amazon.awscdk.services.fsx.CfnS3AccessPointAttachment.S3AccessPointOntapConfigurationProperty |
Python | aws_cdk.aws_fsx.CfnS3AccessPointAttachment.S3AccessPointOntapConfigurationProperty |
TypeScript | aws-cdk-lib » aws_fsx » CfnS3AccessPointAttachment » S3AccessPointOntapConfigurationProperty |
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';
const s3AccessPointOntapConfigurationProperty: fsx.CfnS3AccessPointAttachment.S3AccessPointOntapConfigurationProperty = {
fileSystemIdentity: {
type: 'type',
// the properties below are optional
unixUser: {
name: 'name',
},
windowsUser: {
name: 'name',
},
},
volumeId: 'volumeId',
};
Properties
| Name | Type | Description |
|---|---|---|
| file | IResolvable | Ontap | |
| volume | string | The ID of the FSx for ONTAP volume that the S3 access point is attached to. |
fileSystemIdentity
Type:
IResolvable | Ontap
volumeId
Type:
string
The ID of the FSx for ONTAP volume that the S3 access point is attached to.

.NET
Go
Java
Python
TypeScript