{-# 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.MacieV2.Types.UserIdentityRoot -- 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.MacieV2.Types.UserIdentityRoot 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 -- | Provides information about an Amazon Web Services account and entity -- that performed an action on an affected resource. The action was -- performed using the credentials for your Amazon Web Services account. -- -- /See:/ 'newUserIdentityRoot' smart constructor. data UserIdentityRoot = UserIdentityRoot' { -- | The unique identifier for the Amazon Web Services account. accountId :: Prelude.Maybe Prelude.Text, -- | The Amazon Resource Name (ARN) of the principal that performed the -- action. The last section of the ARN contains the name of the user or -- role that performed the action. arn :: Prelude.Maybe Prelude.Text, -- | The unique identifier for the entity that performed the action. principalId :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'UserIdentityRoot' 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: -- -- 'accountId', 'userIdentityRoot_accountId' - The unique identifier for the Amazon Web Services account. -- -- 'arn', 'userIdentityRoot_arn' - The Amazon Resource Name (ARN) of the principal that performed the -- action. The last section of the ARN contains the name of the user or -- role that performed the action. -- -- 'principalId', 'userIdentityRoot_principalId' - The unique identifier for the entity that performed the action. newUserIdentityRoot :: UserIdentityRoot newUserIdentityRoot = UserIdentityRoot' { accountId = Prelude.Nothing, arn = Prelude.Nothing, principalId = Prelude.Nothing } -- | The unique identifier for the Amazon Web Services account. userIdentityRoot_accountId :: Lens.Lens' UserIdentityRoot (Prelude.Maybe Prelude.Text) userIdentityRoot_accountId = Lens.lens (\UserIdentityRoot' {accountId} -> accountId) (\s@UserIdentityRoot' {} a -> s {accountId = a} :: UserIdentityRoot) -- | The Amazon Resource Name (ARN) of the principal that performed the -- action. The last section of the ARN contains the name of the user or -- role that performed the action. userIdentityRoot_arn :: Lens.Lens' UserIdentityRoot (Prelude.Maybe Prelude.Text) userIdentityRoot_arn = Lens.lens (\UserIdentityRoot' {arn} -> arn) (\s@UserIdentityRoot' {} a -> s {arn = a} :: UserIdentityRoot) -- | The unique identifier for the entity that performed the action. userIdentityRoot_principalId :: Lens.Lens' UserIdentityRoot (Prelude.Maybe Prelude.Text) userIdentityRoot_principalId = Lens.lens (\UserIdentityRoot' {principalId} -> principalId) (\s@UserIdentityRoot' {} a -> s {principalId = a} :: UserIdentityRoot) instance Data.FromJSON UserIdentityRoot where parseJSON = Data.withObject "UserIdentityRoot" ( \x -> UserIdentityRoot' Prelude.<$> (x Data..:? "accountId") Prelude.<*> (x Data..:? "arn") Prelude.<*> (x Data..:? "principalId") ) instance Prelude.Hashable UserIdentityRoot where hashWithSalt _salt UserIdentityRoot' {..} = _salt `Prelude.hashWithSalt` accountId `Prelude.hashWithSalt` arn `Prelude.hashWithSalt` principalId instance Prelude.NFData UserIdentityRoot where rnf UserIdentityRoot' {..} = Prelude.rnf accountId `Prelude.seq` Prelude.rnf arn `Prelude.seq` Prelude.rnf principalId