interface BedrockAgentIntentConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins.CfnBotPropsMixin.BedrockAgentIntentConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslex/mixins#CfnBotPropsMixin_BedrockAgentIntentConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.lex.mixins.CfnBotPropsMixin.BedrockAgentIntentConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_lex.mixins.CfnBotPropsMixin.BedrockAgentIntentConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lex » mixins » CfnBotPropsMixin » BedrockAgentIntentConfigurationProperty |
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 bedrockAgentIntentConfigurationProperty: lex_mixins.CfnBotPropsMixin.BedrockAgentIntentConfigurationProperty = {
bedrockAgentConfiguration: {
bedrockAgentAliasId: 'bedrockAgentAliasId',
bedrockAgentId: 'bedrockAgentId',
},
bedrockAgentIntentKnowledgeBaseConfiguration: {
bedrockKnowledgeBaseArn: 'bedrockKnowledgeBaseArn',
bedrockModelConfiguration: {
bedrockGuardrailConfiguration: {
bedrockGuardrailIdentifier: 'bedrockGuardrailIdentifier',
bedrockGuardrailVersion: 'bedrockGuardrailVersion',
},
bedrockModelCustomPrompt: 'bedrockModelCustomPrompt',
bedrockTraceStatus: 'bedrockTraceStatus',
modelArn: 'modelArn',
},
},
};
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