interface CfnQueueProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Connect.CfnQueueProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnQueueProps |
![]() | software.amazon.awscdk.services.connect.CfnQueueProps |
![]() | aws_cdk.aws_connect.CfnQueueProps |
![]() | aws-cdk-lib » aws_connect » CfnQueueProps |
Properties for defining a CfnQueue
.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-queue.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as connect } from 'aws-cdk-lib';
const cfnQueueProps: connect.CfnQueueProps = {
hoursOfOperationArn: 'hoursOfOperationArn',
instanceArn: 'instanceArn',
name: 'name',
// the properties below are optional
description: 'description',
maxContacts: 123,
outboundCallerConfig: {
outboundCallerIdName: 'outboundCallerIdName',
outboundCallerIdNumberArn: 'outboundCallerIdNumberArn',
outboundFlowArn: 'outboundFlowArn',
},
outboundEmailConfig: {
outboundEmailAddressId: 'outboundEmailAddressId',
},
quickConnectArns: ['quickConnectArns'],
status: 'status',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
Name | Type | Description |
---|---|---|
hours | string | The Amazon Resource Name (ARN) of the hours of operation. |
instance | string | The identifier of the Amazon Connect instance. |
name | string | The name of the queue. |
description? | string | The description of the queue. |
max | number | The maximum number of contacts that can be in the queue before it is considered full. |
outbound | IResolvable | Outbound | The outbound caller ID name, number, and outbound whisper flow. |
outbound | IResolvable | Outbound | The outbound email address ID for a specified queue. |
quick | string[] | The Amazon Resource Names (ARN) of the of the quick connects available to agents who are working the queue. |
status? | string | The status of the queue. |
tags? | Cfn [] | The tags used to organize, track, or control access for this resource. |
hoursOfOperationArn
Type:
string
The Amazon Resource Name (ARN) of the hours of operation.
instanceArn
Type:
string
The identifier of the Amazon Connect instance.
name
Type:
string
The name of the queue.
description?
Type:
string
(optional)
The description of the queue.
maxContacts?
Type:
number
(optional)
The maximum number of contacts that can be in the queue before it is considered full.
outboundCallerConfig?
Type:
IResolvable
|
Outbound
(optional)
The outbound caller ID name, number, and outbound whisper flow.
outboundEmailConfig?
Type:
IResolvable
|
Outbound
(optional)
The outbound email address ID for a specified queue.
quickConnectArns?
Type:
string[]
(optional)
The Amazon Resource Names (ARN) of the of the quick connects available to agents who are working the queue.
status?
Type:
string
(optional)
The status of the queue.
tags?
Type:
Cfn
[]
(optional)
The tags used to organize, track, or control access for this resource.
For example, { "Tags": {"key1":"value1", "key2":"value2"} }.