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

.NET
Go
Java
Python
TypeScript