interface UnifiedSpeechSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Lex.CfnBot.UnifiedSpeechSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslex#CfnBot_UnifiedSpeechSettingsProperty |
Java | software.amazon.awscdk.services.lex.CfnBot.UnifiedSpeechSettingsProperty |
Python | aws_cdk.aws_lex.CfnBot.UnifiedSpeechSettingsProperty |
TypeScript | aws-cdk-lib » aws_lex » CfnBot » UnifiedSpeechSettingsProperty |
Unified configuration settings that combine speech recognition and synthesis capabilities.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_lex as lex } from 'aws-cdk-lib';
const unifiedSpeechSettingsProperty: lex.CfnBot.UnifiedSpeechSettingsProperty = {
speechFoundationModel: {
modelArn: 'modelArn',
// the properties below are optional
voiceId: 'voiceId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| speech | IResolvable | Speech | The foundation model configuration to use for unified speech processing capabilities. |
speechFoundationModel
Type:
IResolvable | Speech
The foundation model configuration to use for unified speech processing capabilities.

.NET
Go
Java
Python
TypeScript