Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UpdateLocationSmbRequest

import type { UpdateLocationSmbRequest } from "https://aws-api.deno.dev/v0.4/services/datasync.ts?docs=full";
interface UpdateLocationSmbRequest {
AgentArns?: string[] | null;
Domain?: string | null;
LocationArn: string;
MountOptions?: SmbMountOptions | null;
Password?: string | null;
Subdirectory?: string | null;
User?: string | null;
}

§Properties

§
AgentArns?: string[] | null
[src]

The Amazon Resource Names (ARNs) of agents to use for a Simple Message Block (SMB) location.

§
Domain?: string | null
[src]

The name of the Windows domain that the SMB server belongs to.

§
LocationArn: string
[src]

The Amazon Resource Name (ARN) of the SMB location to update.

§
MountOptions?: SmbMountOptions | null
[src]
§
Password?: string | null
[src]

The password of the user who can mount the share has the permissions to access files and folders in the SMB share.

§
Subdirectory?: string | null
[src]

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.

Note: 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?: string | null
[src]

The user who can mount the share has the permissions to access files and folders in the SMB share.