import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { UpdateLocationEfsRequest, UpdateLocationEfsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link UpdateLocationEfsCommand}. */ export interface UpdateLocationEfsCommandInput extends UpdateLocationEfsRequest { } /** * @public * * The output of {@link UpdateLocationEfsCommand}. */ export interface UpdateLocationEfsCommandOutput extends UpdateLocationEfsResponse, __MetadataBearer { } declare const UpdateLocationEfsCommand_base: { new (input: UpdateLocationEfsCommandInput): import("@smithy/core/client").CommandImpl; new (input: UpdateLocationEfsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Modifies the following configuration parameters of the Amazon EFS transfer * location that you're using with DataSync.

*

For more information, see Configuring DataSync * transfers with Amazon EFS.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DataSyncClient, UpdateLocationEfsCommand } from "@aws-sdk/client-datasync"; // ES Modules import * // const { DataSyncClient, UpdateLocationEfsCommand } = 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 = { // UpdateLocationEfsRequest * LocationArn: "STRING_VALUE", // required * Subdirectory: "STRING_VALUE", * AccessPointArn: "STRING_VALUE", * FileSystemAccessRoleArn: "STRING_VALUE", * InTransitEncryption: "NONE" || "TLS1_2", * }; * const command = new UpdateLocationEfsCommand(input); * const response = await client.send(command); * // {}; * * ``` * * @param UpdateLocationEfsCommandInput - {@link UpdateLocationEfsCommandInput} * @returns {@link UpdateLocationEfsCommandOutput} * @see {@link UpdateLocationEfsCommandInput} for command's `input` shape. * @see {@link UpdateLocationEfsCommandOutput} 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 UpdateLocationEfsCommand extends UpdateLocationEfsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateLocationEfsRequest; output: {}; }; sdk: { input: UpdateLocationEfsCommandInput; output: UpdateLocationEfsCommandOutput; }; }; }