Interface CfnLocationFSxOpenZFS.NFSProperty

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

@Stability(Stable) public static interface CfnLocationFSxOpenZFS.NFSProperty extends software.amazon.jsii.JsiiSerializable
Represents the Network File System (NFS) protocol that AWS DataSync uses to access your Amazon FSx for OpenZFS 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.datasync.*;
 NFSProperty nFSProperty = NFSProperty.builder()
         .mountOptions(MountOptionsProperty.builder()
                 .version("version")
                 .build())
         .build();
 

See Also: