interface BuildtimeSettingsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Lex.Mixins.CfnBotPropsMixin.BuildtimeSettingsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslex/mixins#CfnBotPropsMixin_BuildtimeSettingsProperty |
Java | software.amazon.awscdk.mixins.preview.services.lex.mixins.CfnBotPropsMixin.BuildtimeSettingsProperty |
Python | aws_cdk.mixins_preview.aws_lex.mixins.CfnBotPropsMixin.BuildtimeSettingsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lex » mixins » CfnBotPropsMixin » BuildtimeSettingsProperty |
Contains specifications about the Amazon Lex build time 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 { mixins as lex_mixins } from '@aws-cdk/mixins-preview/aws-lex';
const buildtimeSettingsProperty: lex_mixins.CfnBotPropsMixin.BuildtimeSettingsProperty = {
descriptiveBotBuilderSpecification: {
bedrockModelSpecification: {
bedrockGuardrailConfiguration: {
bedrockGuardrailIdentifier: 'bedrockGuardrailIdentifier',
bedrockGuardrailVersion: 'bedrockGuardrailVersion',
},
bedrockModelCustomPrompt: 'bedrockModelCustomPrompt',
bedrockTraceStatus: 'bedrockTraceStatus',
modelArn: 'modelArn',
},
enabled: false,
},
sampleUtteranceGenerationSpecification: {
bedrockModelSpecification: {
bedrockGuardrailConfiguration: {
bedrockGuardrailIdentifier: 'bedrockGuardrailIdentifier',
bedrockGuardrailVersion: 'bedrockGuardrailVersion',
},
bedrockModelCustomPrompt: 'bedrockModelCustomPrompt',
bedrockTraceStatus: 'bedrockTraceStatus',
modelArn: 'modelArn',
},
enabled: false,
},
};
Properties
| Name | Type | Description |
|---|---|---|
| descriptive | IResolvable | Descriptive | |
| sample | IResolvable | Sample |
descriptiveBotBuilderSpecification?
Type:
IResolvable | Descriptive
(optional)
sampleUtteranceGenerationSpecification?
Type:
IResolvable | Sample
(optional)

.NET
Go
Java
Python
TypeScript