import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource schema for AWS::ImageBuilder::Workflow */ export declare function getWorkflow(args: GetWorkflowArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetWorkflowArgs { /** * The Amazon Resource Name (ARN) of the workflow. */ arn: string; } export interface GetWorkflowResult { /** * The Amazon Resource Name (ARN) of the workflow. */ readonly arn?: string; /** * The latest version references of the workflow. */ readonly latestVersion?: outputs.imagebuilder.WorkflowLatestVersion; /** * The tags associated with the workflow. */ readonly tags?: { [key: string]: string; }; } /** * Resource schema for AWS::ImageBuilder::Workflow */ export declare function getWorkflowOutput(args: GetWorkflowOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetWorkflowOutputArgs { /** * The Amazon Resource Name (ARN) of the workflow. */ arn: pulumi.Input; }