Class: Aws::Comprehend::Types::BlockReference
- Inherits:
-
Struct
- Object
- Struct
- Aws::Comprehend::Types::BlockReference
- Defined in:
- gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb
Overview
A reference to a block.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#begin_offset ⇒ Integer
Offset of the start of the block within its parent block.
-
#block_id ⇒ String
Unique identifier for the block.
-
#child_blocks ⇒ Array<Types::ChildBlock>
List of child blocks within this block.
-
#end_offset ⇒ Integer
Offset of the end of the block within its parent block.
Instance Attribute Details
#begin_offset ⇒ Integer
Offset of the start of the block within its parent block.
588 589 590 591 592 593 594 595 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 588 class BlockReference < Struct.new( :block_id, :begin_offset, :end_offset, :child_blocks) SENSITIVE = [] include Aws::Structure end |
#block_id ⇒ String
Unique identifier for the block.
588 589 590 591 592 593 594 595 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 588 class BlockReference < Struct.new( :block_id, :begin_offset, :end_offset, :child_blocks) SENSITIVE = [] include Aws::Structure end |
#child_blocks ⇒ Array<Types::ChildBlock>
List of child blocks within this block.
588 589 590 591 592 593 594 595 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 588 class BlockReference < Struct.new( :block_id, :begin_offset, :end_offset, :child_blocks) SENSITIVE = [] include Aws::Structure end |
#end_offset ⇒ Integer
Offset of the end of the block within its parent block.
588 589 590 591 592 593 594 595 |
# File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 588 class BlockReference < Struct.new( :block_id, :begin_offset, :end_offset, :child_blocks) SENSITIVE = [] include Aws::Structure end |