interface CfnQueueMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnQueueMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnQueueMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnQueueMixinProps |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnQueueMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » 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 { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const cfnQueueMixinProps: connect_mixins.CfnQueueMixinProps = {
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 |
|---|---|---|
| description? | string | The description of the queue. |
| hours | string | The Amazon Resource Name (ARN) of the hours of operation. |
| instance | string | 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. |
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
(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