Interface CfnLocationFSxOpenZFS.ProtocolProperty

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

@Stability(Stable) public static interface CfnLocationFSxOpenZFS.ProtocolProperty extends software.amazon.jsii.JsiiSerializable
Represents the 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.*;
 ProtocolProperty protocolProperty = ProtocolProperty.builder()
         .nfs(NFSProperty.builder()
                 .mountOptions(MountOptionsProperty.builder()
                         .version("version")
                         .build())
                 .build())
         .build();