interface NfsExportsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.FSx.CfnVolumePropsMixin.NfsExportsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsfsx#CfnVolumePropsMixin_NfsExportsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.fsx.CfnVolumePropsMixin.NfsExportsProperty |
Python | aws_cdk.cfn_property_mixins.aws_fsx.CfnVolumePropsMixin.NfsExportsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_fsx » CfnVolumePropsMixin » NfsExportsProperty |
The configuration object for mounting a Network File System (NFS) 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/cfn-property-mixins';
const nfsExportsProperty: fsx.CfnVolumePropsMixin.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