AWS Classic v5.41.0, May 15 23
AWS Classic v5.41.0, May 15 23
aws.connect.Queue
Explore with Pulumi AI
Provides an Amazon Connect Queue resource. For more information see Amazon Connect: Getting Started
NOTE: Due to The behaviour of Amazon Connect you cannot delete queues.
Example Usage
Basic
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var test = new Aws.Connect.Queue("test", new()
{
Description = "Example Description",
HoursOfOperationId = "12345678-1234-1234-1234-123456789012",
InstanceId = "aaaaaaaa-bbbb-cccc-dddd-111111111111",
Tags =
{
{ "Name", "Example Queue" },
},
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/connect"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := connect.NewQueue(ctx, "test", &connect.QueueArgs{
Description: pulumi.String("Example Description"),
HoursOfOperationId: pulumi.String("12345678-1234-1234-1234-123456789012"),
InstanceId: pulumi.String("aaaaaaaa-bbbb-cccc-dddd-111111111111"),
Tags: pulumi.StringMap{
"Name": pulumi.String("Example Queue"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.connect.Queue;
import com.pulumi.aws.connect.QueueArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var test = new Queue("test", QueueArgs.builder()
.description("Example Description")
.hoursOfOperationId("12345678-1234-1234-1234-123456789012")
.instanceId("aaaaaaaa-bbbb-cccc-dddd-111111111111")
.tags(Map.of("Name", "Example Queue"))
.build());
}
}
import pulumi
import pulumi_aws as aws
test = aws.connect.Queue("test",
description="Example Description",
hours_of_operation_id="12345678-1234-1234-1234-123456789012",
instance_id="aaaaaaaa-bbbb-cccc-dddd-111111111111",
tags={
"Name": "Example Queue",
})
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const test = new aws.connect.Queue("test", {
description: "Example Description",
hoursOfOperationId: "12345678-1234-1234-1234-123456789012",
instanceId: "aaaaaaaa-bbbb-cccc-dddd-111111111111",
tags: {
Name: "Example Queue",
},
});
resources:
test:
type: aws:connect:Queue
properties:
description: Example Description
hoursOfOperationId: 12345678-1234-1234-1234-123456789012
instanceId: aaaaaaaa-bbbb-cccc-dddd-111111111111
tags:
Name: Example Queue
With Quick Connect IDs
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var test = new Aws.Connect.Queue("test", new()
{
Description = "Example Description",
HoursOfOperationId = "12345678-1234-1234-1234-123456789012",
InstanceId = "aaaaaaaa-bbbb-cccc-dddd-111111111111",
QuickConnectIds = new[]
{
"12345678-abcd-1234-abcd-123456789012",
},
Tags =
{
{ "Name", "Example Queue with Quick Connect IDs" },
},
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/connect"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := connect.NewQueue(ctx, "test", &connect.QueueArgs{
Description: pulumi.String("Example Description"),
HoursOfOperationId: pulumi.String("12345678-1234-1234-1234-123456789012"),
InstanceId: pulumi.String("aaaaaaaa-bbbb-cccc-dddd-111111111111"),
QuickConnectIds: pulumi.StringArray{
pulumi.String("12345678-abcd-1234-abcd-123456789012"),
},
Tags: pulumi.StringMap{
"Name": pulumi.String("Example Queue with Quick Connect IDs"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.connect.Queue;
import com.pulumi.aws.connect.QueueArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var test = new Queue("test", QueueArgs.builder()
.description("Example Description")
.hoursOfOperationId("12345678-1234-1234-1234-123456789012")
.instanceId("aaaaaaaa-bbbb-cccc-dddd-111111111111")
.quickConnectIds("12345678-abcd-1234-abcd-123456789012")
.tags(Map.of("Name", "Example Queue with Quick Connect IDs"))
.build());
}
}
import pulumi
import pulumi_aws as aws
test = aws.connect.Queue("test",
description="Example Description",
hours_of_operation_id="12345678-1234-1234-1234-123456789012",
instance_id="aaaaaaaa-bbbb-cccc-dddd-111111111111",
quick_connect_ids=["12345678-abcd-1234-abcd-123456789012"],
tags={
"Name": "Example Queue with Quick Connect IDs",
})
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const test = new aws.connect.Queue("test", {
description: "Example Description",
hoursOfOperationId: "12345678-1234-1234-1234-123456789012",
instanceId: "aaaaaaaa-bbbb-cccc-dddd-111111111111",
quickConnectIds: ["12345678-abcd-1234-abcd-123456789012"],
tags: {
Name: "Example Queue with Quick Connect IDs",
},
});
resources:
test:
type: aws:connect:Queue
properties:
description: Example Description
hoursOfOperationId: 12345678-1234-1234-1234-123456789012
instanceId: aaaaaaaa-bbbb-cccc-dddd-111111111111
quickConnectIds:
- 12345678-abcd-1234-abcd-123456789012
tags:
Name: Example Queue with Quick Connect IDs
With Outbound Caller Config
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var test = new Aws.Connect.Queue("test", new()
{
Description = "Example Description",
HoursOfOperationId = "12345678-1234-1234-1234-123456789012",
InstanceId = "aaaaaaaa-bbbb-cccc-dddd-111111111111",
OutboundCallerConfig = new Aws.Connect.Inputs.QueueOutboundCallerConfigArgs
{
OutboundCallerIdName = "example",
OutboundCallerIdNumberId = "12345678-abcd-1234-abcd-123456789012",
OutboundFlowId = "87654321-defg-1234-defg-987654321234",
},
Tags =
{
{ "Name", "Example Queue with Outbound Caller Config" },
},
});
});
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v5/go/aws/connect"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := connect.NewQueue(ctx, "test", &connect.QueueArgs{
Description: pulumi.String("Example Description"),
HoursOfOperationId: pulumi.String("12345678-1234-1234-1234-123456789012"),
InstanceId: pulumi.String("aaaaaaaa-bbbb-cccc-dddd-111111111111"),
OutboundCallerConfig: &connect.QueueOutboundCallerConfigArgs{
OutboundCallerIdName: pulumi.String("example"),
OutboundCallerIdNumberId: pulumi.String("12345678-abcd-1234-abcd-123456789012"),
OutboundFlowId: pulumi.String("87654321-defg-1234-defg-987654321234"),
},
Tags: pulumi.StringMap{
"Name": pulumi.String("Example Queue with Outbound Caller Config"),
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.connect.Queue;
import com.pulumi.aws.connect.QueueArgs;
import com.pulumi.aws.connect.inputs.QueueOutboundCallerConfigArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var test = new Queue("test", QueueArgs.builder()
.description("Example Description")
.hoursOfOperationId("12345678-1234-1234-1234-123456789012")
.instanceId("aaaaaaaa-bbbb-cccc-dddd-111111111111")
.outboundCallerConfig(QueueOutboundCallerConfigArgs.builder()
.outboundCallerIdName("example")
.outboundCallerIdNumberId("12345678-abcd-1234-abcd-123456789012")
.outboundFlowId("87654321-defg-1234-defg-987654321234")
.build())
.tags(Map.of("Name", "Example Queue with Outbound Caller Config"))
.build());
}
}
import pulumi
import pulumi_aws as aws
test = aws.connect.Queue("test",
description="Example Description",
hours_of_operation_id="12345678-1234-1234-1234-123456789012",
instance_id="aaaaaaaa-bbbb-cccc-dddd-111111111111",
outbound_caller_config=aws.connect.QueueOutboundCallerConfigArgs(
outbound_caller_id_name="example",
outbound_caller_id_number_id="12345678-abcd-1234-abcd-123456789012",
outbound_flow_id="87654321-defg-1234-defg-987654321234",
),
tags={
"Name": "Example Queue with Outbound Caller Config",
})
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const test = new aws.connect.Queue("test", {
description: "Example Description",
hoursOfOperationId: "12345678-1234-1234-1234-123456789012",
instanceId: "aaaaaaaa-bbbb-cccc-dddd-111111111111",
outboundCallerConfig: {
outboundCallerIdName: "example",
outboundCallerIdNumberId: "12345678-abcd-1234-abcd-123456789012",
outboundFlowId: "87654321-defg-1234-defg-987654321234",
},
tags: {
Name: "Example Queue with Outbound Caller Config",
},
});
resources:
test:
type: aws:connect:Queue
properties:
description: Example Description
hoursOfOperationId: 12345678-1234-1234-1234-123456789012
instanceId: aaaaaaaa-bbbb-cccc-dddd-111111111111
outboundCallerConfig:
outboundCallerIdName: example
outboundCallerIdNumberId: 12345678-abcd-1234-abcd-123456789012
outboundFlowId: 87654321-defg-1234-defg-987654321234
tags:
Name: Example Queue with Outbound Caller Config
Create Queue Resource
new Queue(name: string, args: QueueArgs, opts?: CustomResourceOptions);
@overload
def Queue(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
hours_of_operation_id: Optional[str] = None,
instance_id: Optional[str] = None,
max_contacts: Optional[int] = None,
name: Optional[str] = None,
outbound_caller_config: Optional[QueueOutboundCallerConfigArgs] = None,
quick_connect_ids: Optional[Sequence[str]] = None,
status: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
@overload
def Queue(resource_name: str,
args: QueueArgs,
opts: Optional[ResourceOptions] = None)
func NewQueue(ctx *Context, name string, args QueueArgs, opts ...ResourceOption) (*Queue, error)
public Queue(string name, QueueArgs args, CustomResourceOptions? opts = null)
type: aws:connect:Queue
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args QueueArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args QueueArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args QueueArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args QueueArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args QueueArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Queue Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Queue resource accepts the following input properties:
- Hours
Of stringOperation Id Specifies the identifier of the Hours of Operation.
- Instance
Id string Specifies the identifier of the hosting Amazon Connect Instance.
- Description string
Specifies the description of the Queue.
- Max
Contacts int Specifies the maximum number of contacts that can be in the queue before it is considered full. Minimum value of 0.
- Name string
Specifies the name of the Queue.
- Outbound
Caller QueueConfig Outbound Caller Config Args A block that defines the outbound caller ID name, number, and outbound whisper flow. The Outbound Caller Config block is documented below.
- Quick
Connect List<string>Ids Specifies a list of quick connects ids that determine the quick connects available to agents who are working the queue.
- Status string
Specifies the description of the Queue. Valid values are
ENABLED
,DISABLED
.- Dictionary<string, string>
Tags to apply to the Queue. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- Hours
Of stringOperation Id Specifies the identifier of the Hours of Operation.
- Instance
Id string Specifies the identifier of the hosting Amazon Connect Instance.
- Description string
Specifies the description of the Queue.
- Max
Contacts int Specifies the maximum number of contacts that can be in the queue before it is considered full. Minimum value of 0.
- Name string
Specifies the name of the Queue.
- Outbound
Caller QueueConfig Outbound Caller Config Args A block that defines the outbound caller ID name, number, and outbound whisper flow. The Outbound Caller Config block is documented below.
- Quick
Connect []stringIds Specifies a list of quick connects ids that determine the quick connects available to agents who are working the queue.
- Status string
Specifies the description of the Queue. Valid values are
ENABLED
,DISABLED
.- map[string]string
Tags to apply to the Queue. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- hours
Of StringOperation Id Specifies the identifier of the Hours of Operation.
- instance
Id String Specifies the identifier of the hosting Amazon Connect Instance.
- description String
Specifies the description of the Queue.
- max
Contacts Integer Specifies the maximum number of contacts that can be in the queue before it is considered full. Minimum value of 0.
- name String
Specifies the name of the Queue.
- outbound
Caller QueueConfig Outbound Caller Config Args A block that defines the outbound caller ID name, number, and outbound whisper flow. The Outbound Caller Config block is documented below.
- quick
Connect List<String>Ids Specifies a list of quick connects ids that determine the quick connects available to agents who are working the queue.
- status String
Specifies the description of the Queue. Valid values are
ENABLED
,DISABLED
.- Map<String,String>
Tags to apply to the Queue. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- hours
Of stringOperation Id Specifies the identifier of the Hours of Operation.
- instance
Id string Specifies the identifier of the hosting Amazon Connect Instance.
- description string
Specifies the description of the Queue.
- max
Contacts number Specifies the maximum number of contacts that can be in the queue before it is considered full. Minimum value of 0.
- name string
Specifies the name of the Queue.
- outbound
Caller QueueConfig Outbound Caller Config Args A block that defines the outbound caller ID name, number, and outbound whisper flow. The Outbound Caller Config block is documented below.
- quick
Connect string[]Ids Specifies a list of quick connects ids that determine the quick connects available to agents who are working the queue.
- status string
Specifies the description of the Queue. Valid values are
ENABLED
,DISABLED
.- {[key: string]: string}
Tags to apply to the Queue. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- hours_
of_ stroperation_ id Specifies the identifier of the Hours of Operation.
- instance_
id str Specifies the identifier of the hosting Amazon Connect Instance.
- description str
Specifies the description of the Queue.
- max_
contacts int Specifies the maximum number of contacts that can be in the queue before it is considered full. Minimum value of 0.
- name str
Specifies the name of the Queue.
- outbound_
caller_ Queueconfig Outbound Caller Config Args A block that defines the outbound caller ID name, number, and outbound whisper flow. The Outbound Caller Config block is documented below.
- quick_
connect_ Sequence[str]ids Specifies a list of quick connects ids that determine the quick connects available to agents who are working the queue.
- status str
Specifies the description of the Queue. Valid values are
ENABLED
,DISABLED
.- Mapping[str, str]
Tags to apply to the Queue. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
- hours
Of StringOperation Id Specifies the identifier of the Hours of Operation.
- instance
Id String Specifies the identifier of the hosting Amazon Connect Instance.
- description String
Specifies the description of the Queue.
- max
Contacts Number Specifies the maximum number of contacts that can be in the queue before it is considered full. Minimum value of 0.
- name String
Specifies the name of the Queue.
- outbound
Caller Property MapConfig A block that defines the outbound caller ID name, number, and outbound whisper flow. The Outbound Caller Config block is documented below.
- quick
Connect List<String>Ids Specifies a list of quick connects ids that determine the quick connects available to agents who are working the queue.
- status String
Specifies the description of the Queue. Valid values are
ENABLED
,DISABLED
.- Map<String>
Tags to apply to the Queue. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.
Outputs
All input properties are implicitly available as output properties. Additionally, the Queue resource produces the following output properties:
- Arn string
The Amazon Resource Name (ARN) of the Queue.
- Id string
The provider-assigned unique ID for this managed resource.
- Queue
Id string The identifier for the Queue.
- Quick
Connect List<string>Ids Associateds Use the quick_connect_ids instead
- Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Arn string
The Amazon Resource Name (ARN) of the Queue.
- Id string
The provider-assigned unique ID for this managed resource.
- Queue
Id string The identifier for the Queue.
- Quick
Connect []stringIds Associateds Use the quick_connect_ids instead
- map[string]string
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
The Amazon Resource Name (ARN) of the Queue.
- id String
The provider-assigned unique ID for this managed resource.
- queue
Id String The identifier for the Queue.
- quick
Connect List<String>Ids Associateds Use the quick_connect_ids instead
- Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn string
The Amazon Resource Name (ARN) of the Queue.
- id string
The provider-assigned unique ID for this managed resource.
- queue
Id string The identifier for the Queue.
- quick
Connect string[]Ids Associateds Use the quick_connect_ids instead
- {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn str
The Amazon Resource Name (ARN) of the Queue.
- id str
The provider-assigned unique ID for this managed resource.
- queue_
id str The identifier for the Queue.
- quick_
connect_ Sequence[str]ids_ associateds Use the quick_connect_ids instead
- Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
The Amazon Resource Name (ARN) of the Queue.
- id String
The provider-assigned unique ID for this managed resource.
- queue
Id String The identifier for the Queue.
- quick
Connect List<String>Ids Associateds Use the quick_connect_ids instead
- Map<String>
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Look up Existing Queue Resource
Get an existing Queue resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: QueueState, opts?: CustomResourceOptions): Queue
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
description: Optional[str] = None,
hours_of_operation_id: Optional[str] = None,
instance_id: Optional[str] = None,
max_contacts: Optional[int] = None,
name: Optional[str] = None,
outbound_caller_config: Optional[QueueOutboundCallerConfigArgs] = None,
queue_id: Optional[str] = None,
quick_connect_ids: Optional[Sequence[str]] = None,
quick_connect_ids_associateds: Optional[Sequence[str]] = None,
status: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None) -> Queue
func GetQueue(ctx *Context, name string, id IDInput, state *QueueState, opts ...ResourceOption) (*Queue, error)
public static Queue Get(string name, Input<string> id, QueueState? state, CustomResourceOptions? opts = null)
public static Queue get(String name, Output<String> id, QueueState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
The Amazon Resource Name (ARN) of the Queue.
- Description string
Specifies the description of the Queue.
- Hours
Of stringOperation Id Specifies the identifier of the Hours of Operation.
- Instance
Id string Specifies the identifier of the hosting Amazon Connect Instance.
- Max
Contacts int Specifies the maximum number of contacts that can be in the queue before it is considered full. Minimum value of 0.
- Name string
Specifies the name of the Queue.
- Outbound
Caller QueueConfig Outbound Caller Config Args A block that defines the outbound caller ID name, number, and outbound whisper flow. The Outbound Caller Config block is documented below.
- Queue
Id string The identifier for the Queue.
- Quick
Connect List<string>Ids Specifies a list of quick connects ids that determine the quick connects available to agents who are working the queue.
- Quick
Connect List<string>Ids Associateds Use the quick_connect_ids instead
- Status string
Specifies the description of the Queue. Valid values are
ENABLED
,DISABLED
.- Dictionary<string, string>
Tags to apply to the Queue. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Arn string
The Amazon Resource Name (ARN) of the Queue.
- Description string
Specifies the description of the Queue.
- Hours
Of stringOperation Id Specifies the identifier of the Hours of Operation.
- Instance
Id string Specifies the identifier of the hosting Amazon Connect Instance.
- Max
Contacts int Specifies the maximum number of contacts that can be in the queue before it is considered full. Minimum value of 0.
- Name string
Specifies the name of the Queue.
- Outbound
Caller QueueConfig Outbound Caller Config Args A block that defines the outbound caller ID name, number, and outbound whisper flow. The Outbound Caller Config block is documented below.
- Queue
Id string The identifier for the Queue.
- Quick
Connect []stringIds Specifies a list of quick connects ids that determine the quick connects available to agents who are working the queue.
- Quick
Connect []stringIds Associateds Use the quick_connect_ids instead
- Status string
Specifies the description of the Queue. Valid values are
ENABLED
,DISABLED
.- map[string]string
Tags to apply to the Queue. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- map[string]string
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
The Amazon Resource Name (ARN) of the Queue.
- description String
Specifies the description of the Queue.
- hours
Of StringOperation Id Specifies the identifier of the Hours of Operation.
- instance
Id String Specifies the identifier of the hosting Amazon Connect Instance.
- max
Contacts Integer Specifies the maximum number of contacts that can be in the queue before it is considered full. Minimum value of 0.
- name String
Specifies the name of the Queue.
- outbound
Caller QueueConfig Outbound Caller Config Args A block that defines the outbound caller ID name, number, and outbound whisper flow. The Outbound Caller Config block is documented below.
- queue
Id String The identifier for the Queue.
- quick
Connect List<String>Ids Specifies a list of quick connects ids that determine the quick connects available to agents who are working the queue.
- quick
Connect List<String>Ids Associateds Use the quick_connect_ids instead
- status String
Specifies the description of the Queue. Valid values are
ENABLED
,DISABLED
.- Map<String,String>
Tags to apply to the Queue. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn string
The Amazon Resource Name (ARN) of the Queue.
- description string
Specifies the description of the Queue.
- hours
Of stringOperation Id Specifies the identifier of the Hours of Operation.
- instance
Id string Specifies the identifier of the hosting Amazon Connect Instance.
- max
Contacts number Specifies the maximum number of contacts that can be in the queue before it is considered full. Minimum value of 0.
- name string
Specifies the name of the Queue.
- outbound
Caller QueueConfig Outbound Caller Config Args A block that defines the outbound caller ID name, number, and outbound whisper flow. The Outbound Caller Config block is documented below.
- queue
Id string The identifier for the Queue.
- quick
Connect string[]Ids Specifies a list of quick connects ids that determine the quick connects available to agents who are working the queue.
- quick
Connect string[]Ids Associateds Use the quick_connect_ids instead
- status string
Specifies the description of the Queue. Valid values are
ENABLED
,DISABLED
.- {[key: string]: string}
Tags to apply to the Queue. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn str
The Amazon Resource Name (ARN) of the Queue.
- description str
Specifies the description of the Queue.
- hours_
of_ stroperation_ id Specifies the identifier of the Hours of Operation.
- instance_
id str Specifies the identifier of the hosting Amazon Connect Instance.
- max_
contacts int Specifies the maximum number of contacts that can be in the queue before it is considered full. Minimum value of 0.
- name str
Specifies the name of the Queue.
- outbound_
caller_ Queueconfig Outbound Caller Config Args A block that defines the outbound caller ID name, number, and outbound whisper flow. The Outbound Caller Config block is documented below.
- queue_
id str The identifier for the Queue.
- quick_
connect_ Sequence[str]ids Specifies a list of quick connects ids that determine the quick connects available to agents who are working the queue.
- quick_
connect_ Sequence[str]ids_ associateds Use the quick_connect_ids instead
- status str
Specifies the description of the Queue. Valid values are
ENABLED
,DISABLED
.- Mapping[str, str]
Tags to apply to the Queue. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
The Amazon Resource Name (ARN) of the Queue.
- description String
Specifies the description of the Queue.
- hours
Of StringOperation Id Specifies the identifier of the Hours of Operation.
- instance
Id String Specifies the identifier of the hosting Amazon Connect Instance.
- max
Contacts Number Specifies the maximum number of contacts that can be in the queue before it is considered full. Minimum value of 0.
- name String
Specifies the name of the Queue.
- outbound
Caller Property MapConfig A block that defines the outbound caller ID name, number, and outbound whisper flow. The Outbound Caller Config block is documented below.
- queue
Id String The identifier for the Queue.
- quick
Connect List<String>Ids Specifies a list of quick connects ids that determine the quick connects available to agents who are working the queue.
- quick
Connect List<String>Ids Associateds Use the quick_connect_ids instead
- status String
Specifies the description of the Queue. Valid values are
ENABLED
,DISABLED
.- Map<String>
Tags to apply to the Queue. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level.- Map<String>
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Supporting Types
QueueOutboundCallerConfig
- Outbound
Caller stringId Name Specifies the caller ID name.
- Outbound
Caller stringId Number Id Specifies the caller ID number.
- Outbound
Flow stringId Specifies outbound whisper flow to be used during an outbound call.
- Outbound
Caller stringId Name Specifies the caller ID name.
- Outbound
Caller stringId Number Id Specifies the caller ID number.
- Outbound
Flow stringId Specifies outbound whisper flow to be used during an outbound call.
- outbound
Caller StringId Name Specifies the caller ID name.
- outbound
Caller StringId Number Id Specifies the caller ID number.
- outbound
Flow StringId Specifies outbound whisper flow to be used during an outbound call.
- outbound
Caller stringId Name Specifies the caller ID name.
- outbound
Caller stringId Number Id Specifies the caller ID number.
- outbound
Flow stringId Specifies outbound whisper flow to be used during an outbound call.
- outbound_
caller_ strid_ name Specifies the caller ID name.
- outbound_
caller_ strid_ number_ id Specifies the caller ID number.
- outbound_
flow_ strid Specifies outbound whisper flow to be used during an outbound call.
- outbound
Caller StringId Name Specifies the caller ID name.
- outbound
Caller StringId Number Id Specifies the caller ID number.
- outbound
Flow StringId Specifies outbound whisper flow to be used during an outbound call.
Import
Amazon Connect Queues can be imported using the instance_id
and queue_id
separated by a colon (:
), e.g.,
$ pulumi import aws:connect/queue:Queue example f1288a1f-6193-445a-b47e-af739b2:c1d4e5f6-1b3c-1b3c-1b3c-c1d4e5f6c1d4e5
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
aws
Terraform Provider.