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();
 - See Also:
- 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnLocationFSxOpenZFS.ProtocolPropertystatic final classAn implementation forCfnLocationFSxOpenZFS.ProtocolProperty
- 
Method SummaryMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getNfsRepresents the Network File System (NFS) protocol that DataSync uses to access your FSx for OpenZFS file system.Returns union: either IResolvableorCfnLocationFSxOpenZFS.NFSProperty- See Also:
 
- 
builder
 
-