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 { GetWorkflowRunPropertiesRequest, GetWorkflowRunPropertiesResponse } from "../models/models_2"; /** * @public */ export type { __MetadataBearer }; export { $Command }; /** * @public * * The input for {@link GetWorkflowRunPropertiesCommand}. */ export interface GetWorkflowRunPropertiesCommandInput extends GetWorkflowRunPropertiesRequest { } /** * @public * * The output of {@link GetWorkflowRunPropertiesCommand}. */ export interface GetWorkflowRunPropertiesCommandOutput extends GetWorkflowRunPropertiesResponse, __MetadataBearer { } declare const GetWorkflowRunPropertiesCommand_base: { new (input: GetWorkflowRunPropertiesCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetWorkflowRunPropertiesCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): { [x: string]: unknown; }; }; /** *

Retrieves the workflow run properties which were set during the run.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, GetWorkflowRunPropertiesCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, GetWorkflowRunPropertiesCommand } = 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 = { // GetWorkflowRunPropertiesRequest * Name: "STRING_VALUE", // required * RunId: "STRING_VALUE", // required * }; * const command = new GetWorkflowRunPropertiesCommand(input); * const response = await client.send(command); * // { // GetWorkflowRunPropertiesResponse * // RunProperties: { // WorkflowRunProperties * // "": "STRING_VALUE", * // }, * // }; * * ``` * * @param GetWorkflowRunPropertiesCommandInput - {@link GetWorkflowRunPropertiesCommandInput} * @returns {@link GetWorkflowRunPropertiesCommandOutput} * @see {@link GetWorkflowRunPropertiesCommandInput} for command's `input` shape. * @see {@link GetWorkflowRunPropertiesCommandOutput} 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 GetWorkflowRunPropertiesCommand extends GetWorkflowRunPropertiesCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetWorkflowRunPropertiesRequest; output: GetWorkflowRunPropertiesResponse; }; sdk: { input: GetWorkflowRunPropertiesCommandInput; output: GetWorkflowRunPropertiesCommandOutput; }; }; }