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

Transforms a Python script into a directed acyclic graph (DAG).

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { GlueClient, GetDataflowGraphCommand } from "@aws-sdk/client-glue"; // ES Modules import * // const { GlueClient, GetDataflowGraphCommand } = 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 = { // GetDataflowGraphRequest * PythonScript: "STRING_VALUE", * }; * const command = new GetDataflowGraphCommand(input); * const response = await client.send(command); * // { // GetDataflowGraphResponse * // DagNodes: [ // DagNodes * // { // CodeGenNode * // Id: "STRING_VALUE", // required * // NodeType: "STRING_VALUE", // required * // Args: [ // CodeGenNodeArgs // required * // { // CodeGenNodeArg * // Name: "STRING_VALUE", // required * // Value: "STRING_VALUE", // required * // Param: true || false, * // }, * // ], * // LineNumber: Number("int"), * // }, * // ], * // DagEdges: [ // DagEdges * // { // CodeGenEdge * // Source: "STRING_VALUE", // required * // Target: "STRING_VALUE", // required * // TargetParameter: "STRING_VALUE", * // }, * // ], * // }; * * ``` * * @param GetDataflowGraphCommandInput - {@link GetDataflowGraphCommandInput} * @returns {@link GetDataflowGraphCommandOutput} * @see {@link GetDataflowGraphCommandInput} for command's `input` shape. * @see {@link GetDataflowGraphCommandOutput} for command's `response` shape. * @see {@link GlueClientResolvedConfig | config} for GlueClient's `config` shape. * * @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 GetDataflowGraphCommand extends GetDataflowGraphCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetDataflowGraphRequest; output: GetDataflowGraphResponse; }; sdk: { input: GetDataflowGraphCommandInput; output: GetDataflowGraphCommandOutput; }; }; }