import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getQueueConsumer(args: GetQueueConsumerArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getQueueConsumer. */ export interface GetQueueConsumerArgs { accountId: string; queueId: string; } /** * A collection of values returned by getQueueConsumer. */ export interface GetQueueConsumerResult { readonly accountId: string; readonly consumerId: string; readonly createdOn: string; readonly deadLetterQueue: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly queueId: string; readonly queueName: string; readonly scriptName: string; readonly settings: outputs.GetQueueConsumerSettings; readonly type: string; } export declare function getQueueConsumerOutput(args: GetQueueConsumerOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getQueueConsumer. */ export interface GetQueueConsumerOutputArgs { accountId: pulumi.Input; queueId: pulumi.Input; } //# sourceMappingURL=getQueueConsumer.d.ts.map