Struct aws_sdk_datasync::input::UpdateLocationSmbInput
source · [−]#[non_exhaustive]pub struct UpdateLocationSmbInput {
pub location_arn: Option<String>,
pub subdirectory: Option<String>,
pub user: Option<String>,
pub domain: Option<String>,
pub password: Option<String>,
pub agent_arns: Option<Vec<String>>,
pub mount_options: Option<SmbMountOptions>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.location_arn: Option<String>
The Amazon Resource Name (ARN) of the SMB location to update.
subdirectory: Option<String>
The subdirectory in the SMB file system that is used to read data from the SMB source location or write data to the SMB destination. The SMB path should be a path that's exported by the SMB server, or a subdirectory of that path. The path should be such that it can be mounted by other SMB clients in your network.
Subdirectory
must be specified with forward slashes. For example, /path/to/folder
.
To transfer all the data in the folder that you specified, DataSync must have permissions to mount the SMB share and to access all the data in that share. To ensure this, do either of the following:
-
Ensure that the user/password specified belongs to the user who can mount the share and who has the appropriate permissions for all of the files and directories that you want DataSync to access.
-
Use credentials of a member of the Backup Operators group to mount the share.
Doing either of these options enables the agent to access the data. For the agent to access directories, you must also enable all execute access.
user: Option<String>
The user who can mount the share has the permissions to access files and folders in the SMB share.
domain: Option<String>
The name of the Windows domain that the SMB server belongs to.
password: Option<String>
The password of the user who can mount the share has the permissions to access files and folders in the SMB share.
agent_arns: Option<Vec<String>>
The Amazon Resource Names (ARNs) of agents to use for a Simple Message Block (SMB) location.
mount_options: Option<SmbMountOptions>
Represents the mount options that are available for DataSync to access an SMB location.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateLocationSmb, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateLocationSmb, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateLocationSmb
>
Creates a new builder-style object to manufacture UpdateLocationSmbInput
The Amazon Resource Name (ARN) of the SMB location to update.
The subdirectory in the SMB file system that is used to read data from the SMB source location or write data to the SMB destination. The SMB path should be a path that's exported by the SMB server, or a subdirectory of that path. The path should be such that it can be mounted by other SMB clients in your network.
Subdirectory
must be specified with forward slashes. For example, /path/to/folder
.
To transfer all the data in the folder that you specified, DataSync must have permissions to mount the SMB share and to access all the data in that share. To ensure this, do either of the following:
-
Ensure that the user/password specified belongs to the user who can mount the share and who has the appropriate permissions for all of the files and directories that you want DataSync to access.
-
Use credentials of a member of the Backup Operators group to mount the share.
Doing either of these options enables the agent to access the data. For the agent to access directories, you must also enable all execute access.
The user who can mount the share has the permissions to access files and folders in the SMB share.
The name of the Windows domain that the SMB server belongs to.
The password of the user who can mount the share has the permissions to access files and folders in the SMB share.
The Amazon Resource Names (ARNs) of agents to use for a Simple Message Block (SMB) location.
Represents the mount options that are available for DataSync to access an SMB location.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for UpdateLocationSmbInput
impl Send for UpdateLocationSmbInput
impl Sync for UpdateLocationSmbInput
impl Unpin for UpdateLocationSmbInput
impl UnwindSafe for UpdateLocationSmbInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more