Class: Aws::Glue::Types::Segment
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::Segment
- Defined in:
- gems/aws-sdk-glue/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.
22778 22779 22780 22781 22782 22783 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 22778 class Segment < Struct.new( :segment_number, :total_segments) SENSITIVE = [] include Aws::Structure end |