Module Values.UpdateLocationFsxWindowsRequestSource

Modifies the following configuration parameters of the Amazon FSx for Windows File Server transfer location that you're using with DataSync. For more information, see Configuring DataSync transfers with FSx for Windows File Server.

Sourcetype nonrec t = {
  1. locationArn : LocationArn.t;
    (*

    Specifies the ARN of the FSx for Windows File Server transfer location that you're updating.

    *)
  2. subdirectory : FsxWindowsSubdirectory.t option;
    (*

    Specifies a mount path for your file system using forward slashes. DataSync uses this subdirectory to read or write data (depending on whether the file system is a source or destination location).

    *)
  3. domain : UpdateSmbDomain.t option;
    (*

    Specifies the name of the Windows domain that your FSx for Windows File Server file system belongs to. If you have multiple Active Directory domains in your environment, configuring this parameter makes sure that DataSync connects to the right file system.

    *)
  4. user : SmbUser.t option;
    (*

    Specifies the user with the permissions to mount and access the files, folders, and file metadata in your FSx for Windows File Server file system. For information about choosing a user with the right level of access for your transfer, see required permissions for FSx for Windows File Server locations.

    *)
  5. password : SmbPassword.t option;
    (*

    Specifies the password of the user with the permissions to mount and access the files, folders, and file metadata in your FSx for Windows File Server file system.

    *)
  6. cmkSecretConfig : CmkSecretConfig.t option;
    (*

    Specifies configuration information for a DataSync-managed secret, such as a Password or set of credentials that DataSync uses to access a specific transfer location, and a customer-managed KMS key.

    *)
  7. customSecretConfig : CustomSecretConfig.t option;
    (*

    Specifies configuration information for a customer-managed secret, such as a Password or set of credentials that DataSync uses to access a specific transfer location, and a customer-managed Identity and Access Management (IAM) role that provides access to the secret.

    *)
}
Sourceval context_ : string
Sourceval make : ?subdirectory:??? -> ?domain:??? -> ?user:??? -> ?password:??? -> ?cmkSecretConfig:??? -> ?customSecretConfig:??? -> locationArn:LocationArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of LocationArn.t | `Structure of (string * [> `String of SecretArn.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t