Class: Aws::BedrockAgentRuntime::Types::TraceElements

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb

Overview

Note:

TraceElements is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of TraceElements corresponding to the set member.

Contains trace elements for flow execution tracking.

Direct Known Subclasses

AgentTraces, Unknown

Defined Under Namespace

Classes: AgentTraces, Unknown

Constant Summary collapse

SENSITIVE =
[:agent_traces]

Instance Attribute Summary collapse

Instance Attribute Details

#agent_tracesArray<Types::TracePart>

Agent trace information for the flow execution.

Returns:



8782
8783
8784
8785
8786
8787
8788
8789
8790
8791
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 8782

class TraceElements < Struct.new(
  :agent_traces,
  :unknown)
  SENSITIVE = [:agent_traces]
  include Aws::Structure
  include Aws::Structure::Union

  class AgentTraces < TraceElements; end
  class Unknown < TraceElements; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



8782
8783
8784
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 8782

def unknown
  @unknown
end