Class: Aws::Bedrock::Types::AutomatedReasoningPolicyAtomicStatement
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::AutomatedReasoningPolicyAtomicStatement
- 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
-
#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.
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 |
#location ⇒ Types::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 |
#text ⇒ String
The actual text content of the atomic statement as extracted from the source document.
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 |