Class: Aws::Bedrock::Types::AutomatedReasoningPolicyAtomicStatement
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::AutomatedReasoningPolicyAtomicStatement
- 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
-
#id ⇒ String
A unique identifier for this atomic statement within the fidelity report.
-
#location ⇒ Types::AutomatedReasoningPolicyStatementLocation
Information about where this statement appears in the source document, including line numbers.
-
#text ⇒ String
The actual text content of the atomic statement as extracted from the source document.
Instance Attribute Details
#id ⇒ String
A unique identifier for this atomic statement within the fidelity report.
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 |
#location ⇒ Types::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 |
#text ⇒ String
The actual text content of the atomic statement as extracted from the source document.
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 |