Class: Aws::Bedrock::Types::AutomatedReasoningPolicyAtomicStatement

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

Overview

Represents a single, indivisible statement extracted from a source document. Atomic statements are the fundamental units used to ground policy rules and variables to their source material.

Constant Summary collapse

SENSITIVE =
[:text]

Instance Attribute Summary collapse

Instance Attribute Details

#idString

A unique identifier for this atomic statement within the fidelity report.

Returns:

  • (String)


977
978
979
980
981
982
983
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 977

class AutomatedReasoningPolicyAtomicStatement < Struct.new(
  :id,
  :text,
  :location)
  SENSITIVE = [:text]
  include Aws::Structure
end

#locationTypes::AutomatedReasoningPolicyStatementLocation

Information about where this statement appears in the source document, including line numbers.



977
978
979
980
981
982
983
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 977

class AutomatedReasoningPolicyAtomicStatement < Struct.new(
  :id,
  :text,
  :location)
  SENSITIVE = [:text]
  include Aws::Structure
end

#textString

The actual text content of the atomic statement as extracted from the source document.

Returns:

  • (String)


977
978
979
980
981
982
983
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 977

class AutomatedReasoningPolicyAtomicStatement < Struct.new(
  :id,
  :text,
  :location)
  SENSITIVE = [:text]
  include Aws::Structure
end