Interface CfnUser.UserPhoneConfigProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnUser.UserPhoneConfigProperty.Jsii$Proxy
- Enclosing class:
CfnUser
@Stability(Stable)
public static interface CfnUser.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.services.connect.*; UserPhoneConfigProperty userPhoneConfigProperty = UserPhoneConfigProperty.builder() .phoneType("phoneType") // the properties below are optional .afterContactWorkTimeLimit(123) .autoAccept(false) .deskPhoneNumber("deskPhoneNumber") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnUser.UserPhoneConfigProperty
static final class
An implementation forCfnUser.UserPhoneConfigProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPhoneType
The phone type.- See Also:
-
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
SearchUsers
call,AfterContactWorkTimeLimit
is returned in milliseconds.- See Also:
-
getAutoAccept
The Auto accept setting.- See Also:
-
getDeskPhoneNumber
The phone number for the user's desk phone.- See Also:
-
builder
-