interface NumericalScaleDefinitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.BedrockAgentCore.CfnEvaluator.NumericalScaleDefinitionProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsbedrockagentcore#CfnEvaluator_NumericalScaleDefinitionProperty |
Java | software.amazon.awscdk.services.bedrockagentcore.CfnEvaluator.NumericalScaleDefinitionProperty |
Python | aws_cdk.aws_bedrockagentcore.CfnEvaluator.NumericalScaleDefinitionProperty |
TypeScript | aws-cdk-lib » aws_bedrockagentcore » CfnEvaluator » NumericalScaleDefinitionProperty |
A numerical rating scale option.
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 numericalScaleDefinitionProperty: bedrockagentcore.CfnEvaluator.NumericalScaleDefinitionProperty = {
definition: 'definition',
label: 'label',
value: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| definition | string | The description that explains what this numerical rating represents. |
| label | string | The label that describes this numerical rating option. |
| value | number | The numerical value for this rating scale option. |
definition
Type:
string
The description that explains what this numerical rating represents.
label
Type:
string
The label that describes this numerical rating option.
value
Type:
number
The numerical value for this rating scale option.

.NET
Go
Java
Python
TypeScript