interface NluImprovementSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins.CfnBotPropsMixin.NluImprovementSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslex/mixins#CfnBotPropsMixin_NluImprovementSpecificationProperty |
Java | software.amazon.awscdk.mixins.preview.services.lex.mixins.CfnBotPropsMixin.NluImprovementSpecificationProperty |
Python | aws_cdk.mixins_preview.aws_lex.mixins.CfnBotPropsMixin.NluImprovementSpecificationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lex » mixins » CfnBotPropsMixin » 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 { mixins as lex_mixins } from '@aws-cdk/mixins-preview/aws-lex';
const nluImprovementSpecificationProperty: lex_mixins.CfnBotPropsMixin.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
(optional)
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