interface BedrockModelSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Lex.CfnBotPropsMixin.BedrockModelSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awslex#CfnBotPropsMixin_BedrockModelSpecificationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.lex.CfnBotPropsMixin.BedrockModelSpecificationProperty |
Python | aws_cdk.cfn_property_mixins.aws_lex.CfnBotPropsMixin.BedrockModelSpecificationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_lex » CfnBotPropsMixin » BedrockModelSpecificationProperty |
Contains information about the Amazon Bedrock model used to interpret the prompt used in descriptive bot building.
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 bedrockModelSpecificationProperty: lex.CfnBotPropsMixin.BedrockModelSpecificationProperty = {
bedrockGuardrailConfiguration: {
bedrockGuardrailIdentifier: 'bedrockGuardrailIdentifier',
bedrockGuardrailVersion: 'bedrockGuardrailVersion',
},
bedrockModelCustomPrompt: 'bedrockModelCustomPrompt',
bedrockTraceStatus: 'bedrockTraceStatus',
modelArn: 'modelArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| bedrock | IResolvable | Bedrock | |
| bedrock | string | |
| bedrock | string | |
| model | string | The ARN of the foundation model used in descriptive bot building. |
bedrockGuardrailConfiguration?
Type:
IResolvable | Bedrock
(optional)
bedrockModelCustomPrompt?
Type:
string
(optional)
bedrockTraceStatus?
Type:
string
(optional)
modelArn?
Type:
string
(optional)
The ARN of the foundation model used in descriptive bot building.

.NET
Go
Java
Python
TypeScript