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

.NET
Go
Java
Python
TypeScript