interface OntapFileSystemIdentityProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.FSx.CfnS3AccessPointAttachment.OntapFileSystemIdentityProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsfsx#CfnS3AccessPointAttachment_OntapFileSystemIdentityProperty |
Java | software.amazon.awscdk.services.fsx.CfnS3AccessPointAttachment.OntapFileSystemIdentityProperty |
Python | aws_cdk.aws_fsx.CfnS3AccessPointAttachment.OntapFileSystemIdentityProperty |
TypeScript | aws-cdk-lib » aws_fsx » CfnS3AccessPointAttachment » OntapFileSystemIdentityProperty |
Specifies the file system user identity that will be used for authorizing all file access requests that are made using the S3 access point.
The identity can be either a UNIX user or a Windows user.
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 ontapFileSystemIdentityProperty: fsx.CfnS3AccessPointAttachment.OntapFileSystemIdentityProperty = {
type: 'type',
// the properties below are optional
unixUser: {
name: 'name',
},
windowsUser: {
name: 'name',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| type | string | Specifies the FSx for ONTAP user identity type. |
| unix | IResolvable | Ontap | Specifies the UNIX user identity for file system operations. |
| windows | IResolvable | Ontap | Specifies the Windows user identity for file system operations. |
type
Type:
string
Specifies the FSx for ONTAP user identity type.
Valid values are UNIX and WINDOWS .
unixUser?
Type:
IResolvable | Ontap
(optional)
Specifies the UNIX user identity for file system operations.
windowsUser?
Type:
IResolvable | Ontap
(optional)
Specifies the Windows user identity for file system operations.

.NET
Go
Java
Python
TypeScript