/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Includes all client authentication information.See Also:
AWS
* API Reference
Details for ClientAuthentication using TLS.
*/ inline const Tls& GetTls() const{ return m_tls; } /** *Details for ClientAuthentication using TLS.
*/ inline bool TlsHasBeenSet() const { return m_tlsHasBeenSet; } /** *Details for ClientAuthentication using TLS.
*/ inline void SetTls(const Tls& value) { m_tlsHasBeenSet = true; m_tls = value; } /** *Details for ClientAuthentication using TLS.
*/ inline void SetTls(Tls&& value) { m_tlsHasBeenSet = true; m_tls = std::move(value); } /** *Details for ClientAuthentication using TLS.
*/ inline ClientAuthentication& WithTls(const Tls& value) { SetTls(value); return *this;} /** *Details for ClientAuthentication using TLS.
*/ inline ClientAuthentication& WithTls(Tls&& value) { SetTls(std::move(value)); return *this;} private: Tls m_tls; bool m_tlsHasBeenSet; }; } // namespace Model } // namespace Kafka } // namespace Aws