interface BedrockAgentIntentConfigurationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.Lex.CfnBot.BedrockAgentIntentConfigurationProperty | 
  Go | github.com/aws/aws-cdk-go/awscdk/v2/awslex#CfnBot_BedrockAgentIntentConfigurationProperty | 
  Java | software.amazon.awscdk.services.lex.CfnBot.BedrockAgentIntentConfigurationProperty | 
  Python | aws_cdk.aws_lex.CfnBot.BedrockAgentIntentConfigurationProperty | 
  TypeScript  | aws-cdk-lib » aws_lex » CfnBot » BedrockAgentIntentConfigurationProperty | 
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 bedrockAgentIntentConfigurationProperty: lex.CfnBot.BedrockAgentIntentConfigurationProperty = {
  bedrockAgentConfiguration: {
    bedrockAgentAliasId: 'bedrockAgentAliasId',
    bedrockAgentId: 'bedrockAgentId',
  },
  bedrockAgentIntentKnowledgeBaseConfiguration: {
    bedrockKnowledgeBaseArn: 'bedrockKnowledgeBaseArn',
    bedrockModelConfiguration: {
      modelArn: 'modelArn',
      // the properties below are optional
      bedrockGuardrailConfiguration: {
        bedrockGuardrailIdentifier: 'bedrockGuardrailIdentifier',
        bedrockGuardrailVersion: 'bedrockGuardrailVersion',
      },
      bedrockModelCustomPrompt: 'bedrockModelCustomPrompt',
      bedrockTraceStatus: 'bedrockTraceStatus',
    },
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| bedrock | IResolvable | Bedrock | |
| bedrock | IResolvable | Bedrock | 
bedrockAgentConfiguration?
Type:
IResolvable | Bedrock
(optional)
bedrockAgentIntentKnowledgeBaseConfiguration?
Type:
IResolvable | Bedrock
(optional)

 .NET
 Go
 Java
 Python
 TypeScript