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)

36 lines (35 loc) 1.31 kB
import * as pulumi from "@pulumi/pulumi"; /** * Resource Type definition for ContactFlowModuleVersion */ export declare function getContactFlowModuleVersion(args: GetContactFlowModuleVersionArgs, opts?: pulumi.InvokeOptions): Promise<GetContactFlowModuleVersionResult>; export interface GetContactFlowModuleVersionArgs { /** * The identifier of the contact flow module version (ARN). */ contactFlowModuleVersionArn: string; } export interface GetContactFlowModuleVersionResult { /** * The identifier of the contact flow module version (ARN). */ readonly contactFlowModuleVersionArn?: string; /** * Indicates the checksum value of the latest published flow module content */ readonly flowModuleContentSha256?: string; /** * The version number of this revision */ readonly version?: number; } /** * Resource Type definition for ContactFlowModuleVersion */ export declare function getContactFlowModuleVersionOutput(args: GetContactFlowModuleVersionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetContactFlowModuleVersionResult>; export interface GetContactFlowModuleVersionOutputArgs { /** * The identifier of the contact flow module version (ARN). */ contactFlowModuleVersionArn: pulumi.Input<string>; }