UNPKG

@pulumi/aws-native

Version:

The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)

39 lines (38 loc) 1.13 kB
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<GetWorkflowResult>; 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<GetWorkflowResult>; export interface GetWorkflowOutputArgs { /** * The Amazon Resource Name (ARN) of the workflow. */ arn: pulumi.Input<string>; }