interface NfsExportsProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.FSx.CfnFileSystem.NfsExportsProperty | 
  Java | software.amazon.awscdk.services.fsx.CfnFileSystem.NfsExportsProperty | 
  Python | aws_cdk.aws_fsx.CfnFileSystem.NfsExportsProperty | 
  TypeScript  | @aws-cdk/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 * as fsx from '@aws-cdk/aws-fsx';
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
 Java
 Python
 TypeScript