import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { ListRecipeVersionsRequest, ListRecipeVersionsResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link ListRecipeVersionsCommand}. */ export interface ListRecipeVersionsCommandInput extends ListRecipeVersionsRequest { } /** * @public * * The output of {@link ListRecipeVersionsCommand}. */ export interface ListRecipeVersionsCommandOutput extends ListRecipeVersionsResponse, __MetadataBearer { } declare const ListRecipeVersionsCommand_base: { new (input: ListRecipeVersionsCommandInput): import("@smithy/core/client").CommandImpl; new (input: ListRecipeVersionsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Lists the versions of a particular DataBrew recipe, except for * LATEST_WORKING.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { DataBrewClient, ListRecipeVersionsCommand } from "@aws-sdk/client-databrew"; // ES Modules import * // const { DataBrewClient, ListRecipeVersionsCommand } = 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 = { // ListRecipeVersionsRequest * MaxResults: Number("int"), * NextToken: "STRING_VALUE", * Name: "STRING_VALUE", // required * }; * const command = new ListRecipeVersionsCommand(input); * const response = await client.send(command); * // { // ListRecipeVersionsResponse * // NextToken: "STRING_VALUE", * // Recipes: [ // RecipeList // required * // { // Recipe * // 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 * // ResourceArn: "STRING_VALUE", * // 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", * // }, * // RecipeVersion: "STRING_VALUE", * // }, * // ], * // }; * * ``` * * @param ListRecipeVersionsCommandInput - {@link ListRecipeVersionsCommandInput} * @returns {@link ListRecipeVersionsCommandOutput} * @see {@link ListRecipeVersionsCommandInput} for command's `input` shape. * @see {@link ListRecipeVersionsCommandOutput} for command's `response` shape. * @see {@link DataBrewClientResolvedConfig | config} for DataBrewClient's `config` shape. * * @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 ListRecipeVersionsCommand extends ListRecipeVersionsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: ListRecipeVersionsRequest; output: ListRecipeVersionsResponse; }; sdk: { input: ListRecipeVersionsCommandInput; output: ListRecipeVersionsCommandOutput; }; }; }