interface BedrockEvaluatorModelConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnEvaluatorPropsMixin.BedrockEvaluatorModelConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnEvaluatorPropsMixin_BedrockEvaluatorModelConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnEvaluatorPropsMixin.BedrockEvaluatorModelConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnEvaluatorPropsMixin.BedrockEvaluatorModelConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnEvaluatorPropsMixin » BedrockEvaluatorModelConfigProperty |
The configuration for using Amazon Bedrock models in evaluator assessments.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrockagentcore as bedrockagentcore } from '@aws-cdk/cfn-property-mixins';
declare const additionalModelRequestFields: any;
const bedrockEvaluatorModelConfigProperty: bedrockagentcore.CfnEvaluatorPropsMixin.BedrockEvaluatorModelConfigProperty = {
additionalModelRequestFields: additionalModelRequestFields,
inferenceConfig: {
maxTokens: 123,
temperature: 123,
topP: 123,
},
modelId: 'modelId',
};
Properties
| Name | Type | Description |
|---|---|---|
| additional | any | Additional model-specific request fields. |
| inference | IResolvable | Inference | The inference configuration parameters that control model behavior during evaluation. |
| model | string | The identifier of the Amazon Bedrock model to use for evaluation. |
additionalModelRequestFields?
Type:
any
(optional)
Additional model-specific request fields.
inferenceConfig?
Type:
IResolvable | Inference
(optional)
The inference configuration parameters that control model behavior during evaluation.
modelId?
Type:
string
(optional)
The identifier of the Amazon Bedrock model to use for evaluation.

.NET
Go
Java
Python
TypeScript