Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

Class: Aws::DataSync::Types::FsxProtocolSmb

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb

Overview

Specifies the Server Message Block (SMB) protocol configuration that DataSync uses to access your Amazon FSx for NetApp ONTAP file system's storage virtual machine (SVM). For more information, see Providing DataSync access to FSx for ONTAP file systems.

Constant Summary collapse

SENSITIVE =
[:password]

Instance Attribute Summary collapse

Instance Attribute Details

#domainString

Specifies the name of the Windows domain that your storage virtual machine (SVM) belongs to.

If you have multiple domains in your environment, configuring this setting makes sure that DataSync connects to the right SVM.

If you have multiple Active Directory domains in your environment, configuring this parameter makes sure that DataSync connects to the right SVM.

Returns:

  • (String)

3430
3431
3432
3433
3434
3435
3436
3437
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3430

class FsxProtocolSmb < Struct.new(
  :domain,
  :mount_options,
  :password,
  :user)
  SENSITIVE = [:password]
  include Aws::Structure
end

#mount_optionsTypes::SmbMountOptions

Specifies the version of the Server Message Block (SMB) protocol that DataSync uses to access an SMB file server.


3430
3431
3432
3433
3434
3435
3436
3437
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3430

class FsxProtocolSmb < Struct.new(
  :domain,
  :mount_options,
  :password,
  :user)
  SENSITIVE = [:password]
  include Aws::Structure
end

#passwordString

Specifies the password of a user who has permission to access your SVM.

Returns:

  • (String)

3430
3431
3432
3433
3434
3435
3436
3437
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3430

class FsxProtocolSmb < Struct.new(
  :domain,
  :mount_options,
  :password,
  :user)
  SENSITIVE = [:password]
  include Aws::Structure
end

#userString

Specifies a user that can mount and access the files, folders, and metadata in your SVM.

For information about choosing a user with the right level of access for your transfer, see Using the SMB protocol.

Returns:

  • (String)

3430
3431
3432
3433
3434
3435
3436
3437
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3430

class FsxProtocolSmb < Struct.new(
  :domain,
  :mount_options,
  :password,
  :user)
  SENSITIVE = [:password]
  include Aws::Structure
end