{-# 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.EKS.Types.Provider -- 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.EKS.Types.Provider where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import qualified Amazonka.Prelude as Prelude -- | Identifies the Key Management Service (KMS) key used to encrypt the -- secrets. -- -- /See:/ 'newProvider' smart constructor. data Provider = Provider' { -- | Amazon Resource Name (ARN) or alias of the KMS key. The KMS key must be -- symmetric, created in the same region as the cluster, and if the KMS key -- was created in a different account, the user must have access to the KMS -- key. For more information, see -- -- in the /Key Management Service Developer Guide/. keyArn :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'Provider' 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: -- -- 'keyArn', 'provider_keyArn' - Amazon Resource Name (ARN) or alias of the KMS key. The KMS key must be -- symmetric, created in the same region as the cluster, and if the KMS key -- was created in a different account, the user must have access to the KMS -- key. For more information, see -- -- in the /Key Management Service Developer Guide/. newProvider :: Provider newProvider = Provider' {keyArn = Prelude.Nothing} -- | Amazon Resource Name (ARN) or alias of the KMS key. The KMS key must be -- symmetric, created in the same region as the cluster, and if the KMS key -- was created in a different account, the user must have access to the KMS -- key. For more information, see -- -- in the /Key Management Service Developer Guide/. provider_keyArn :: Lens.Lens' Provider (Prelude.Maybe Prelude.Text) provider_keyArn = Lens.lens (\Provider' {keyArn} -> keyArn) (\s@Provider' {} a -> s {keyArn = a} :: Provider) instance Data.FromJSON Provider where parseJSON = Data.withObject "Provider" (\x -> Provider' Prelude.<$> (x Data..:? "keyArn")) instance Prelude.Hashable Provider where hashWithSalt _salt Provider' {..} = _salt `Prelude.hashWithSalt` keyArn instance Prelude.NFData Provider where rnf Provider' {..} = Prelude.rnf keyArn instance Data.ToJSON Provider where toJSON Provider' {..} = Data.object ( Prelude.catMaybes [("keyArn" Data..=) Prelude.<$> keyArn] )