/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes configuration parameters for Amazon CloudWatch logging for a
* Kinesis Data Analytics Studio notebook. For more information about CloudWatch
* logging, see Monitoring.See
* Also:
AWS
* API Reference
The verbosity of the CloudWatch Logs for an application.
*/ inline const LogLevel& GetLogLevel() const{ return m_logLevel; } /** *The verbosity of the CloudWatch Logs for an application.
*/ inline bool LogLevelHasBeenSet() const { return m_logLevelHasBeenSet; } /** *The verbosity of the CloudWatch Logs for an application.
*/ inline void SetLogLevel(const LogLevel& value) { m_logLevelHasBeenSet = true; m_logLevel = value; } /** *The verbosity of the CloudWatch Logs for an application.
*/ inline void SetLogLevel(LogLevel&& value) { m_logLevelHasBeenSet = true; m_logLevel = std::move(value); } /** *The verbosity of the CloudWatch Logs for an application.
*/ inline ZeppelinMonitoringConfiguration& WithLogLevel(const LogLevel& value) { SetLogLevel(value); return *this;} /** *The verbosity of the CloudWatch Logs for an application.
*/ inline ZeppelinMonitoringConfiguration& WithLogLevel(LogLevel&& value) { SetLogLevel(std::move(value)); return *this;} private: LogLevel m_logLevel; bool m_logLevelHasBeenSet = false; }; } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws