import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { CreateProjectRequest, CreateProjectResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link CreateProjectCommand}. */ export interface CreateProjectCommandInput extends CreateProjectRequest { } /** * @public * * The output of {@link CreateProjectCommand}. */ export interface CreateProjectCommandOutput extends CreateProjectResponse, __MetadataBearer { } declare const CreateProjectCommand_base: { new (input: CreateProjectCommandInput): import("@smithy/core/client").CommandImpl; new (input: CreateProjectCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Creates a new DataBrew project.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DataBrewClient, CreateProjectCommand } from "@aws-sdk/client-databrew"; // ES Modules import * // const { DataBrewClient, CreateProjectCommand } = 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 = { // CreateProjectRequest * DatasetName: "STRING_VALUE", // required * Name: "STRING_VALUE", // required * RecipeName: "STRING_VALUE", // required * Sample: { // Sample * Size: Number("int"), * Type: "FIRST_N" || "LAST_N" || "RANDOM", // required * }, * RoleArn: "STRING_VALUE", // required * Tags: { // TagMap * "": "STRING_VALUE", * }, * }; * const command = new CreateProjectCommand(input); * const response = await client.send(command); * // { // CreateProjectResponse * // Name: "STRING_VALUE", // required * // }; * * ``` * * @param CreateProjectCommandInput - {@link CreateProjectCommandInput} * @returns {@link CreateProjectCommandOutput} * @see {@link CreateProjectCommandInput} for command's `input` shape. * @see {@link CreateProjectCommandOutput} for command's `response` shape. * @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape. * * @throws {@link ConflictException} (client fault) *

Updating or deleting a resource can cause an inconsistent state.

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

An internal service failure occurred.

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

A service quota is exceeded.

* * @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 CreateProjectCommand extends CreateProjectCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: CreateProjectRequest; output: CreateProjectResponse; }; sdk: { input: CreateProjectCommandInput; output: CreateProjectCommandOutput; }; }; }