{-# 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.ChimeSDKMessaging.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.ChimeSDKMessaging.Types.Identity 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 -- | The details of a user. -- -- /See:/ 'newIdentity' smart constructor. data Identity = Identity' { -- | The ARN in an Identity. arn :: Prelude.Maybe Prelude.Text, -- | The name in an Identity. name :: Prelude.Maybe (Data.Sensitive Prelude.Text) } deriving (Prelude.Eq, 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: -- -- 'arn', 'identity_arn' - The ARN in an Identity. -- -- 'name', 'identity_name' - The name in an Identity. newIdentity :: Identity newIdentity = Identity' { arn = Prelude.Nothing, name = Prelude.Nothing } -- | The ARN in an Identity. identity_arn :: Lens.Lens' Identity (Prelude.Maybe Prelude.Text) identity_arn = Lens.lens (\Identity' {arn} -> arn) (\s@Identity' {} a -> s {arn = a} :: Identity) -- | The name in an Identity. identity_name :: Lens.Lens' Identity (Prelude.Maybe Prelude.Text) identity_name = Lens.lens (\Identity' {name} -> name) (\s@Identity' {} a -> s {name = a} :: Identity) Prelude.. Lens.mapping Data._Sensitive instance Data.FromJSON Identity where parseJSON = Data.withObject "Identity" ( \x -> Identity' Prelude.<$> (x Data..:? "Arn") Prelude.<*> (x Data..:? "Name") ) instance Prelude.Hashable Identity where hashWithSalt _salt Identity' {..} = _salt `Prelude.hashWithSalt` arn `Prelude.hashWithSalt` name instance Prelude.NFData Identity where rnf Identity' {..} = Prelude.rnf arn `Prelude.seq` Prelude.rnf name