interface UnifiedSpeechSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lex.CfnBotPropsMixin.UnifiedSpeechSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslex#CfnBotPropsMixin_UnifiedSpeechSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lex.CfnBotPropsMixin.UnifiedSpeechSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_lex.CfnBotPropsMixin.UnifiedSpeechSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lex » CfnBotPropsMixin » 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/cfn-property-mixins';
const unifiedSpeechSettingsProperty: lex.CfnBotPropsMixin.UnifiedSpeechSettingsProperty = {
speechFoundationModel: {
modelArn: 'modelArn',
voiceId: 'voiceId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| speech | IResolvable | Speech | The foundation model configuration to use for unified speech processing capabilities. |
speechFoundationModel?
Type:
IResolvable | Speech
(optional)
The foundation model configuration to use for unified speech processing capabilities.

.NET
Go
Java
Python
TypeScript