Class: Aws::Comprehend::Types::ChildBlock
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Comprehend::Types::ChildBlock
 
- Defined in:
- gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb
Overview
Nested block contained within a block.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #begin_offset  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Offset of the start of the child block within its parent block. 
- 
  
    
      #child_block_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Unique identifier for the child block. 
- 
  
    
      #end_offset  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Offset of the end of the child block within its parent block. 
Instance Attribute Details
#begin_offset ⇒ Integer
Offset of the start of the child block within its parent block.
| 656 657 658 659 660 661 662 | # File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 656 class ChildBlock < Struct.new( :child_block_id, :begin_offset, :end_offset) SENSITIVE = [] include Aws::Structure end | 
#child_block_id ⇒ String
Unique identifier for the child block.
| 656 657 658 659 660 661 662 | # File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 656 class ChildBlock < Struct.new( :child_block_id, :begin_offset, :end_offset) SENSITIVE = [] include Aws::Structure end | 
#end_offset ⇒ Integer
Offset of the end of the child block within its parent block.
| 656 657 658 659 660 661 662 | # File 'gems/aws-sdk-comprehend/lib/aws-sdk-comprehend/types.rb', line 656 class ChildBlock < Struct.new( :child_block_id, :begin_offset, :end_offset) SENSITIVE = [] include Aws::Structure end |