import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { UpdateProjectRequest, UpdateProjectResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link UpdateProjectCommand}. */ export interface UpdateProjectCommandInput extends UpdateProjectRequest { } /** * @public * * The output of {@link UpdateProjectCommand}. */ export interface UpdateProjectCommandOutput extends UpdateProjectResponse, __MetadataBearer { } declare const UpdateProjectCommand_base: { new (input: UpdateProjectCommandInput): import("@smithy/core/client").CommandImpl; new (input: UpdateProjectCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Modifies the definition of an existing DataBrew project.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DataBrewClient, UpdateProjectCommand } from "@aws-sdk/client-databrew"; // ES Modules import * // const { DataBrewClient, UpdateProjectCommand } = require("@aws-sdk/client-databrew"); // CommonJS import * // import type { DataBrewClientConfig } from "@aws-sdk/client-databrew"; * const config = {}; // type is DataBrewClientConfig * const client = new DataBrewClient(config); * const input = { // UpdateProjectRequest * Sample: { // Sample * Size: Number("int"), * Type: "FIRST_N" || "LAST_N" || "RANDOM", // required * }, * RoleArn: "STRING_VALUE", // required * Name: "STRING_VALUE", // required * }; * const command = new UpdateProjectCommand(input); * const response = await client.send(command); * // { // UpdateProjectResponse * // LastModifiedDate: new Date("TIMESTAMP"), * // Name: "STRING_VALUE", // required * // }; * * ``` * * @param UpdateProjectCommandInput - {@link UpdateProjectCommandInput} * @returns {@link UpdateProjectCommandOutput} * @see {@link UpdateProjectCommandInput} for command's `input` shape. * @see {@link UpdateProjectCommandOutput} for command's `response` shape. * @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape. * * @throws {@link ResourceNotFoundException} (client fault) *

One or more resources can't be found.

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

The input parameters for this request failed validation.

* * @throws {@link DataBrewServiceException} *

Base exception class for all service exceptions from DataBrew service.

* * * @public */ export declare class UpdateProjectCommand extends UpdateProjectCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: UpdateProjectRequest; output: UpdateProjectResponse; }; sdk: { input: UpdateProjectCommandInput; output: UpdateProjectCommandOutput; }; }; }