/** * 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 information on monotonic values in the data. *

See Also:

AWS * API Reference

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

Indicates whether there is a potential data issue related to having * monotonic values.

*/ inline const StatisticalIssueStatus& GetStatus() const{ return m_status; } /** *

Indicates whether there is a potential data issue related to having * monotonic values.

*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *

Indicates whether there is a potential data issue related to having * monotonic values.

*/ inline void SetStatus(const StatisticalIssueStatus& value) { m_statusHasBeenSet = true; m_status = value; } /** *

Indicates whether there is a potential data issue related to having * monotonic values.

*/ inline void SetStatus(StatisticalIssueStatus&& value) { m_statusHasBeenSet = true; m_status = std::move(value); } /** *

Indicates whether there is a potential data issue related to having * monotonic values.

*/ inline MonotonicValues& WithStatus(const StatisticalIssueStatus& value) { SetStatus(value); return *this;} /** *

Indicates whether there is a potential data issue related to having * monotonic values.

*/ inline MonotonicValues& WithStatus(StatisticalIssueStatus&& value) { SetStatus(std::move(value)); return *this;} /** *

Indicates the monotonicity of values. Can be INCREASING, DECREASING, or * STATIC.

*/ inline const Monotonicity& GetMonotonicity() const{ return m_monotonicity; } /** *

Indicates the monotonicity of values. Can be INCREASING, DECREASING, or * STATIC.

*/ inline bool MonotonicityHasBeenSet() const { return m_monotonicityHasBeenSet; } /** *

Indicates the monotonicity of values. Can be INCREASING, DECREASING, or * STATIC.

*/ inline void SetMonotonicity(const Monotonicity& value) { m_monotonicityHasBeenSet = true; m_monotonicity = value; } /** *

Indicates the monotonicity of values. Can be INCREASING, DECREASING, or * STATIC.

*/ inline void SetMonotonicity(Monotonicity&& value) { m_monotonicityHasBeenSet = true; m_monotonicity = std::move(value); } /** *

Indicates the monotonicity of values. Can be INCREASING, DECREASING, or * STATIC.

*/ inline MonotonicValues& WithMonotonicity(const Monotonicity& value) { SetMonotonicity(value); return *this;} /** *

Indicates the monotonicity of values. Can be INCREASING, DECREASING, or * STATIC.

*/ inline MonotonicValues& WithMonotonicity(Monotonicity&& value) { SetMonotonicity(std::move(value)); return *this;} private: StatisticalIssueStatus m_status; bool m_statusHasBeenSet = false; Monotonicity m_monotonicity; bool m_monotonicityHasBeenSet = false; }; } // namespace Model } // namespace LookoutEquipment } // namespace Aws