Class: Aws::BedrockAgentCore::Types::Context
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCore::Types::Context
- Defined in:
- gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb
Overview
Context is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Context corresponding to the set member.
The contextual information associated with an evaluation, including span context details that identify the specific traces and sessions being evaluated within the agent's execution flow.
Direct Known Subclasses
Defined Under Namespace
Classes: SpanContext, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#span_context ⇒ Types::SpanContext
The span context information that uniquely identifies the trace and span being evaluated, including session ID, trace ID, and span ID for precise targeting within the agent's execution flow.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#span_context ⇒ Types::SpanContext
The span context information that uniquely identifies the trace and span being evaluated, including session ID, trace ID, and span ID for precise targeting within the agent's execution flow.
541 542 543 544 545 546 547 548 549 550 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 541 class Context < Struct.new( :span_context, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class SpanContext < Context; end class Unknown < Context; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
541 542 543 |
# File 'gems/aws-sdk-bedrockagentcore/lib/aws-sdk-bedrockagentcore/types.rb', line 541 def unknown @unknown end |