Interface CfnLocationFSxONTAP.SMBProperty

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

@Stability(Stable) public static interface CfnLocationFSxONTAP.SMBProperty extends software.amazon.jsii.JsiiSerializable
Specifies the Server Message Block (SMB) 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.*;
 SMBProperty sMBProperty = SMBProperty.builder()
         .mountOptions(SmbMountOptionsProperty.builder()
                 .version("version")
                 .build())
         .password("password")
         .user("user")
         // the properties below are optional
         .domain("domain")
         .build();
 

See Also: