/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Details for TLS client authentication for VPC connectivity.See Also:
AWS
* API Reference
TLS authentication is on or off for VPC connectivity.
* */ inline bool GetEnabled() const{ return m_enabled; } /** *TLS authentication is on or off for VPC connectivity.
* */ inline bool EnabledHasBeenSet() const { return m_enabledHasBeenSet; } /** *TLS authentication is on or off for VPC connectivity.
* */ inline void SetEnabled(bool value) { m_enabledHasBeenSet = true; m_enabled = value; } /** *TLS authentication is on or off for VPC connectivity.
* */ inline VpcConnectivityTls& WithEnabled(bool value) { SetEnabled(value); return *this;} private: bool m_enabled; bool m_enabledHasBeenSet = false; }; } // namespace Model } // namespace Kafka } // namespace Aws