interface RoutingProfileQueueReferenceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnRoutingProfilePropsMixin.RoutingProfileQueueReferenceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnRoutingProfilePropsMixin_RoutingProfileQueueReferenceProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnRoutingProfilePropsMixin.RoutingProfileQueueReferenceProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnRoutingProfilePropsMixin.RoutingProfileQueueReferenceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnRoutingProfilePropsMixin » RoutingProfileQueueReferenceProperty |
Contains the channel and queue identifier for a routing profile.
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 routingProfileQueueReferenceProperty: connect_mixins.CfnRoutingProfilePropsMixin.RoutingProfileQueueReferenceProperty = {
channel: 'channel',
queueArn: 'queueArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| channel? | string | The channels agents can handle in the Contact Control Panel (CCP) for this routing profile. |
| queue | string | The Amazon Resource Name (ARN) of the queue. |
channel?
Type:
string
(optional)
The channels agents can handle in the Contact Control Panel (CCP) for this routing profile.
queueArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the queue.

.NET
Go
Java
Python
TypeScript