interface NumericalScaleDefinitionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.BedrockAgentCore.CfnEvaluatorPropsMixin.NumericalScaleDefinitionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrockagentcore#CfnEvaluatorPropsMixin_NumericalScaleDefinitionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrockagentcore.CfnEvaluatorPropsMixin.NumericalScaleDefinitionProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrockagentcore.CfnEvaluatorPropsMixin.NumericalScaleDefinitionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrockagentcore » CfnEvaluatorPropsMixin » 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/cfn-property-mixins';
const numericalScaleDefinitionProperty: bedrockagentcore.CfnEvaluatorPropsMixin.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
(optional)
The description that explains what this numerical rating represents.
label?
Type:
string
(optional)
The label that describes this numerical rating option.
value?
Type:
number
(optional)
The numerical value for this rating scale option.

.NET
Go
Java
Python
TypeScript