Interface FsxProtocolSmb.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FsxProtocolSmb.Builder,FsxProtocolSmb>,SdkBuilder<FsxProtocolSmb.Builder,FsxProtocolSmb>,SdkPojo
- Enclosing class:
- FsxProtocolSmb
public static interface FsxProtocolSmb.Builder extends SdkPojo, CopyableBuilder<FsxProtocolSmb.Builder,FsxProtocolSmb>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description FsxProtocolSmb.Builderdomain(String domain)Specifies the fully qualified domain name (FQDN) of the Microsoft Active Directory that your storage virtual machine (SVM) belongs to.default FsxProtocolSmb.BuildermountOptions(Consumer<SmbMountOptions.Builder> mountOptions)Sets the value of the MountOptions property for this object.FsxProtocolSmb.BuildermountOptions(SmbMountOptions mountOptions)Sets the value of the MountOptions property for this object.FsxProtocolSmb.Builderpassword(String password)Specifies the password of a user who has permission to access your SVM.FsxProtocolSmb.Builderuser(String user)Specifies a user that can mount and access the files, folders, and metadata in your SVM.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
domain
FsxProtocolSmb.Builder domain(String domain)
Specifies the fully qualified domain name (FQDN) of the Microsoft Active Directory 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.
- Parameters:
domain- Specifies the fully qualified domain name (FQDN) of the Microsoft Active Directory 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.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mountOptions
FsxProtocolSmb.Builder mountOptions(SmbMountOptions mountOptions)
Sets the value of the MountOptions property for this object.- Parameters:
mountOptions- The new value for the MountOptions property for this object.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
mountOptions
default FsxProtocolSmb.Builder mountOptions(Consumer<SmbMountOptions.Builder> mountOptions)
Sets the value of the MountOptions property for this object. This is a convenience method that creates an instance of theSmbMountOptions.Builderavoiding the need to create one manually viaSmbMountOptions.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tomountOptions(SmbMountOptions).- Parameters:
mountOptions- a consumer that will call methods onSmbMountOptions.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
mountOptions(SmbMountOptions)
-
password
FsxProtocolSmb.Builder password(String password)
Specifies the password of a user who has permission to access your SVM.
- Parameters:
password- Specifies the password of a user who has permission to access your SVM.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
user
FsxProtocolSmb.Builder user(String user)
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.
- Parameters:
user- 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:
- Returns a reference to this object so that method calls can be chained together.
-
-