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)

51 lines (50 loc) 1.53 kB
import * as pulumi from "@pulumi/pulumi"; import * as enums from "../types/enums"; /** * Definition of AWS::Omics::WorkflowVersion Resource Type. */ export declare function getWorkflowVersion(args: GetWorkflowVersionArgs, opts?: pulumi.InvokeOptions): Promise<GetWorkflowVersionResult>; export interface GetWorkflowVersionArgs { /** * ARN of the workflow version. */ arn: string; } export interface GetWorkflowVersionResult { /** * ARN of the workflow version. */ readonly arn?: string; /** * The creation time of the workflow version. */ readonly creationTime?: string; /** * The description of the workflow version. */ readonly description?: string; /** * The status of the workflow version. */ readonly status?: enums.omics.WorkflowVersionWorkflowStatus; readonly storageCapacity?: number; readonly storageType?: enums.omics.WorkflowVersionStorageType; readonly tags?: { [key: string]: string; }; /** * The type of the workflow version. */ readonly type?: enums.omics.WorkflowVersionWorkflowType; readonly uuid?: string; } /** * Definition of AWS::Omics::WorkflowVersion Resource Type. */ export declare function getWorkflowVersionOutput(args: GetWorkflowVersionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetWorkflowVersionResult>; export interface GetWorkflowVersionOutputArgs { /** * ARN of the workflow version. */ arn: pulumi.Input<string>; }