Interface UserPhoneConfig.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<UserPhoneConfig.Builder,UserPhoneConfig>,SdkBuilder<UserPhoneConfig.Builder,UserPhoneConfig>,SdkPojo
- Enclosing class:
- UserPhoneConfig
public static interface UserPhoneConfig.Builder extends SdkPojo, CopyableBuilder<UserPhoneConfig.Builder,UserPhoneConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description UserPhoneConfig.BuilderafterContactWorkTimeLimit(Integer afterContactWorkTimeLimit)The After Call Work (ACW) timeout setting, in seconds.UserPhoneConfig.BuilderautoAccept(Boolean autoAccept)The Auto accept setting.UserPhoneConfig.BuilderdeskPhoneNumber(String deskPhoneNumber)The phone number for the user's desk phone.UserPhoneConfig.BuilderphoneType(String phoneType)The phone type.UserPhoneConfig.BuilderphoneType(PhoneType phoneType)The phone type.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
phoneType
UserPhoneConfig.Builder phoneType(String phoneType)
The phone type.
-
phoneType
UserPhoneConfig.Builder phoneType(PhoneType phoneType)
The phone type.
-
autoAccept
UserPhoneConfig.Builder autoAccept(Boolean autoAccept)
The Auto accept setting.
- Parameters:
autoAccept- The Auto accept setting.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
afterContactWorkTimeLimit
UserPhoneConfig.Builder afterContactWorkTimeLimit(Integer afterContactWorkTimeLimit)
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.- Parameters:
afterContactWorkTimeLimit- 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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
deskPhoneNumber
UserPhoneConfig.Builder deskPhoneNumber(String deskPhoneNumber)
The phone number for the user's desk phone.
- Parameters:
deskPhoneNumber- The phone number for the user's desk phone.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-