/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace Kafka { namespace Model { /** *

Indicates whether you want to turn on or turn off the Node * Exporter.

See Also:

AWS * API Reference

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

Indicates whether you want to turn on or turn off the Node * Exporter.

*/ inline bool GetEnabledInBroker() const{ return m_enabledInBroker; } /** *

Indicates whether you want to turn on or turn off the Node * Exporter.

*/ inline bool EnabledInBrokerHasBeenSet() const { return m_enabledInBrokerHasBeenSet; } /** *

Indicates whether you want to turn on or turn off the Node * Exporter.

*/ inline void SetEnabledInBroker(bool value) { m_enabledInBrokerHasBeenSet = true; m_enabledInBroker = value; } /** *

Indicates whether you want to turn on or turn off the Node * Exporter.

*/ inline NodeExporterInfo& WithEnabledInBroker(bool value) { SetEnabledInBroker(value); return *this;} private: bool m_enabledInBroker; bool m_enabledInBrokerHasBeenSet = false; }; } // namespace Model } // namespace Kafka } // namespace Aws