/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Entity that comprises information on sensors that have shorter date range.
* See Also:
AWS
* API Reference
Indicates the number of sensors that have less than 90 days of data.
*/ inline int GetAffectedSensorCount() const{ return m_affectedSensorCount; } /** *Indicates the number of sensors that have less than 90 days of data.
*/ inline bool AffectedSensorCountHasBeenSet() const { return m_affectedSensorCountHasBeenSet; } /** *Indicates the number of sensors that have less than 90 days of data.
*/ inline void SetAffectedSensorCount(int value) { m_affectedSensorCountHasBeenSet = true; m_affectedSensorCount = value; } /** *Indicates the number of sensors that have less than 90 days of data.
*/ inline SensorsWithShortDateRange& WithAffectedSensorCount(int value) { SetAffectedSensorCount(value); return *this;} private: int m_affectedSensorCount; bool m_affectedSensorCountHasBeenSet = false; }; } // namespace Model } // namespace LookoutEquipment } // namespace Aws