/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Indicates whether you want to turn on or turn off the JMX
* Exporter.See Also:
AWS
* API Reference
Indicates whether you want to turn on or turn off the JMX * Exporter.
*/ inline bool GetEnabledInBroker() const{ return m_enabledInBroker; } /** *Indicates whether you want to turn on or turn off the JMX * Exporter.
*/ inline bool EnabledInBrokerHasBeenSet() const { return m_enabledInBrokerHasBeenSet; } /** *Indicates whether you want to turn on or turn off the JMX * Exporter.
*/ inline void SetEnabledInBroker(bool value) { m_enabledInBrokerHasBeenSet = true; m_enabledInBroker = value; } /** *Indicates whether you want to turn on or turn off the JMX * Exporter.
*/ inline JmxExporterInfo& WithEnabledInBroker(bool value) { SetEnabledInBroker(value); return *this;} private: bool m_enabledInBroker; bool m_enabledInBrokerHasBeenSet = false; }; } // namespace Model } // namespace Kafka } // namespace Aws