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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnUser.UserPhoneConfigPropertystatic final classAn implementation forCfnUser.UserPhoneConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPhoneType
The phone type. -
getAfterContactWorkTimeLimit
The After Call Work (ACW) timeout setting, in seconds.When returned by a
SearchUserscall,AfterContactWorkTimeLimitis returned in milliseconds. -
getAutoAccept
The Auto accept setting. -
getDeskPhoneNumber
The phone number for the user's desk phone. -
builder
-