import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Resource Type definition for AWS::Connect::Queue */ export declare class Queue extends pulumi.CustomResource { /** * Get an existing Queue resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): Queue; /** * Returns true if the given object is an instance of Queue. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Queue; /** * The email addresses that agents can use when replying to or initiating email contacts */ readonly additionalEmailAddresses: pulumi.Output; /** * The description of the queue. */ readonly description: pulumi.Output; /** * The identifier for the hours of operation. */ readonly hoursOfOperationArn: pulumi.Output; /** * The identifier of the Amazon Connect instance. */ readonly instanceArn: pulumi.Output; /** * The maximum number of contacts that can be in the queue before it is considered full. */ readonly maxContacts: pulumi.Output; /** * The name of the queue. */ readonly name: pulumi.Output; /** * The outbound caller ID name, number, and outbound whisper flow. */ readonly outboundCallerConfig: pulumi.Output; /** * The outbound email address ID. */ readonly outboundEmailConfig: pulumi.Output; /** * The Amazon Resource Name (ARN) for the queue. */ readonly queueArn: pulumi.Output; /** * The quick connects available to agents who are working the queue. */ readonly quickConnectArns: pulumi.Output; /** * The status of the queue. */ readonly status: pulumi.Output; /** * An array of key-value pairs to apply to this resource. */ readonly tags: pulumi.Output; /** * The type of queue. */ readonly type: pulumi.Output; /** * Create a Queue resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: QueueArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Queue resource. */ export interface QueueArgs { /** * The email addresses that agents can use when replying to or initiating email contacts */ additionalEmailAddresses?: pulumi.Input[]>; /** * The description of the queue. */ description?: pulumi.Input; /** * The identifier for the hours of operation. */ hoursOfOperationArn: pulumi.Input; /** * The identifier of the Amazon Connect instance. */ instanceArn: pulumi.Input; /** * The maximum number of contacts that can be in the queue before it is considered full. */ maxContacts?: pulumi.Input; /** * The name of the queue. */ name?: pulumi.Input; /** * The outbound caller ID name, number, and outbound whisper flow. */ outboundCallerConfig?: pulumi.Input; /** * The outbound email address ID. */ outboundEmailConfig?: pulumi.Input; /** * The quick connects available to agents who are working the queue. */ quickConnectArns?: pulumi.Input[]>; /** * The status of the queue. */ status?: pulumi.Input; /** * An array of key-value pairs to apply to this resource. */ tags?: pulumi.Input[]>; }