interface AutoAcceptConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnUserPropsMixin.AutoAcceptConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnUserPropsMixin_AutoAcceptConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnUserPropsMixin.AutoAcceptConfigProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnUserPropsMixin.AutoAcceptConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnUserPropsMixin » AutoAcceptConfigProperty |
Auto-accept configuration per channel.
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 autoAcceptConfigProperty: connect_mixins.CfnUserPropsMixin.AutoAcceptConfigProperty = {
agentFirstCallbackAutoAccept: false,
autoAccept: false,
channel: 'channel',
};
Properties
| Name | Type | Description |
|---|---|---|
| agent | boolean | IResolvable | The agent first callback auto accept setting. |
| auto | boolean | IResolvable | The Auto accept setting. |
| channel? | string | The channels that agents can handle in the Contact Control Panel (CCP). |
agentFirstCallbackAutoAccept?
Type:
boolean | IResolvable
(optional)
The agent first callback auto accept setting.
autoAccept?
Type:
boolean | IResolvable
(optional)
The Auto accept setting.
channel?
Type:
string
(optional)
The channels that agents can handle in the Contact Control Panel (CCP).

.NET
Go
Java
Python
TypeScript