Class: Aws::LookoutEquipment::Types::MissingSensorData

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

Overview

Entity that comprises aggregated information on sensors having missing data.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#affected_sensor_countInteger

Indicates the number of sensors that have atleast some data missing.

Returns:

  • (Integer)


3478
3479
3480
3481
3482
3483
# File 'gems/aws-sdk-lookoutequipment/lib/aws-sdk-lookoutequipment/types.rb', line 3478

class MissingSensorData < Struct.new(
  :affected_sensor_count,
  :total_number_of_missing_values)
  SENSITIVE = []
  include Aws::Structure
end

#total_number_of_missing_valuesInteger

Indicates the total number of missing values across all the sensors.

Returns:

  • (Integer)


3478
3479
3480
3481
3482
3483
# File 'gems/aws-sdk-lookoutequipment/lib/aws-sdk-lookoutequipment/types.rb', line 3478

class MissingSensorData < Struct.new(
  :affected_sensor_count,
  :total_number_of_missing_values)
  SENSITIVE = []
  include Aws::Structure
end