Class: Aws::BedrockAgentRuntime::Types::FailureTrace

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

Overview

Contains information about the failure of the interaction.

Constant Summary collapse

SENSITIVE =
[:failure_reason]

Instance Attribute Summary collapse

Instance Attribute Details

#failure_reasonString

The reason the interaction failed.

Returns:

  • (String)


510
511
512
513
514
515
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 510

class FailureTrace < Struct.new(
  :failure_reason,
  :trace_id)
  SENSITIVE = [:failure_reason]
  include Aws::Structure
end

#trace_idString

The unique identifier of the trace.

Returns:

  • (String)


510
511
512
513
514
515
# File 'gems/aws-sdk-bedrockagentruntime/lib/aws-sdk-bedrockagentruntime/types.rb', line 510

class FailureTrace < Struct.new(
  :failure_reason,
  :trace_id)
  SENSITIVE = [:failure_reason]
  include Aws::Structure
end