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.
20555 20556 20557 20558 20559 20560 |
# File 'lib/aws-sdk-glue/types.rb', line 20555 class Segment < Struct.new( :segment_number, :total_segments) SENSITIVE = [] include Aws::Structure end |