/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Entity that comprises information on operating modes in data. See
* Also:
AWS
* API Reference
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