Class: Aws::Glue::Types::BinaryColumnStatisticsData

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

Overview

Defines column statistics supported for bit sequence data values.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#average_lengthFloat

The average bit sequence length in the column.

Returns:

  • (Float)


1363
1364
1365
1366
1367
1368
1369
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 1363

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

#maximum_lengthInteger

The size of the longest bit sequence in the column.

Returns:

  • (Integer)


1363
1364
1365
1366
1367
1368
1369
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 1363

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

#number_of_nullsInteger

The number of null values in the column.

Returns:

  • (Integer)


1363
1364
1365
1366
1367
1368
1369
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 1363

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