interface CfnQueueMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnQueueMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnQueueMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnQueueMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnQueueMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » CfnQueueMixinProps |
Properties for CfnQueuePropsMixin.
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/cfn-property-mixins';
const cfnQueueMixinProps: connect.CfnQueueMixinProps = {
additionalEmailAddresses: [{
emailAddressArn: 'emailAddressArn',
}],
description: 'description',
hoursOfOperationArn: 'hoursOfOperationArn',
instanceArn: 'instanceArn',
maxContacts: 123,
name: 'name',
outboundCallerConfig: {
outboundCallerIdName: 'outboundCallerIdName',
outboundCallerIdNumberArn: 'outboundCallerIdNumberArn',
outboundFlowArn: 'outboundFlowArn',
},
outboundEmailConfig: {
outboundEmailAddressId: 'outboundEmailAddressId',
},
quickConnectArns: ['quickConnectArns'],
status: 'status',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| additional | IResolvable | (IResolvable | Email)[] | The email addresses that agents can use when replying to or initiating email contacts. |
| description? | string | The description of the queue. |
| hours | string | The Amazon Resource Name (ARN) of the hours of operation. |
| instance | string | IInstance | The identifier of the Amazon Connect instance. |
| max | number | The maximum number of contacts that can be in the queue before it is considered full. |
| name? | string | The name of the queue. |
| 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. |
additionalEmailAddresses?
Type:
IResolvable | (IResolvable | Email)[]
(optional)
The email addresses that agents can use when replying to or initiating email contacts.
description?
Type:
string
(optional)
The description of the queue.
hoursOfOperationArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the hours of operation.
instanceArn?
Type:
string | IInstance
(optional)
The identifier of the Amazon Connect instance.
maxContacts?
Type:
number
(optional)
The maximum number of contacts that can be in the queue before it is considered full.
name?
Type:
string
(optional)
The name of the queue.
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"} }.

.NET
Go
Java
Python
TypeScript