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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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)


1039
1040
1041
1042
1043
1044
1045
# File 'lib/aws-sdk-bedrock/types.rb', line 1039

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.



1039
1040
1041
1042
1043
1044
1045
# File 'lib/aws-sdk-bedrock/types.rb', line 1039

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)


1039
1040
1041
1042
1043
1044
1045
# File 'lib/aws-sdk-bedrock/types.rb', line 1039

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