Class: Aws::Glue::Types::LongColumnStatisticsData

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-glue/types.rb

Overview

Note:

When making an API call, you may pass LongColumnStatisticsData data as a hash:

{
  minimum_value: 1,
  maximum_value: 1,
  number_of_nulls: 1, # required
  number_of_distinct_values: 1, # required
}

Defines column statistics supported for integer data columns.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#maximum_valueInteger

The highest value in the column.

Returns:

  • (Integer)


11321
11322
11323
11324
11325
11326
11327
11328
# File 'lib/aws-sdk-glue/types.rb', line 11321

class LongColumnStatisticsData < Struct.new(
  :minimum_value,
  :maximum_value,
  :number_of_nulls,
  :number_of_distinct_values)
  SENSITIVE = []
  include Aws::Structure
end

#minimum_valueInteger

The lowest value in the column.

Returns:

  • (Integer)


11321
11322
11323
11324
11325
11326
11327
11328
# File 'lib/aws-sdk-glue/types.rb', line 11321

class LongColumnStatisticsData < Struct.new(
  :minimum_value,
  :maximum_value,
  :number_of_nulls,
  :number_of_distinct_values)
  SENSITIVE = []
  include Aws::Structure
end

#number_of_distinct_valuesInteger

The number of distinct values in a column.

Returns:

  • (Integer)


11321
11322
11323
11324
11325
11326
11327
11328
# File 'lib/aws-sdk-glue/types.rb', line 11321

class LongColumnStatisticsData < Struct.new(
  :minimum_value,
  :maximum_value,
  :number_of_nulls,
  :number_of_distinct_values)
  SENSITIVE = []
  include Aws::Structure
end

#number_of_nullsInteger

The number of null values in the column.

Returns:

  • (Integer)


11321
11322
11323
11324
11325
11326
11327
11328
# File 'lib/aws-sdk-glue/types.rb', line 11321

class LongColumnStatisticsData < Struct.new(
  :minimum_value,
  :maximum_value,
  :number_of_nulls,
  :number_of_distinct_values)
  SENSITIVE = []
  include Aws::Structure
end