interface CfnRoutingProfileMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnRoutingProfileMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnRoutingProfileMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnRoutingProfileMixinProps |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnRoutingProfileMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnRoutingProfileMixinProps |
Properties for CfnRoutingProfilePropsMixin.
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 cfnRoutingProfileMixinProps: connect_mixins.CfnRoutingProfileMixinProps = {
agentAvailabilityTimer: 'agentAvailabilityTimer',
defaultOutboundQueueArn: 'defaultOutboundQueueArn',
description: 'description',
instanceArn: 'instanceArn',
manualAssignmentQueueConfigs: [{
queueReference: {
channel: 'channel',
queueArn: 'queueArn',
},
}],
mediaConcurrencies: [{
channel: 'channel',
concurrency: 123,
crossChannelBehavior: {
behaviorType: 'behaviorType',
},
}],
name: 'name',
queueConfigs: [{
delay: 123,
priority: 123,
queueReference: {
channel: 'channel',
queueArn: 'queueArn',
},
}],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| agent | string | Whether agents with this routing profile will have their routing order calculated based on time since their last inbound contact or longest idle time . |
| default | string | The Amazon Resource Name (ARN) of the default outbound queue for the routing profile. |
| description? | string | The description of the routing profile. |
| instance | string | The identifier of the Amazon Connect instance. |
| manual | IResolvable | (IResolvable | Routing)[] | Contains information about the queue and channel for manual assignment behaviour can be enabled. |
| media | IResolvable | (IResolvable | Media)[] | The channels agents can handle in the Contact Control Panel (CCP) for this routing profile. |
| name? | string | The name of the routing profile. |
| queue | IResolvable | (IResolvable | Routing)[] | The inbound queues associated with the routing profile. |
| tags? | Cfn[] | The tags used to organize, track, or control access for this resource. |
agentAvailabilityTimer?
Type:
string
(optional)
Whether agents with this routing profile will have their routing order calculated based on time since their last inbound contact or longest idle time .
defaultOutboundQueueArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the default outbound queue for the routing profile.
description?
Type:
string
(optional)
The description of the routing profile.
instanceArn?
Type:
string
(optional)
The identifier of the Amazon Connect instance.
manualAssignmentQueueConfigs?
Type:
IResolvable | (IResolvable | Routing)[]
(optional)
Contains information about the queue and channel for manual assignment behaviour can be enabled.
mediaConcurrencies?
Type:
IResolvable | (IResolvable | Media)[]
(optional)
The channels agents can handle in the Contact Control Panel (CCP) for this routing profile.
name?
Type:
string
(optional)
The name of the routing profile.
queueConfigs?
Type:
IResolvable | (IResolvable | Routing)[]
(optional)
The inbound queues associated with the routing profile.
If no queue is added, the agent can make only outbound calls.
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