Class: Aws::Glue::Types::Segment

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#segment_numberInteger

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.

Returns:

  • (Integer)


19721
19722
19723
19724
19725
19726
# File 'lib/aws-sdk-glue/types.rb', line 19721

class Segment < Struct.new(
  :segment_number,
  :total_segments)
  SENSITIVE = []
  include Aws::Structure
end

#total_segmentsInteger

The total number of segments.

Returns:

  • (Integer)


19721
19722
19723
19724
19725
19726
# File 'lib/aws-sdk-glue/types.rb', line 19721

class Segment < Struct.new(
  :segment_number,
  :total_segments)
  SENSITIVE = []
  include Aws::Structure
end