You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Glue::Types::DecimalColumnStatisticsData

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing DecimalColumnStatisticsData as input to an Aws::Client method, you can use a vanilla Hash:

{
  minimum_value: {
    unscaled_value: "data", # required
    scale: 1, # required
  },
  maximum_value: {
    unscaled_value: "data", # required
    scale: 1, # required
  },
  number_of_nulls: 1, # required
  number_of_distinct_values: 1, # required
}

Defines column statistics supported for fixed-point number data columns.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#maximum_valueTypes::DecimalNumber

The highest value in the column.

Returns:

#minimum_valueTypes::DecimalNumber

The lowest value in the column.

Returns:

#number_of_distinct_valuesInteger

The number of distinct values in a column.

Returns:

  • (Integer)

    The number of distinct values in a column.

#number_of_nullsInteger

The number of null values in the column.

Returns:

  • (Integer)

    The number of null values in the column.