@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)
34 lines (33 loc) • 947 B
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* 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 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>;
}