/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #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 operating modes in data.

See * Also:

AWS * API Reference

*/ class MultipleOperatingModes { public: AWS_LOOKOUTEQUIPMENT_API MultipleOperatingModes(); AWS_LOOKOUTEQUIPMENT_API MultipleOperatingModes(Aws::Utils::Json::JsonView jsonValue); AWS_LOOKOUTEQUIPMENT_API MultipleOperatingModes& 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 multiple * operating modes.

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

Indicates whether there is a potential data issue related to having multiple * operating modes.

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

Indicates whether there is a potential data issue related to having multiple * operating modes.

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

Indicates whether there is a potential data issue related to having multiple * operating modes.

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

Indicates whether there is a potential data issue related to having multiple * operating modes.

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

Indicates whether there is a potential data issue related to having multiple * operating modes.

*/ inline MultipleOperatingModes& WithStatus(StatisticalIssueStatus&& value) { SetStatus(std::move(value)); return *this;} private: StatisticalIssueStatus m_status; bool m_statusHasBeenSet = false; }; } // namespace Model } // namespace LookoutEquipment } // namespace Aws