@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.2 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Resource Type Definition for ContactFlowVersion
*/
export declare function getContactFlowVersion(args: GetContactFlowVersionArgs, opts?: pulumi.InvokeOptions): Promise<GetContactFlowVersionResult>;
export interface GetContactFlowVersionArgs {
/**
* The identifier of the contact flow version (ARN).
*/
contactFlowVersionArn: string;
}
export interface GetContactFlowVersionResult {
/**
* The identifier of the contact flow version (ARN).
*/
readonly contactFlowVersionArn?: string;
/**
* Indicates the checksum value of the latest published flow content
*/
readonly flowContentSha256?: string;
/**
* The version number of this revision
*/
readonly version?: number;
}
/**
* Resource Type Definition for ContactFlowVersion
*/
export declare function getContactFlowVersionOutput(args: GetContactFlowVersionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetContactFlowVersionResult>;
export interface GetContactFlowVersionOutputArgs {
/**
* The identifier of the contact flow version (ARN).
*/
contactFlowVersionArn: pulumi.Input<string>;
}