/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace LookoutEquipment { namespace Model { /** *

Entity that comprises aggregated information on sensors having insufficient * data.

See Also:

AWS * API Reference

*/ class InsufficientSensorData { public: AWS_LOOKOUTEQUIPMENT_API InsufficientSensorData(); AWS_LOOKOUTEQUIPMENT_API InsufficientSensorData(Aws::Utils::Json::JsonView jsonValue); AWS_LOOKOUTEQUIPMENT_API InsufficientSensorData& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_LOOKOUTEQUIPMENT_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

Parameter that describes the total number of sensors that have data * completely missing for it.

*/ inline const MissingCompleteSensorData& GetMissingCompleteSensorData() const{ return m_missingCompleteSensorData; } /** *

Parameter that describes the total number of sensors that have data * completely missing for it.

*/ inline bool MissingCompleteSensorDataHasBeenSet() const { return m_missingCompleteSensorDataHasBeenSet; } /** *

Parameter that describes the total number of sensors that have data * completely missing for it.

*/ inline void SetMissingCompleteSensorData(const MissingCompleteSensorData& value) { m_missingCompleteSensorDataHasBeenSet = true; m_missingCompleteSensorData = value; } /** *

Parameter that describes the total number of sensors that have data * completely missing for it.

*/ inline void SetMissingCompleteSensorData(MissingCompleteSensorData&& value) { m_missingCompleteSensorDataHasBeenSet = true; m_missingCompleteSensorData = std::move(value); } /** *

Parameter that describes the total number of sensors that have data * completely missing for it.

*/ inline InsufficientSensorData& WithMissingCompleteSensorData(const MissingCompleteSensorData& value) { SetMissingCompleteSensorData(value); return *this;} /** *

Parameter that describes the total number of sensors that have data * completely missing for it.

*/ inline InsufficientSensorData& WithMissingCompleteSensorData(MissingCompleteSensorData&& value) { SetMissingCompleteSensorData(std::move(value)); return *this;} /** *

Parameter that describes the total number of sensors that have a short date * range of less than 90 days of data overall.

*/ inline const SensorsWithShortDateRange& GetSensorsWithShortDateRange() const{ return m_sensorsWithShortDateRange; } /** *

Parameter that describes the total number of sensors that have a short date * range of less than 90 days of data overall.

*/ inline bool SensorsWithShortDateRangeHasBeenSet() const { return m_sensorsWithShortDateRangeHasBeenSet; } /** *

Parameter that describes the total number of sensors that have a short date * range of less than 90 days of data overall.

*/ inline void SetSensorsWithShortDateRange(const SensorsWithShortDateRange& value) { m_sensorsWithShortDateRangeHasBeenSet = true; m_sensorsWithShortDateRange = value; } /** *

Parameter that describes the total number of sensors that have a short date * range of less than 90 days of data overall.

*/ inline void SetSensorsWithShortDateRange(SensorsWithShortDateRange&& value) { m_sensorsWithShortDateRangeHasBeenSet = true; m_sensorsWithShortDateRange = std::move(value); } /** *

Parameter that describes the total number of sensors that have a short date * range of less than 90 days of data overall.

*/ inline InsufficientSensorData& WithSensorsWithShortDateRange(const SensorsWithShortDateRange& value) { SetSensorsWithShortDateRange(value); return *this;} /** *

Parameter that describes the total number of sensors that have a short date * range of less than 90 days of data overall.

*/ inline InsufficientSensorData& WithSensorsWithShortDateRange(SensorsWithShortDateRange&& value) { SetSensorsWithShortDateRange(std::move(value)); return *this;} private: MissingCompleteSensorData m_missingCompleteSensorData; bool m_missingCompleteSensorDataHasBeenSet = false; SensorsWithShortDateRange m_sensorsWithShortDateRange; bool m_sensorsWithShortDateRangeHasBeenSet = false; }; } // namespace Model } // namespace LookoutEquipment } // namespace Aws