Interface CfnLocationFSxONTAPPropsMixin.SMBProperty

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

@Stability(Stable) public static interface CfnLocationFSxONTAPPropsMixin.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.cfnpropertymixins.services.datasync.*;
 SMBProperty sMBProperty = SMBProperty.builder()
         .cmkSecretConfig(CmkSecretConfigProperty.builder()
                 .kmsKeyArn("kmsKeyArn")
                 .secretArn("secretArn")
                 .build())
         .customSecretConfig(CustomSecretConfigProperty.builder()
                 .secretAccessRoleArn("secretAccessRoleArn")
                 .secretArn("secretArn")
                 .build())
         .domain("domain")
         .managedSecretConfig(ManagedSecretConfigProperty.builder()
                 .secretArn("secretArn")
                 .build())
         .mountOptions(SmbMountOptionsProperty.builder()
                 .version("version")
                 .build())
         .password("password")
         .user("user")
         .build();
 

See Also: