{-# 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.IAM.Types.PolicyUser -- 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.IAM.Types.PolicyUser 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 -- | Contains information about a user that a managed policy is attached to. -- -- This data type is used as a response element in the -- ListEntitiesForPolicy operation. -- -- For more information about managed policies, refer to -- -- in the /IAM User Guide/. -- -- /See:/ 'newPolicyUser' smart constructor. data PolicyUser = PolicyUser' { -- | The stable and unique string identifying the user. For more information -- about IDs, see -- -- in the /IAM User Guide/. userId :: Prelude.Maybe Prelude.Text, -- | The name (friendly name, not ARN) identifying the user. userName :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'PolicyUser' 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: -- -- 'userId', 'policyUser_userId' - The stable and unique string identifying the user. For more information -- about IDs, see -- -- in the /IAM User Guide/. -- -- 'userName', 'policyUser_userName' - The name (friendly name, not ARN) identifying the user. newPolicyUser :: PolicyUser newPolicyUser = PolicyUser' { userId = Prelude.Nothing, userName = Prelude.Nothing } -- | The stable and unique string identifying the user. For more information -- about IDs, see -- -- in the /IAM User Guide/. policyUser_userId :: Lens.Lens' PolicyUser (Prelude.Maybe Prelude.Text) policyUser_userId = Lens.lens (\PolicyUser' {userId} -> userId) (\s@PolicyUser' {} a -> s {userId = a} :: PolicyUser) -- | The name (friendly name, not ARN) identifying the user. policyUser_userName :: Lens.Lens' PolicyUser (Prelude.Maybe Prelude.Text) policyUser_userName = Lens.lens (\PolicyUser' {userName} -> userName) (\s@PolicyUser' {} a -> s {userName = a} :: PolicyUser) instance Data.FromXML PolicyUser where parseXML x = PolicyUser' Prelude.<$> (x Data..@? "UserId") Prelude.<*> (x Data..@? "UserName") instance Prelude.Hashable PolicyUser where hashWithSalt _salt PolicyUser' {..} = _salt `Prelude.hashWithSalt` userId `Prelude.hashWithSalt` userName instance Prelude.NFData PolicyUser where rnf PolicyUser' {..} = Prelude.rnf userId `Prelude.seq` Prelude.rnf userName