interface PhoneNumberConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnUser.PhoneNumberConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnUser_PhoneNumberConfigProperty |
Java | software.amazon.awscdk.services.connect.CfnUser.PhoneNumberConfigProperty |
Python | aws_cdk.aws_connect.CfnUser.PhoneNumberConfigProperty |
TypeScript | aws-cdk-lib » aws_connect » CfnUser » PhoneNumberConfigProperty |
Phone Number configuration per channel.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as connect } from 'aws-cdk-lib';
const phoneNumberConfigProperty: connect.CfnUser.PhoneNumberConfigProperty = {
channel: 'channel',
phoneType: 'phoneType',
// the properties below are optional
phoneNumber: 'phoneNumber',
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | string | The channels that agents can handle in the Contact Control Panel (CCP). |
| phone | string | The phone type. |
| phone | string | The phone number for the user's desk phone. |
channel
Type:
string
The channels that agents can handle in the Contact Control Panel (CCP).
phoneType
Type:
string
The phone type.
phoneNumber?
Type:
string
(optional)
The phone number for the user's desk phone.

.NET
Go
Java
Python
TypeScript