interface NluImprovementSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Lex.CfnBot.NluImprovementSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslex#CfnBot_NluImprovementSpecificationProperty |
Java | software.amazon.awscdk.services.lex.CfnBot.NluImprovementSpecificationProperty |
Python | aws_cdk.aws_lex.CfnBot.NluImprovementSpecificationProperty |
TypeScript | aws-cdk-lib » aws_lex » CfnBot » NluImprovementSpecificationProperty |
Configures the Assisted Natural Language Understanding (NLU) feature for your bot.
This specification determines whether enhanced intent recognition and utterance understanding capabilities are active.
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 nluImprovementSpecificationProperty: lex.CfnBot.NluImprovementSpecificationProperty = {
enabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled | boolean | IResolvable | Determines whether the Assisted NLU feature is enabled for the bot. |
enabled
Type:
boolean | IResolvable
Determines whether the Assisted NLU feature is enabled for the bot.
When set to true , Amazon Lex uses advanced models to improve intent recognition and slot resolution, with the default being false .

.NET
Go
Java
Python
TypeScript