Class: Aws::LookoutEquipment::Types::CountPercent

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

Overview

Entity that comprises information of count and percentage.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#countInteger

Indicates the count of occurences of the given statistic.

Returns:

  • (Integer)


73
74
75
76
77
78
# File 'gems/aws-sdk-lookoutequipment/lib/aws-sdk-lookoutequipment/types.rb', line 73

class CountPercent < Struct.new(
  :count,
  :percentage)
  SENSITIVE = []
  include Aws::Structure
end

#percentageFloat

Indicates the percentage of occurances of the given statistic.

Returns:

  • (Float)


73
74
75
76
77
78
# File 'gems/aws-sdk-lookoutequipment/lib/aws-sdk-lookoutequipment/types.rb', line 73

class CountPercent < Struct.new(
  :count,
  :percentage)
  SENSITIVE = []
  include Aws::Structure
end