interface UserPhoneConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnUserPropsMixin.UserPhoneConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnUserPropsMixin_UserPhoneConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnUserPropsMixin.UserPhoneConfigProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnUserPropsMixin.UserPhoneConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnUserPropsMixin » 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 { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const userPhoneConfigProperty: connect_mixins.CfnUserPropsMixin.UserPhoneConfigProperty = {
afterContactWorkTimeLimit: 123,
autoAccept: false,
deskPhoneNumber: 'deskPhoneNumber',
persistentConnection: false,
phoneType: 'phoneType',
};
Properties
| Name | Type | Description |
|---|---|---|
| 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. |
| persistent | boolean | IResolvable | The persistent connection setting for the user. |
| phone | string | The phone type. |
afterContactWorkTimeLimit?
Type:
number
(optional)
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.
autoAccept?
Type:
boolean | IResolvable
(optional)
The Auto accept setting.
deskPhoneNumber?
Type:
string
(optional)
The phone number for the user's desk phone.
persistentConnection?
Type:
boolean | IResolvable
(optional)
The persistent connection setting for the user.
phoneType?
Type:
string
(optional)
The phone type.

.NET
Go
Java
Python
TypeScript