Interface CfnLocationFSxONTAP.NFSProperty

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

@Stability(Stable) public static interface CfnLocationFSxONTAP.NFSProperty extends software.amazon.jsii.JsiiSerializable
Specifies the Network File System (NFS) protocol configuration that AWS DataSync uses to access a storage virtual machine (SVM) on your Amazon FSx for NetApp ONTAP file system.

For more information, see Accessing FSx for ONTAP file systems .

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(NfsMountOptionsProperty.builder()
                 .version("version")
                 .build())
         .build();
 

See Also: