Interface CfnVolume.NfsExportsProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnVolume.NfsExportsProperty.Jsii$Proxy
Enclosing class:
CfnVolume

@Stability(Stable) public static interface CfnVolume.NfsExportsProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.fsx.*;
 NfsExportsProperty nfsExportsProperty = NfsExportsProperty.builder()
         .clientConfigurations(List.of(ClientConfigurationsProperty.builder()
                 .clients("clients")
                 .options(List.of("options"))
                 .build()))
         .build();
 

See Also: