import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { UpdateLocationS3Request, UpdateLocationS3Response } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link UpdateLocationS3Command}. */ export interface UpdateLocationS3CommandInput extends UpdateLocationS3Request { } /** * @public * * The output of {@link UpdateLocationS3Command}. */ export interface UpdateLocationS3CommandOutput extends UpdateLocationS3Response, __MetadataBearer { } declare const UpdateLocationS3Command_base: { new (input: UpdateLocationS3CommandInput): import("@smithy/core/client").CommandImpl; new (input: UpdateLocationS3CommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

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

* *

Before you begin, make sure that you read the following topics:

* *
* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DataSyncClient, UpdateLocationS3Command } from "@aws-sdk/client-datasync"; // ES Modules import * // const { DataSyncClient, UpdateLocationS3Command } = 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 = { // UpdateLocationS3Request * LocationArn: "STRING_VALUE", // required * Subdirectory: "STRING_VALUE", * S3StorageClass: "STANDARD" || "STANDARD_IA" || "ONEZONE_IA" || "INTELLIGENT_TIERING" || "GLACIER" || "DEEP_ARCHIVE" || "OUTPOSTS" || "GLACIER_INSTANT_RETRIEVAL", * S3Config: { // S3Config * BucketAccessRoleArn: "STRING_VALUE", // required * }, * }; * const command = new UpdateLocationS3Command(input); * const response = await client.send(command); * // {}; * * ``` * * @param UpdateLocationS3CommandInput - {@link UpdateLocationS3CommandInput} * @returns {@link UpdateLocationS3CommandOutput} * @see {@link UpdateLocationS3CommandInput} for command's `input` shape. * @see {@link UpdateLocationS3CommandOutput} 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 UpdateLocationS3Command extends UpdateLocationS3Command_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateLocationS3Request; output: {}; }; sdk: { input: UpdateLocationS3CommandInput; output: UpdateLocationS3CommandOutput; }; }; }