Class CfnUser.AutoAcceptConfigProperty
Auto-accept configuration per channel.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Connect
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnUser.AutoAcceptConfigProperty : CfnUser.IAutoAcceptConfigProperty
Syntax (vb)
Public Class CfnUser.AutoAcceptConfigProperty Implements CfnUser.IAutoAcceptConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Connect;
var autoAcceptConfigProperty = new AutoAcceptConfigProperty {
AutoAccept = false,
Channel = "channel",
// the properties below are optional
AgentFirstCallbackAutoAccept = false
};
Synopsis
Constructors
| AutoAcceptConfigProperty() | Auto-accept configuration per channel. |
Properties
| AgentFirstCallbackAutoAccept | The agent first callback auto accept setting. |
| AutoAccept | The Auto accept setting. |
| Channel | The channels that agents can handle in the Contact Control Panel (CCP). |
Constructors
AutoAcceptConfigProperty()
Auto-accept configuration per channel.
public AutoAcceptConfigProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Connect;
var autoAcceptConfigProperty = new AutoAcceptConfigProperty {
AutoAccept = false,
Channel = "channel",
// the properties below are optional
AgentFirstCallbackAutoAccept = false
};
Properties
AgentFirstCallbackAutoAccept
The agent first callback auto accept setting.
public object? AgentFirstCallbackAutoAccept { get; set; }
Property Value
Remarks
AutoAccept
The Auto accept setting.
public object AutoAccept { get; set; }
Property Value
Remarks
Channel
The channels that agents can handle in the Contact Control Panel (CCP).
public string Channel { get; set; }