Interface CfnLocationFSxONTAP.ProtocolProperty

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

@Stability(Stable) public static interface CfnLocationFSxONTAP.ProtocolProperty extends software.amazon.jsii.JsiiSerializable
Specifies the data transfer protocol that AWS DataSync uses to access your Amazon FSx 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(NfsMountOptionsProperty.builder()
                         .version("version")
                         .build())
                 .build())
         .smb(SMBProperty.builder()
                 .mountOptions(SmbMountOptionsProperty.builder()
                         .version("version")
                         .build())
                 .password("password")
                 .user("user")
                 // the properties below are optional
                 .domain("domain")
                 .build())
         .build();