Class: Aws::Bedrock::Types::AutomatedReasoningPolicyAnnotatedLine
- Inherits:
-
Struct
- Object
- Struct
- Aws::Bedrock::Types::AutomatedReasoningPolicyAnnotatedLine
- Defined in:
- gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb
Overview
Represents a single line of text from a source document, annotated with its line number for precise referencing.
Constant Summary collapse
- SENSITIVE =
[:line_text]
Instance Attribute Summary collapse
-
#line_number ⇒ Integer
The line number of this text within the source document.
-
#line_text ⇒ String
The actual text content of this line from the source document.
Instance Attribute Details
#line_number ⇒ Integer
The line number of this text within the source document.
840 841 842 843 844 845 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 840 class AutomatedReasoningPolicyAnnotatedLine < Struct.new( :line_number, :line_text) SENSITIVE = [:line_text] include Aws::Structure end |
#line_text ⇒ String
The actual text content of this line from the source document.
840 841 842 843 844 845 |
# File 'gems/aws-sdk-bedrock/lib/aws-sdk-bedrock/types.rb', line 840 class AutomatedReasoningPolicyAnnotatedLine < Struct.new( :line_number, :line_text) SENSITIVE = [:line_text] include Aws::Structure end |