/**
* 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 an
* application. For more information about CloudWatch logging, see Monitoring.See
* Also:
AWS
* API Reference
Describes whether to use the default CloudWatch logging configuration for an
* application. You must set this property to CUSTOM
in order to set
* the LogLevel
or MetricsLevel
parameters.
Describes whether to use the default CloudWatch logging configuration for an
* application. You must set this property to CUSTOM
in order to set
* the LogLevel
or MetricsLevel
parameters.
Describes whether to use the default CloudWatch logging configuration for an
* application. You must set this property to CUSTOM
in order to set
* the LogLevel
or MetricsLevel
parameters.
Describes whether to use the default CloudWatch logging configuration for an
* application. You must set this property to CUSTOM
in order to set
* the LogLevel
or MetricsLevel
parameters.
Describes whether to use the default CloudWatch logging configuration for an
* application. You must set this property to CUSTOM
in order to set
* the LogLevel
or MetricsLevel
parameters.
Describes whether to use the default CloudWatch logging configuration for an
* application. You must set this property to CUSTOM
in order to set
* the LogLevel
or MetricsLevel
parameters.
Describes the granularity of the CloudWatch Logs for an application. The
* Parallelism
level is not recommended for applications with a
* Parallelism over 64 due to excessive costs.
Describes the granularity of the CloudWatch Logs for an application. The
* Parallelism
level is not recommended for applications with a
* Parallelism over 64 due to excessive costs.
Describes the granularity of the CloudWatch Logs for an application. The
* Parallelism
level is not recommended for applications with a
* Parallelism over 64 due to excessive costs.
Describes the granularity of the CloudWatch Logs for an application. The
* Parallelism
level is not recommended for applications with a
* Parallelism over 64 due to excessive costs.
Describes the granularity of the CloudWatch Logs for an application. The
* Parallelism
level is not recommended for applications with a
* Parallelism over 64 due to excessive costs.
Describes the granularity of the CloudWatch Logs for an application. The
* Parallelism
level is not recommended for applications with a
* Parallelism over 64 due to excessive costs.
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 MonitoringConfiguration& WithLogLevel(const LogLevel& value) { SetLogLevel(value); return *this;} /** *Describes the verbosity of the CloudWatch Logs for an application.
*/ inline MonitoringConfiguration& WithLogLevel(LogLevel&& value) { SetLogLevel(std::move(value)); return *this;} private: ConfigurationType m_configurationType; bool m_configurationTypeHasBeenSet = false; MetricsLevel m_metricsLevel; bool m_metricsLevelHasBeenSet = false; LogLevel m_logLevel; bool m_logLevelHasBeenSet = false; }; } // namespace Model } // namespace KinesisAnalyticsV2 } // namespace Aws