/** * 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 KinesisAnalyticsV2 { namespace Model { /** *

The monitoring configuration for Apache Zeppelin within a Kinesis Data * Analytics Studio notebook.

See Also:

AWS * API Reference

*/ class ZeppelinMonitoringConfigurationDescription { public: AWS_KINESISANALYTICSV2_API ZeppelinMonitoringConfigurationDescription(); AWS_KINESISANALYTICSV2_API ZeppelinMonitoringConfigurationDescription(Aws::Utils::Json::JsonView jsonValue); AWS_KINESISANALYTICSV2_API ZeppelinMonitoringConfigurationDescription& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_KINESISANALYTICSV2_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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