interface RatingScaleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnEvaluator.RatingScaleProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnEvaluator_RatingScaleProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnEvaluator.RatingScaleProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnEvaluator.RatingScaleProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnEvaluator » RatingScaleProperty |
The rating scale that defines how evaluators should score agent performance.
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';
const ratingScaleProperty: bedrockagentcore.CfnEvaluator.RatingScaleProperty = {
categorical: [{
definition: 'definition',
label: 'label',
}],
numerical: [{
definition: 'definition',
label: 'label',
value: 123,
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| categorical? | IResolvable | (IResolvable | Categorical)[] | |
| numerical? | IResolvable | (IResolvable | Numerical)[] |
categorical?
Type:
IResolvable | (IResolvable | Categorical)[]
(optional)
numerical?
Type:
IResolvable | (IResolvable | Numerical)[]
(optional)

.NET
Go
Java
Python
TypeScript