import { Command as $Command } from "@smithy/core/client"; import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GlueClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../GlueClient"; import type { GetBlueprintRunsRequest, GetBlueprintRunsResponse } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetBlueprintRunsCommand}. */ export interface GetBlueprintRunsCommandInput extends GetBlueprintRunsRequest { } /** * @public * * The output of {@link GetBlueprintRunsCommand}. */ export interface GetBlueprintRunsCommandOutput extends GetBlueprintRunsResponse, __MetadataBearer { } declare const GetBlueprintRunsCommand_base: { new (input: GetBlueprintRunsCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetBlueprintRunsCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Retrieves the details of blueprint runs for a specified blueprint.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, GetBlueprintRunsCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, GetBlueprintRunsCommand } = require("@aws-sdk/client-glue"); // CommonJS import * // import type { GlueClientConfig } from "@aws-sdk/client-glue"; * const config = {}; // type is GlueClientConfig * const client = new GlueClient(config); * const input = { // GetBlueprintRunsRequest * BlueprintName: "STRING_VALUE", // required * NextToken: "STRING_VALUE", * MaxResults: Number("int"), * }; * const command = new GetBlueprintRunsCommand(input); * const response = await client.send(command); * // { // GetBlueprintRunsResponse * // BlueprintRuns: [ // BlueprintRuns * // { // BlueprintRun * // BlueprintName: "STRING_VALUE", * // RunId: "STRING_VALUE", * // WorkflowName: "STRING_VALUE", * // State: "RUNNING" || "SUCCEEDED" || "FAILED" || "ROLLING_BACK", * // StartedOn: new Date("TIMESTAMP"), * // CompletedOn: new Date("TIMESTAMP"), * // ErrorMessage: "STRING_VALUE", * // RollbackErrorMessage: "STRING_VALUE", * // Parameters: "STRING_VALUE", * // RoleArn: "STRING_VALUE", * // }, * // ], * // NextToken: "STRING_VALUE", * // }; * * ``` * * @param GetBlueprintRunsCommandInput - {@link GetBlueprintRunsCommandInput} * @returns {@link GetBlueprintRunsCommandOutput} * @see {@link GetBlueprintRunsCommandInput} for command's `input` shape. * @see {@link GetBlueprintRunsCommandOutput} for command's `response` shape. * @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape. * * @throws {@link EntityNotFoundException} (client fault) *

A specified entity does not exist

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

An internal service error occurred.

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

The input provided was not valid.

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

The operation timed out.

* * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* * * @public */ export declare class GetBlueprintRunsCommand extends GetBlueprintRunsCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetBlueprintRunsRequest; output: GetBlueprintRunsResponse; }; sdk: { input: GetBlueprintRunsCommandInput; output: GetBlueprintRunsCommandOutput; }; }; }