interface OntapFileSystemIdentityProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FSx.Mixins.CfnS3AccessPointAttachmentPropsMixin.OntapFileSystemIdentityProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfsx/mixins#CfnS3AccessPointAttachmentPropsMixin_OntapFileSystemIdentityProperty |
Java | software.amazon.awscdk.mixins.preview.services.fsx.mixins.CfnS3AccessPointAttachmentPropsMixin.OntapFileSystemIdentityProperty |
Python | aws_cdk.mixins_preview.aws_fsx.mixins.CfnS3AccessPointAttachmentPropsMixin.OntapFileSystemIdentityProperty |
TypeScript | @aws-cdk/mixins-preview » aws_fsx » mixins » CfnS3AccessPointAttachmentPropsMixin » 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 { mixins as fsx_mixins } from '@aws-cdk/mixins-preview/aws-fsx';
const ontapFileSystemIdentityProperty: fsx_mixins.CfnS3AccessPointAttachmentPropsMixin.OntapFileSystemIdentityProperty = {
type: 'type',
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
(optional)
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