import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { UpdateLocationFsxWindowsRequest, UpdateLocationFsxWindowsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link UpdateLocationFsxWindowsCommand}. */ export interface UpdateLocationFsxWindowsCommandInput extends UpdateLocationFsxWindowsRequest { } /** * @public * * The output of {@link UpdateLocationFsxWindowsCommand}. */ export interface UpdateLocationFsxWindowsCommandOutput extends UpdateLocationFsxWindowsResponse, __MetadataBearer { } declare const UpdateLocationFsxWindowsCommand_base: { new (input: UpdateLocationFsxWindowsCommandInput): import("@smithy/core/client").CommandImpl; new (input: UpdateLocationFsxWindowsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

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.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DataSyncClient, UpdateLocationFsxWindowsCommand } from "@aws-sdk/client-datasync"; // ES Modules import * // const { DataSyncClient, UpdateLocationFsxWindowsCommand } = require("@aws-sdk/client-datasync"); // CommonJS import * // import type { DataSyncClientConfig } from "@aws-sdk/client-datasync"; * const config = {}; // type is DataSyncClientConfig * const client = new DataSyncClient(config); * const input = { // UpdateLocationFsxWindowsRequest * LocationArn: "STRING_VALUE", // required * Subdirectory: "STRING_VALUE", * Domain: "STRING_VALUE", * User: "STRING_VALUE", * Password: "STRING_VALUE", * CmkSecretConfig: { // CmkSecretConfig * SecretArn: "STRING_VALUE", * KmsKeyArn: "STRING_VALUE", * }, * CustomSecretConfig: { // CustomSecretConfig * SecretArn: "STRING_VALUE", * SecretAccessRoleArn: "STRING_VALUE", * }, * }; * const command = new UpdateLocationFsxWindowsCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param UpdateLocationFsxWindowsCommandInput - {@link UpdateLocationFsxWindowsCommandInput} * @returns {@link UpdateLocationFsxWindowsCommandOutput} * @see {@link UpdateLocationFsxWindowsCommandInput} for command's `input` shape. * @see {@link UpdateLocationFsxWindowsCommandOutput} for command's `response` shape. * @see {@link DataSyncClientResolvedConfig | config} for DataSyncClient's `config` shape. * * @throws {@link InternalException} (server fault) *

This exception is thrown when an error occurs in the DataSync * service.

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

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

* * @throws {@link DataSyncServiceException} *

Base exception class for all service exceptions from DataSync service.

* * * @public */ export declare class UpdateLocationFsxWindowsCommand extends UpdateLocationFsxWindowsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateLocationFsxWindowsRequest; output: {}; }; sdk: { input: UpdateLocationFsxWindowsCommandInput; output: UpdateLocationFsxWindowsCommandOutput; }; }; }