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 |
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, accepts either UNIX or WINDOWS. |
| unix | IResolvable | Ontap | |
| windows | IResolvable | Ontap |
type
Type:
string
Specifies the FSx for ONTAP user identity type, accepts either UNIX or WINDOWS.
unixUser?
Type:
IResolvable | Ontap
(optional)
windowsUser?
Type:
IResolvable | Ontap
(optional)

.NET
Go
Java
Python
TypeScript