Class: Aws::BedrockAgentRuntime::Types::NodeTraceElements

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

Overview

Note:

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

Contains trace elements for node 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 node execution.

Returns:



5998
5999
6000
6001
6002
6003
6004
6005
6006
6007
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 5998

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

  class AgentTraces < NodeTraceElements; end
  class Unknown < NodeTraceElements; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



5998
5999
6000
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 5998

def unknown
  @unknown
end