/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Contains logging options.See Also:
AWS
* API Reference
The IoT SiteWise logging verbosity level.
*/ inline const LoggingLevel& GetLevel() const{ return m_level; } /** *The IoT SiteWise logging verbosity level.
*/ inline bool LevelHasBeenSet() const { return m_levelHasBeenSet; } /** *The IoT SiteWise logging verbosity level.
*/ inline void SetLevel(const LoggingLevel& value) { m_levelHasBeenSet = true; m_level = value; } /** *The IoT SiteWise logging verbosity level.
*/ inline void SetLevel(LoggingLevel&& value) { m_levelHasBeenSet = true; m_level = std::move(value); } /** *The IoT SiteWise logging verbosity level.
*/ inline LoggingOptions& WithLevel(const LoggingLevel& value) { SetLevel(value); return *this;} /** *The IoT SiteWise logging verbosity level.
*/ inline LoggingOptions& WithLevel(LoggingLevel&& value) { SetLevel(std::move(value)); return *this;} private: LoggingLevel m_level; bool m_levelHasBeenSet = false; }; } // namespace Model } // namespace IoTSiteWise } // namespace Aws