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