Class: Aws::LookoutEquipment::Types::DataQualitySummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::LookoutEquipment::Types::DataQualitySummary
- Defined in:
- gems/aws-sdk-lookoutequipment/lib/aws-sdk-lookoutequipment/types.rb
Overview
DataQualitySummary gives aggregated statistics over all the sensors about a completed ingestion job. It primarily gives more information about statistics over different incorrect data like MissingCompleteSensorData, MissingSensorData, UnsupportedDateFormats, InsufficientSensorData, DuplicateTimeStamps.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#duplicate_timestamps ⇒ Types::DuplicateTimestamps
Parameter that gives information about duplicate timestamps in the input data.
-
#insufficient_sensor_data ⇒ Types::InsufficientSensorData
Parameter that gives information about insufficient data for sensors in the dataset.
-
#invalid_sensor_data ⇒ Types::InvalidSensorData
Parameter that gives information about data that is invalid over all the sensors in the input data.
-
#missing_sensor_data ⇒ Types::MissingSensorData
Parameter that gives information about data that is missing over all the sensors in the input data.
-
#unsupported_timestamps ⇒ Types::UnsupportedTimestamps
Parameter that gives information about unsupported timestamps in the input data.
Instance Attribute Details
#duplicate_timestamps ⇒ Types::DuplicateTimestamps
Parameter that gives information about duplicate timestamps in the input data.
730 731 732 733 734 735 736 737 738 |
# File 'gems/aws-sdk-lookoutequipment/lib/aws-sdk-lookoutequipment/types.rb', line 730 class DataQualitySummary < Struct.new( :insufficient_sensor_data, :missing_sensor_data, :invalid_sensor_data, :unsupported_timestamps, :duplicate_timestamps) SENSITIVE = [] include Aws::Structure end |
#insufficient_sensor_data ⇒ Types::InsufficientSensorData
Parameter that gives information about insufficient data for sensors in the dataset. This includes information about those sensors that have complete data missing and those with a short date range.
730 731 732 733 734 735 736 737 738 |
# File 'gems/aws-sdk-lookoutequipment/lib/aws-sdk-lookoutequipment/types.rb', line 730 class DataQualitySummary < Struct.new( :insufficient_sensor_data, :missing_sensor_data, :invalid_sensor_data, :unsupported_timestamps, :duplicate_timestamps) SENSITIVE = [] include Aws::Structure end |
#invalid_sensor_data ⇒ Types::InvalidSensorData
Parameter that gives information about data that is invalid over all the sensors in the input data.
730 731 732 733 734 735 736 737 738 |
# File 'gems/aws-sdk-lookoutequipment/lib/aws-sdk-lookoutequipment/types.rb', line 730 class DataQualitySummary < Struct.new( :insufficient_sensor_data, :missing_sensor_data, :invalid_sensor_data, :unsupported_timestamps, :duplicate_timestamps) SENSITIVE = [] include Aws::Structure end |
#missing_sensor_data ⇒ Types::MissingSensorData
Parameter that gives information about data that is missing over all the sensors in the input data.
730 731 732 733 734 735 736 737 738 |
# File 'gems/aws-sdk-lookoutequipment/lib/aws-sdk-lookoutequipment/types.rb', line 730 class DataQualitySummary < Struct.new( :insufficient_sensor_data, :missing_sensor_data, :invalid_sensor_data, :unsupported_timestamps, :duplicate_timestamps) SENSITIVE = [] include Aws::Structure end |
#unsupported_timestamps ⇒ Types::UnsupportedTimestamps
Parameter that gives information about unsupported timestamps in the input data.
730 731 732 733 734 735 736 737 738 |
# File 'gems/aws-sdk-lookoutequipment/lib/aws-sdk-lookoutequipment/types.rb', line 730 class DataQualitySummary < Struct.new( :insufficient_sensor_data, :missing_sensor_data, :invalid_sensor_data, :unsupported_timestamps, :duplicate_timestamps) SENSITIVE = [] include Aws::Structure end |