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.
22813 22814 22815 22816 22817 22818 |
# File 'lib/aws-sdk-glue/types.rb', line 22813 class Segment < Struct.new( :segment_number, :total_segments) SENSITIVE = [] include Aws::Structure end |