interface AfterContactWorkConfigPerChannelProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnUserPropsMixin.AfterContactWorkConfigPerChannelProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnUserPropsMixin_AfterContactWorkConfigPerChannelProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnUserPropsMixin.AfterContactWorkConfigPerChannelProperty |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnUserPropsMixin.AfterContactWorkConfigPerChannelProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » CfnUserPropsMixin » AfterContactWorkConfigPerChannelProperty |
After Contact Work configuration per channel.
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 afterContactWorkConfigPerChannelProperty: connect.CfnUserPropsMixin.AfterContactWorkConfigPerChannelProperty = {
afterContactWorkConfig: {
afterContactWorkTimeLimit: 123,
},
agentFirstCallbackAfterContactWorkConfig: {
afterContactWorkTimeLimit: 123,
},
channel: 'channel',
};
Properties
| Name | Type | Description |
|---|---|---|
| after | IResolvable | After | After Contact Work configuration. |
| agent | IResolvable | After | After Contact Work configuration. |
| channel? | string | The channels that agents can handle in the Contact Control Panel (CCP). |
afterContactWorkConfig?
Type:
IResolvable | After
(optional)
After Contact Work configuration.
agentFirstCallbackAfterContactWorkConfig?
Type:
IResolvable | After
(optional)
After Contact Work configuration.
channel?
Type:
string
(optional)
The channels that agents can handle in the Contact Control Panel (CCP).

.NET
Go
Java
Python
TypeScript