/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The client authentication information used in order to authenticate with the
* Apache Kafka cluster.See Also:
AWS
* API Reference
The type of client authentication used to connect to the Apache Kafka * cluster. Value NONE means that no client authentication is used.
*/ inline const KafkaClusterClientAuthenticationType& GetAuthenticationType() const{ return m_authenticationType; } /** *The type of client authentication used to connect to the Apache Kafka * cluster. Value NONE means that no client authentication is used.
*/ inline bool AuthenticationTypeHasBeenSet() const { return m_authenticationTypeHasBeenSet; } /** *The type of client authentication used to connect to the Apache Kafka * cluster. Value NONE means that no client authentication is used.
*/ inline void SetAuthenticationType(const KafkaClusterClientAuthenticationType& value) { m_authenticationTypeHasBeenSet = true; m_authenticationType = value; } /** *The type of client authentication used to connect to the Apache Kafka * cluster. Value NONE means that no client authentication is used.
*/ inline void SetAuthenticationType(KafkaClusterClientAuthenticationType&& value) { m_authenticationTypeHasBeenSet = true; m_authenticationType = std::move(value); } /** *The type of client authentication used to connect to the Apache Kafka * cluster. Value NONE means that no client authentication is used.
*/ inline KafkaClusterClientAuthentication& WithAuthenticationType(const KafkaClusterClientAuthenticationType& value) { SetAuthenticationType(value); return *this;} /** *The type of client authentication used to connect to the Apache Kafka * cluster. Value NONE means that no client authentication is used.
*/ inline KafkaClusterClientAuthentication& WithAuthenticationType(KafkaClusterClientAuthenticationType&& value) { SetAuthenticationType(std::move(value)); return *this;} private: KafkaClusterClientAuthenticationType m_authenticationType; bool m_authenticationTypeHasBeenSet = false; }; } // namespace Model } // namespace KafkaConnect } // namespace Aws