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)


19069
19070
19071
19072
19073
19074
# File 'lib/aws-sdk-glue/types.rb', line 19069

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

#total_segmentsInteger

The total number of segments.

Returns:

  • (Integer)


19069
19070
19071
19072
19073
19074
# File 'lib/aws-sdk-glue/types.rb', line 19069

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