interface DescriptiveBotBuilderSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins.CfnBotPropsMixin.DescriptiveBotBuilderSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslex/mixins#CfnBotPropsMixin_DescriptiveBotBuilderSpecificationProperty |
Java | software.amazon.awscdk.mixins.preview.services.lex.mixins.CfnBotPropsMixin.DescriptiveBotBuilderSpecificationProperty |
Python | aws_cdk.mixins_preview.aws_lex.mixins.CfnBotPropsMixin.DescriptiveBotBuilderSpecificationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lex » mixins » CfnBotPropsMixin » DescriptiveBotBuilderSpecificationProperty |
Contains specifications for the descriptive bot building feature.
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 descriptiveBotBuilderSpecificationProperty: lex_mixins.CfnBotPropsMixin.DescriptiveBotBuilderSpecificationProperty = {
bedrockModelSpecification: {
bedrockGuardrailConfiguration: {
bedrockGuardrailIdentifier: 'bedrockGuardrailIdentifier',
bedrockGuardrailVersion: 'bedrockGuardrailVersion',
},
bedrockModelCustomPrompt: 'bedrockModelCustomPrompt',
bedrockTraceStatus: 'bedrockTraceStatus',
modelArn: 'modelArn',
},
enabled: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| bedrock | IResolvable | Bedrock | An object containing information about the Amazon Bedrock model used to interpret the prompt used in descriptive bot building. |
| enabled? | boolean | IResolvable | Specifies whether the descriptive bot building feature is activated or not. |
bedrockModelSpecification?
Type:
IResolvable | Bedrock
(optional)
An object containing information about the Amazon Bedrock model used to interpret the prompt used in descriptive bot building.
enabled?
Type:
boolean | IResolvable
(optional)
Specifies whether the descriptive bot building feature is activated or not.

.NET
Go
Java
Python
TypeScript