interface RuntimeSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lex.CfnBotPropsMixin.RuntimeSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslex#CfnBotPropsMixin_RuntimeSettingsProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lex.CfnBotPropsMixin.RuntimeSettingsProperty |
Python | aws_cdk.cfn_property_mixins.aws_lex.CfnBotPropsMixin.RuntimeSettingsProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lex » CfnBotPropsMixin » RuntimeSettingsProperty |
Contains specifications about the Amazon Lex runtime generative AI capabilities from Amazon Bedrock that you can turn on for your bot.
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 runtimeSettingsProperty: lex.CfnBotPropsMixin.RuntimeSettingsProperty = {
nluImprovementSpecification: {
assistedNluMode: 'assistedNluMode',
enabled: false,
intentDisambiguationSettings: {
customDisambiguationMessage: 'customDisambiguationMessage',
enabled: false,
maxDisambiguationIntents: 123,
},
},
slotResolutionImprovementSpecification: {
bedrockModelSpecification: {
bedrockGuardrailConfiguration: {
bedrockGuardrailIdentifier: 'bedrockGuardrailIdentifier',
bedrockGuardrailVersion: 'bedrockGuardrailVersion',
},
bedrockModelCustomPrompt: 'bedrockModelCustomPrompt',
bedrockTraceStatus: 'bedrockTraceStatus',
modelArn: 'modelArn',
},
enabled: false,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| nlu | IResolvable | Nlu | |
| slot | IResolvable | Slot |
nluImprovementSpecification?
Type:
IResolvable | Nlu
(optional)
slotResolutionImprovementSpecification?
Type:
IResolvable | Slot
(optional)

.NET
Go
Java
Python
TypeScript