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 { GetBlueprintRunRequest, GetBlueprintRunResponse } from "../models/models_1"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetBlueprintRunCommand}. */ export interface GetBlueprintRunCommandInput extends GetBlueprintRunRequest { } /** * @public * * The output of {@link GetBlueprintRunCommand}. */ export interface GetBlueprintRunCommandOutput extends GetBlueprintRunResponse, __MetadataBearer { } declare const GetBlueprintRunCommand_base: { new (input: GetBlueprintRunCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetBlueprintRunCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Retrieves the details of a blueprint run.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, GetBlueprintRunCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, GetBlueprintRunCommand } = 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 = { // GetBlueprintRunRequest * BlueprintName: "STRING_VALUE", // required * RunId: "STRING_VALUE", // required * }; * const command = new GetBlueprintRunCommand(input); * const response = await client.send(command); * // { // GetBlueprintRunResponse * // BlueprintRun: { // 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", * // }, * // }; * * ``` * * @param GetBlueprintRunCommandInput - {@link GetBlueprintRunCommandInput} * @returns {@link GetBlueprintRunCommandOutput} * @see {@link GetBlueprintRunCommandInput} for command's `input` shape. * @see {@link GetBlueprintRunCommandOutput} 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 OperationTimeoutException} (client fault) *

The operation timed out.

* * @throws {@link GlueServiceException} *

Base exception class for all service exceptions from Glue service.

* * * @public */ export declare class GetBlueprintRunCommand extends GetBlueprintRunCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetBlueprintRunRequest; output: GetBlueprintRunResponse; }; sdk: { input: GetBlueprintRunCommandInput; output: GetBlueprintRunCommandOutput; }; }; }