interface PhoneNumberConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Connect.Mixins.CfnUserPropsMixin.PhoneNumberConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsconnect/mixins#CfnUserPropsMixin_PhoneNumberConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.connect.mixins.CfnUserPropsMixin.PhoneNumberConfigProperty |
Python | aws_cdk.mixins_preview.aws_connect.mixins.CfnUserPropsMixin.PhoneNumberConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_connect » mixins » CfnUserPropsMixin » 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 { mixins as connect_mixins } from '@aws-cdk/mixins-preview/aws-connect';
const phoneNumberConfigProperty: connect_mixins.CfnUserPropsMixin.PhoneNumberConfigProperty = {
channel: 'channel',
phoneNumber: 'phoneNumber',
phoneType: 'phoneType',
};
Properties
| Name | Type | Description |
|---|---|---|
| channel? | string | The channels that agents can handle in the Contact Control Panel (CCP). |
| phone | string | The phone number for the user's desk phone. |
| phone | string | The phone type. |
channel?
Type:
string
(optional)
The channels that agents can handle in the Contact Control Panel (CCP).
phoneNumber?
Type:
string
(optional)
The phone number for the user's desk phone.
phoneType?
Type:
string
(optional)
The phone type.

.NET
Go
Java
Python
TypeScript