Interface CfnUserPropsMixin.UserPhoneConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUserPropsMixin.UserPhoneConfigProperty.Jsii$Proxy
- Enclosing class:
CfnUserPropsMixin
@Stability(Stable)
public static interface CfnUserPropsMixin.UserPhoneConfigProperty
extends software.amazon.jsii.JsiiSerializable
Contains information about the phone configuration settings for a user.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.connect.*;
UserPhoneConfigProperty userPhoneConfigProperty = UserPhoneConfigProperty.builder()
.afterContactWorkTimeLimit(123)
.autoAccept(false)
.deskPhoneNumber("deskPhoneNumber")
.persistentConnection(false)
.phoneType("phoneType")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUserPropsMixin.UserPhoneConfigPropertystatic final classAn implementation forCfnUserPropsMixin.UserPhoneConfigProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberThe After Call Work (ACW) timeout setting, in seconds.default ObjectThe Auto accept setting.default StringThe phone number for the user's desk phone.default ObjectThe persistent connection setting for the user.default StringThe phone type.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAfterContactWorkTimeLimit
The After Call Work (ACW) timeout setting, in seconds.This parameter has a minimum value of 0 and a maximum value of 2,000,000 seconds (24 days). Enter 0 if you don't want to allocate a specific amount of ACW time. It essentially means an indefinite amount of time. When the conversation ends, ACW starts; the agent must choose Close contact to end ACW.
When returned by a
SearchUserscall,AfterContactWorkTimeLimitis returned in milliseconds.- See Also:
-
getAutoAccept
The Auto accept setting.Returns union: either
BooleanorIResolvable- See Also:
-
getDeskPhoneNumber
The phone number for the user's desk phone.- See Also:
-
getPersistentConnection
The persistent connection setting for the user.Returns union: either
BooleanorIResolvable- See Also:
-
getPhoneType
The phone type.- See Also:
-
builder
-