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.
3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3897 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
3897 3898 3899 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 3897 def unknown @unknown end |