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
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. -
getAfterContactWorkTimeLimit
The After Call Work (ACW) timeout setting, in seconds.When returned by a
SearchUsers
call,AfterContactWorkTimeLimit
is returned in milliseconds. -
getAutoAccept
The Auto accept setting. -
getDeskPhoneNumber
The phone number for the user's desk phone. -
builder
-