Interface CfnUser.AutoAcceptConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUser.AutoAcceptConfigProperty.Jsii$Proxy
- Enclosing class:
CfnUser
@Stability(Stable)
public static interface CfnUser.AutoAcceptConfigProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.connect.*;
AutoAcceptConfigProperty autoAcceptConfigProperty = AutoAcceptConfigProperty.builder()
.autoAccept(false)
.channel("channel")
// the properties below are optional
.agentFirstCallbackAutoAccept(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUser.AutoAcceptConfigPropertystatic final classAn implementation forCfnUser.AutoAcceptConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAutoAccept
The Auto accept setting.Returns union: either
BooleanorIResolvable- See Also:
-
getChannel
The channels that agents can handle in the Contact Control Panel (CCP).- See Also:
-
getAgentFirstCallbackAutoAccept
The agent first callback auto accept setting.Returns union: either
BooleanorIResolvable- See Also:
-
builder
-