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

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

Overview

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)


20773
20774
20775
20776
20777
20778
20779
20780
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 20773

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)


20773
20774
20775
20776
20777
20778
20779
20780
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 20773

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)


20773
20774
20775
20776
20777
20778
20779
20780
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 20773

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)


20773
20774
20775
20776
20777
20778
20779
20780
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 20773

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