interface NfsExportsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.FSx.CfnFileSystem.NfsExportsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsfsx#CfnFileSystem_NfsExportsProperty |
Java | software.amazon.awscdk.services.fsx.CfnFileSystem.NfsExportsProperty |
Python | aws_cdk.aws_fsx.CfnFileSystem.NfsExportsProperty |
TypeScript | aws-cdk-lib » aws_fsx » CfnFileSystem » NfsExportsProperty |
The configuration object for mounting a file system.
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 nfsExportsProperty: fsx.CfnFileSystem.NfsExportsProperty = {
clientConfigurations: [{
clients: 'clients',
options: ['options'],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| client | IResolvable | (IResolvable | Client)[] | A list of configuration objects that contain the client and options for mounting the OpenZFS file system. |
clientConfigurations?
Type:
IResolvable | (IResolvable | Client)[]
(optional)
A list of configuration objects that contain the client and options for mounting the OpenZFS file system.

.NET
Go
Java
Python
TypeScript