Class: Aws::BedrockAgentCoreControl::Types::EvaluatorReference
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::EvaluatorReference
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
Note:
EvaluatorReference is a union - when making an API calls you must set exactly one of the members.
Note:
EvaluatorReference is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of EvaluatorReference corresponding to the set member.
The reference to an evaluator used in online evaluation configurations, containing the evaluator identifier.
Direct Known Subclasses
Defined Under Namespace
Classes: EvaluatorId, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#evaluator_id ⇒ String
The unique identifier of the evaluator.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#evaluator_id ⇒ String
The unique identifier of the evaluator. Can reference builtin evaluators (e.g., Builtin.Helpfulness) or custom evaluators.
3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3663 class EvaluatorReference < Struct.new( :evaluator_id, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class EvaluatorId < EvaluatorReference; end class Unknown < EvaluatorReference; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
3663 3664 3665 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3663 def unknown @unknown end |