interface EvaluatorModelConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnEvaluator.EvaluatorModelConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnEvaluator_EvaluatorModelConfigProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnEvaluator.EvaluatorModelConfigProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnEvaluator.EvaluatorModelConfigProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnEvaluator » EvaluatorModelConfigProperty |
The model configuration that specifies which foundation model to use for evaluation.
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-lib';
declare const additionalModelRequestFields: any;
const evaluatorModelConfigProperty: bedrockagentcore.CfnEvaluator.EvaluatorModelConfigProperty = {
bedrockEvaluatorModelConfig: {
modelId: 'modelId',
// the properties below are optional
additionalModelRequestFields: additionalModelRequestFields,
inferenceConfig: {
maxTokens: 123,
temperature: 123,
topP: 123,
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| bedrock | IResolvable | Bedrock | The configuration for using Amazon Bedrock models in evaluator assessments. |
bedrockEvaluatorModelConfig
Type:
IResolvable | Bedrock
The configuration for using Amazon Bedrock models in evaluator assessments.

.NET
Go
Java
Python
TypeScript