{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.KafkaConnect.Types.KafkaClusterClientAuthenticationDescription -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) module Amazonka.KafkaConnect.Types.KafkaClusterClientAuthenticationDescription where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.KafkaConnect.Types.KafkaClusterClientAuthenticationType import qualified Amazonka.Prelude as Prelude -- | The client authentication information used in order to authenticate with -- the Apache Kafka cluster. -- -- /See:/ 'newKafkaClusterClientAuthenticationDescription' smart constructor. data KafkaClusterClientAuthenticationDescription = KafkaClusterClientAuthenticationDescription' { -- | The type of client authentication used to connect to the Apache Kafka -- cluster. Value NONE means that no client authentication is used. authenticationType :: Prelude.Maybe KafkaClusterClientAuthenticationType } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'KafkaClusterClientAuthenticationDescription' with all optional fields omitted. -- -- Use or to modify other optional fields. -- -- The following record fields are available, with the corresponding lenses provided -- for backwards compatibility: -- -- 'authenticationType', 'kafkaClusterClientAuthenticationDescription_authenticationType' - The type of client authentication used to connect to the Apache Kafka -- cluster. Value NONE means that no client authentication is used. newKafkaClusterClientAuthenticationDescription :: KafkaClusterClientAuthenticationDescription newKafkaClusterClientAuthenticationDescription = KafkaClusterClientAuthenticationDescription' { authenticationType = Prelude.Nothing } -- | The type of client authentication used to connect to the Apache Kafka -- cluster. Value NONE means that no client authentication is used. kafkaClusterClientAuthenticationDescription_authenticationType :: Lens.Lens' KafkaClusterClientAuthenticationDescription (Prelude.Maybe KafkaClusterClientAuthenticationType) kafkaClusterClientAuthenticationDescription_authenticationType = Lens.lens (\KafkaClusterClientAuthenticationDescription' {authenticationType} -> authenticationType) (\s@KafkaClusterClientAuthenticationDescription' {} a -> s {authenticationType = a} :: KafkaClusterClientAuthenticationDescription) instance Data.FromJSON KafkaClusterClientAuthenticationDescription where parseJSON = Data.withObject "KafkaClusterClientAuthenticationDescription" ( \x -> KafkaClusterClientAuthenticationDescription' Prelude.<$> (x Data..:? "authenticationType") ) instance Prelude.Hashable KafkaClusterClientAuthenticationDescription where hashWithSalt _salt KafkaClusterClientAuthenticationDescription' {..} = _salt `Prelude.hashWithSalt` authenticationType instance Prelude.NFData KafkaClusterClientAuthenticationDescription where rnf KafkaClusterClientAuthenticationDescription' {..} = Prelude.rnf authenticationType