Class: Aws::Glue::Types::Segment
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::Segment
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Defines a non-overlapping region of a table’s partitions, allowing multiple requests to be run in parallel.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #segment_number  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The zero-based index number of the segment. 
- 
  
    
      #total_segments  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The total number of segments. 
Instance Attribute Details
#segment_number ⇒ Integer
The zero-based index number of the segment. For example, if the total number of segments is 4, ‘SegmentNumber` values range from 0 through 3.
| 22903 22904 22905 22906 22907 22908 | # File 'lib/aws-sdk-glue/types.rb', line 22903 class Segment < Struct.new( :segment_number, :total_segments) SENSITIVE = [] include Aws::Structure end |