import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeProjectRequest, DescribeProjectResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeProjectCommand}. */ export interface DescribeProjectCommandInput extends DescribeProjectRequest { } /** * @public * * The output of {@link DescribeProjectCommand}. */ export interface DescribeProjectCommandOutput extends DescribeProjectResponse, __MetadataBearer { } declare const DescribeProjectCommand_base: { new (input: DescribeProjectCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeProjectCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns the definition of a specific DataBrew project.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DataBrewClient, DescribeProjectCommand } from "@aws-sdk/client-databrew"; // ES Modules import * // const { DataBrewClient, DescribeProjectCommand } = 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 = { // DescribeProjectRequest * Name: "STRING_VALUE", // required * }; * const command = new DescribeProjectCommand(input); * const response = await client.send(command); * // { // DescribeProjectResponse * // CreateDate: new Date("TIMESTAMP"), * // CreatedBy: "STRING_VALUE", * // DatasetName: "STRING_VALUE", * // LastModifiedDate: new Date("TIMESTAMP"), * // LastModifiedBy: "STRING_VALUE", * // Name: "STRING_VALUE", // required * // RecipeName: "STRING_VALUE", * // ResourceArn: "STRING_VALUE", * // Sample: { // Sample * // Size: Number("int"), * // Type: "FIRST_N" || "LAST_N" || "RANDOM", // required * // }, * // RoleArn: "STRING_VALUE", * // Tags: { // TagMap * // "": "STRING_VALUE", * // }, * // SessionStatus: "ASSIGNED" || "FAILED" || "INITIALIZING" || "PROVISIONING" || "READY" || "RECYCLING" || "ROTATING" || "TERMINATED" || "TERMINATING" || "UPDATING", * // OpenedBy: "STRING_VALUE", * // OpenDate: new Date("TIMESTAMP"), * // }; * * ``` * * @param DescribeProjectCommandInput - {@link DescribeProjectCommandInput} * @returns {@link DescribeProjectCommandOutput} * @see {@link DescribeProjectCommandInput} for command's `input` shape. * @see {@link DescribeProjectCommandOutput} 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 DescribeProjectCommand extends DescribeProjectCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeProjectRequest; output: DescribeProjectResponse; }; sdk: { input: DescribeProjectCommandInput; output: DescribeProjectCommandOutput; }; }; }