interface NfsExportsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FSx.Mixins.CfnFileSystemPropsMixin.NfsExportsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfsx/mixins#CfnFileSystemPropsMixin_NfsExportsProperty |
Java | software.amazon.awscdk.mixins.preview.services.fsx.mixins.CfnFileSystemPropsMixin.NfsExportsProperty |
Python | aws_cdk.mixins_preview.aws_fsx.mixins.CfnFileSystemPropsMixin.NfsExportsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_fsx » mixins » CfnFileSystemPropsMixin » 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 { mixins as fsx_mixins } from '@aws-cdk/mixins-preview/aws-fsx';
const nfsExportsProperty: fsx_mixins.CfnFileSystemPropsMixin.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