import { Command as $Command } from "@smithy/smithy-client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { StartRemoteMoveRequest, StartRemoteMoveResponse } from "../models/models_0"; import type { ServiceInputTypes, ServiceOutputTypes, TransferClientResolvedConfig } from "../TransferClient"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link StartRemoteMoveCommand}. */ export interface StartRemoteMoveCommandInput extends StartRemoteMoveRequest { } /** * @public * * The output of {@link StartRemoteMoveCommand}. */ export interface StartRemoteMoveCommandOutput extends StartRemoteMoveResponse, __MetadataBearer { } declare const StartRemoteMoveCommand_base: { new (input: StartRemoteMoveCommandInput): import("@smithy/smithy-client").CommandImpl; new (input: StartRemoteMoveCommandInput): import("@smithy/smithy-client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions; }; /** *

Moves or renames a file or directory on the remote SFTP server.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { TransferClient, StartRemoteMoveCommand } from "@aws-sdk/client-transfer"; // ES Modules import * // const { TransferClient, StartRemoteMoveCommand } = require("@aws-sdk/client-transfer"); // CommonJS import * // import type { TransferClientConfig } from "@aws-sdk/client-transfer"; * const config = {}; // type is TransferClientConfig * const client = new TransferClient(config); * const input = { // StartRemoteMoveRequest * ConnectorId: "STRING_VALUE", // required * SourcePath: "STRING_VALUE", // required * TargetPath: "STRING_VALUE", // required * }; * const command = new StartRemoteMoveCommand(input); * const response = await client.send(command); * // { // StartRemoteMoveResponse * // MoveId: "STRING_VALUE", // required * // }; * * ``` * * @param StartRemoteMoveCommandInput - {@link StartRemoteMoveCommandInput} * @returns {@link StartRemoteMoveCommandOutput} * @see {@link StartRemoteMoveCommandInput} for command's `input` shape. * @see {@link StartRemoteMoveCommandOutput} for command's `response` shape. * @see {@link TransferClientResolvedConfig | config} for TransferClient's `config` shape. * * @throws {@link InternalServiceError} (server fault) *

This exception is thrown when an error occurs in the Transfer Family service.

* * @throws {@link InvalidRequestException} (client fault) *

This exception is thrown when the client submits a malformed request.

* * @throws {@link ResourceNotFoundException} (client fault) *

This exception is thrown when a resource is not found by the Amazon Web ServicesTransfer Family service.

* * @throws {@link ServiceUnavailableException} (server fault) *

The request has failed because the Amazon Web ServicesTransfer Family service is not available.

* * @throws {@link ThrottlingException} (client fault) *

The request was denied due to request throttling.

* * @throws {@link TransferServiceException} *

Base exception class for all service exceptions from Transfer service.

* * * @public */ export declare class StartRemoteMoveCommand extends StartRemoteMoveCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: StartRemoteMoveRequest; output: StartRemoteMoveResponse; }; sdk: { input: StartRemoteMoveCommandInput; output: StartRemoteMoveCommandOutput; }; }; }