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

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 StringColumnStatisticsData data as a 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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#average_lengthFloat

The average string length in the column.

Returns:

  • (Float)


14350
14351
14352
14353
14354
14355
14356
14357
# File 'lib/aws-sdk-glue/types.rb', line 14350

class StringColumnStatisticsData < Struct.new(
  :maximum_length,
  :average_length,
  :number_of_nulls,
  :number_of_distinct_values)
  SENSITIVE = []
  include Aws::Structure
end

#maximum_lengthInteger

The size of the longest string in the column.

Returns:

  • (Integer)


14350
14351
14352
14353
14354
14355
14356
14357
# File 'lib/aws-sdk-glue/types.rb', line 14350

class StringColumnStatisticsData < Struct.new(
  :maximum_length,
  :average_length,
  :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)


14350
14351
14352
14353
14354
14355
14356
14357
# File 'lib/aws-sdk-glue/types.rb', line 14350

class StringColumnStatisticsData < Struct.new(
  :maximum_length,
  :average_length,
  :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)


14350
14351
14352
14353
14354
14355
14356
14357
# File 'lib/aws-sdk-glue/types.rb', line 14350

class StringColumnStatisticsData < Struct.new(
  :maximum_length,
  :average_length,
  :number_of_nulls,
  :number_of_distinct_values)
  SENSITIVE = []
  include Aws::Structure
end