Class: Aws::BedrockAgentCoreControl::Types::RatingScale
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::RatingScale
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
RatingScale is a union - when making an API calls you must set exactly one of the members.
RatingScale is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RatingScale corresponding to the set member.
The rating scale that defines how evaluators should score agent performance, supporting both numerical and categorical scales.
Direct Known Subclasses
Defined Under Namespace
Classes: Categorical, Numerical, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#categorical ⇒ Array<Types::CategoricalScaleDefinition>
The categorical rating scale with named categories and definitions for qualitative evaluation.
-
#numerical ⇒ Array<Types::NumericalScaleDefinition>
The numerical rating scale with defined score values and descriptions for quantitative evaluation.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#categorical ⇒ Array<Types::CategoricalScaleDefinition>
The categorical rating scale with named categories and definitions for qualitative evaluation.
7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 7819 class RatingScale < Struct.new( :numerical, :categorical, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Numerical < RatingScale; end class Categorical < RatingScale; end class Unknown < RatingScale; end end |
#numerical ⇒ Array<Types::NumericalScaleDefinition>
The numerical rating scale with defined score values and descriptions for quantitative evaluation.
7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 7819 class RatingScale < Struct.new( :numerical, :categorical, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Numerical < RatingScale; end class Categorical < RatingScale; end class Unknown < RatingScale; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
7819 7820 7821 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 7819 def unknown @unknown end |