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

Class: Aws::Glue::Types::StringColumnStatisticsData

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

Overview

Note:

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

{
  maximum_length: 1, # required
  average_length: 1.0, # required
  number_of_nulls: 1, # required
  number_of_distinct_values: 1, # required
}

Defines column statistics supported for character sequence data values.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#average_lengthFloat

The average string length in the column.

Returns:

  • (Float)

    The average string length in the column.

#maximum_lengthInteger

The size of the longest string in the column.

Returns:

  • (Integer)

    The size of the longest string in the column.

#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.