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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLocationFSxOpenZFS.ProtocolPropertystatic final classAn implementation forCfnLocationFSxOpenZFS.ProtocolProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getNfs
Represents the Network File System (NFS) protocol that DataSync uses to access your FSx for OpenZFS file system. -
builder
-