interface UserPhoneConfigProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Connect.CfnUser.UserPhoneConfigProperty | 
|  Java | software.amazon.awscdk.services.connect.CfnUser.UserPhoneConfigProperty | 
|  Python | aws_cdk.aws_connect.CfnUser.UserPhoneConfigProperty | 
|  TypeScript | @aws-cdk/aws-connect»CfnUser»UserPhoneConfigProperty | 
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 * as connect from '@aws-cdk/aws-connect';
const userPhoneConfigProperty: connect.CfnUser.UserPhoneConfigProperty = {
  phoneType: 'phoneType',
  // the properties below are optional
  afterContactWorkTimeLimit: 123,
  autoAccept: false,
  deskPhoneNumber: 'deskPhoneNumber',
};
Properties
| Name | Type | Description | 
|---|---|---|
| phone | string | The phone type. | 
| after | number | The After Call Work (ACW) timeout setting, in seconds. | 
| auto | boolean | IResolvable | The Auto accept setting. | 
| desk | string | The phone number for the user's desk phone. | 
phoneType
Type:
string
The phone type.
afterContactWorkTimeLimit?
Type:
number
(optional)
The After Call Work (ACW) timeout setting, in seconds.
When returned by a
SearchUserscall,AfterContactWorkTimeLimitis returned in milliseconds.
autoAccept?
Type:
boolean | IResolvable
(optional)
The Auto accept setting.
deskPhoneNumber?
Type:
string
(optional)
The phone number for the user's desk phone.
