@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)
65 lines (64 loc) • 2.04 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Resource Type definition for AWS::Connect::ContactFlowModule.
*/
export declare function getContactFlowModule(args: GetContactFlowModuleArgs, opts?: pulumi.InvokeOptions): Promise<GetContactFlowModuleResult>;
export interface GetContactFlowModuleArgs {
/**
* The identifier of the contact flow module (ARN).
*/
contactFlowModuleArn: string;
}
export interface GetContactFlowModuleResult {
/**
* The identifier of the contact flow module (ARN).
*/
readonly contactFlowModuleArn?: string;
/**
* The content of the contact flow module in JSON format.
*/
readonly content?: string;
/**
* The description of the contact flow module.
*/
readonly description?: string;
/**
* Defines the external invocation configuration of the flow module resource
*/
readonly externalInvocationConfiguration?: outputs.connect.ExternalInvocationConfigurationProperties;
/**
* The identifier of the Amazon Connect instance (ARN).
*/
readonly instanceArn?: string;
/**
* The name of the contact flow module.
*/
readonly name?: string;
/**
* The schema of the settings for contact flow module in JSON Schema V4 format.
*/
readonly settings?: string;
/**
* The state of the contact flow module.
*/
readonly state?: string;
/**
* The status of the contact flow module.
*/
readonly status?: string;
/**
* One or more tags.
*/
readonly tags?: outputs.Tag[];
}
/**
* Resource Type definition for AWS::Connect::ContactFlowModule.
*/
export declare function getContactFlowModuleOutput(args: GetContactFlowModuleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetContactFlowModuleResult>;
export interface GetContactFlowModuleOutputArgs {
/**
* The identifier of the contact flow module (ARN).
*/
contactFlowModuleArn: pulumi.Input<string>;
}