{-# 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.Identity -- 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.Identity where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.EKS.Types.OIDC import qualified Amazonka.Prelude as Prelude -- | An object representing an identity provider. -- -- /See:/ 'newIdentity' smart constructor. data Identity = Identity' { -- | An object representing the -- identity provider information. oidc :: Prelude.Maybe OIDC } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'Identity' 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: -- -- 'oidc', 'identity_oidc' - An object representing the -- identity provider information. newIdentity :: Identity newIdentity = Identity' {oidc = Prelude.Nothing} -- | An object representing the -- identity provider information. identity_oidc :: Lens.Lens' Identity (Prelude.Maybe OIDC) identity_oidc = Lens.lens (\Identity' {oidc} -> oidc) (\s@Identity' {} a -> s {oidc = a} :: Identity) instance Data.FromJSON Identity where parseJSON = Data.withObject "Identity" (\x -> Identity' Prelude.<$> (x Data..:? "oidc")) instance Prelude.Hashable Identity where hashWithSalt _salt Identity' {..} = _salt `Prelude.hashWithSalt` oidc instance Prelude.NFData Identity where rnf Identity' {..} = Prelude.rnf oidc