interface VoiceEnhancementConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnUser.VoiceEnhancementConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnUser_VoiceEnhancementConfigProperty |
Java | software.amazon.awscdk.services.connect.CfnUser.VoiceEnhancementConfigProperty |
Python | aws_cdk.aws_connect.CfnUser.VoiceEnhancementConfigProperty |
TypeScript | aws-cdk-lib » aws_connect » CfnUser » VoiceEnhancementConfigProperty |
Voice Enhancement 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 voiceEnhancementConfigProperty: connect.CfnUser.VoiceEnhancementConfigProperty = {
channel: 'channel',
voiceEnhancementMode: 'voiceEnhancementMode',
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | string | The channels that agents can handle in the Contact Control Panel (CCP). |
| voice | string | The Voice Enhancement Mode setting. |
channel
Type:
string
The channels that agents can handle in the Contact Control Panel (CCP).
voiceEnhancementMode
Type:
string
The Voice Enhancement Mode setting.

.NET
Go
Java
Python
TypeScript