Class: Aws::DataSync::Types::SmbMountOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataSync::Types::SmbMountOptions
- Defined in:
- gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb
Overview
Note:
When making an API call, you may pass SmbMountOptions data as a hash:
{
version: "AUTOMATIC", # accepts AUTOMATIC, SMB2, SMB3
}
Represents the mount options that are available for DataSync to access an SMB location.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#version ⇒ String
The specific SMB version that you want DataSync to use to mount your SMB share.
Instance Attribute Details
#version ⇒ String
The specific SMB version that you want DataSync to use to mount your
SMB share. If you don't specify a version, DataSync defaults to
AUTOMATIC
. That is, DataSync automatically selects a version based
on negotiation with the SMB server.
3436 3437 3438 3439 3440 |
# File 'gems/aws-sdk-datasync/lib/aws-sdk-datasync/types.rb', line 3436 class SmbMountOptions < Struct.new( :version) SENSITIVE = [] include Aws::Structure end |