import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { DescribeRecipeRequest, DescribeRecipeResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link DescribeRecipeCommand}. */ export interface DescribeRecipeCommandInput extends DescribeRecipeRequest { } /** * @public * * The output of {@link DescribeRecipeCommand}. */ export interface DescribeRecipeCommandOutput extends DescribeRecipeResponse, __MetadataBearer { } declare const DescribeRecipeCommand_base: { new (input: DescribeRecipeCommandInput): import("@smithy/core/client").CommandImpl; new (input: DescribeRecipeCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Returns the definition of a specific DataBrew recipe corresponding to a particular * version.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DataBrewClient, DescribeRecipeCommand } from "@aws-sdk/client-databrew"; // ES Modules import * // const { DataBrewClient, DescribeRecipeCommand } = 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 = { // DescribeRecipeRequest * Name: "STRING_VALUE", // required * RecipeVersion: "STRING_VALUE", * }; * const command = new DescribeRecipeCommand(input); * const response = await client.send(command); * // { // DescribeRecipeResponse * // CreatedBy: "STRING_VALUE", * // CreateDate: new Date("TIMESTAMP"), * // LastModifiedBy: "STRING_VALUE", * // LastModifiedDate: new Date("TIMESTAMP"), * // ProjectName: "STRING_VALUE", * // PublishedBy: "STRING_VALUE", * // PublishedDate: new Date("TIMESTAMP"), * // Description: "STRING_VALUE", * // Name: "STRING_VALUE", // required * // Steps: [ // RecipeStepList * // { // RecipeStep * // Action: { // RecipeAction * // Operation: "STRING_VALUE", // required * // Parameters: { // ParameterMap * // "": "STRING_VALUE", * // }, * // }, * // ConditionExpressions: [ // ConditionExpressionList * // { // ConditionExpression * // Condition: "STRING_VALUE", // required * // Value: "STRING_VALUE", * // TargetColumn: "STRING_VALUE", // required * // }, * // ], * // }, * // ], * // Tags: { // TagMap * // "": "STRING_VALUE", * // }, * // ResourceArn: "STRING_VALUE", * // RecipeVersion: "STRING_VALUE", * // }; * * ``` * * @param DescribeRecipeCommandInput - {@link DescribeRecipeCommandInput} * @returns {@link DescribeRecipeCommandOutput} * @see {@link DescribeRecipeCommandInput} for command's `input` shape. * @see {@link DescribeRecipeCommandOutput} 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 DescribeRecipeCommand extends DescribeRecipeCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: DescribeRecipeRequest; output: DescribeRecipeResponse; }; sdk: { input: DescribeRecipeCommandInput; output: DescribeRecipeCommandOutput; }; }; }