import type { MetadataBearer as __MetadataBearer } from "@smithy/types"; import type { GetWorkflowDefinitionRequest, GetWorkflowDefinitionResponse } from "../models/models_0"; /** * @public */ export type { __MetadataBearer }; /** * @public * * The input for {@link GetWorkflowDefinitionCommand}. */ export interface GetWorkflowDefinitionCommandInput extends GetWorkflowDefinitionRequest { } /** * @public * * The output of {@link GetWorkflowDefinitionCommand}. */ export interface GetWorkflowDefinitionCommandOutput extends GetWorkflowDefinitionResponse, __MetadataBearer { } declare const GetWorkflowDefinitionCommand_base: { new (input: GetWorkflowDefinitionCommandInput): import("@smithy/core/client").CommandImpl; new (input: GetWorkflowDefinitionCommandInput): import("@smithy/core/client").CommandImpl; getEndpointParameterInstructions(): import("@smithy/types").EndpointParameterInstructions; }; /** *

Retrieves the details and configuration of a specific workflow definition.

* @example * Use a bare-bones client and the command you need to make an API call. * ```javascript * import { NovaActClient, GetWorkflowDefinitionCommand } from "@aws-sdk/client-nova-act"; // ES Modules import * // const { NovaActClient, GetWorkflowDefinitionCommand } = require("@aws-sdk/client-nova-act"); // CommonJS import * // import type { NovaActClientConfig } from "@aws-sdk/client-nova-act"; * const config = {}; // type is NovaActClientConfig * const client = new NovaActClient(config); * const input = { // GetWorkflowDefinitionRequest * workflowDefinitionName: "STRING_VALUE", // required * }; * const command = new GetWorkflowDefinitionCommand(input); * const response = await client.send(command); * // { // GetWorkflowDefinitionResponse * // name: "STRING_VALUE", // required * // arn: "STRING_VALUE", // required * // createdAt: new Date("TIMESTAMP"), // required * // description: "STRING_VALUE", * // exportConfig: { // WorkflowExportConfig * // s3BucketName: "STRING_VALUE", // required * // s3KeyPrefix: "STRING_VALUE", * // }, * // status: "ACTIVE" || "DELETING", // required * // }; * * ``` * * @param GetWorkflowDefinitionCommandInput - {@link GetWorkflowDefinitionCommandInput} * @returns {@link GetWorkflowDefinitionCommandOutput} * @see {@link GetWorkflowDefinitionCommandInput} for command's `input` shape. * @see {@link GetWorkflowDefinitionCommandOutput} for command's `response` shape. * @see {@link NovaActClientResolvedConfig | config} for NovaActClient's `config` shape. * * @throws {@link AccessDeniedException} (client fault) *

You don't have sufficient permissions to perform this action.

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

An internal server error occurred. Please try again later.

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

The requested resource was not found.

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

The request was throttled due to too many requests. Please try again later.

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

The input parameters for the request are invalid.

* * @throws {@link NovaActServiceException} *

Base exception class for all service exceptions from NovaAct service.

* * * @public */ export declare class GetWorkflowDefinitionCommand extends GetWorkflowDefinitionCommand_base { /** @internal type navigation helper, not in runtime. */ protected static __types: { api: { input: GetWorkflowDefinitionRequest; output: GetWorkflowDefinitionResponse; }; sdk: { input: GetWorkflowDefinitionCommandInput; output: GetWorkflowDefinitionCommandOutput; }; }; }