{-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE DuplicateRecordFields #-} {-# LANGUAGE NamedFieldPuns #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE StrictData #-} {-# LANGUAGE TypeFamilies #-} {-# LANGUAGE NoImplicitPrelude #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Amazonka.AuditManager.GetOrganizationAdminAccount -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Returns the name of the delegated Amazon Web Services administrator -- account for the organization. module Amazonka.AuditManager.GetOrganizationAdminAccount ( -- * Creating a Request GetOrganizationAdminAccount (..), newGetOrganizationAdminAccount, -- * Destructuring the Response GetOrganizationAdminAccountResponse (..), newGetOrganizationAdminAccountResponse, -- * Response Lenses getOrganizationAdminAccountResponse_adminAccountId, getOrganizationAdminAccountResponse_organizationId, getOrganizationAdminAccountResponse_httpStatus, ) where import Amazonka.AuditManager.Types 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 import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newGetOrganizationAdminAccount' smart constructor. data GetOrganizationAdminAccount = GetOrganizationAdminAccount' { } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GetOrganizationAdminAccount' with all optional fields omitted. -- -- Use or to modify other optional fields. newGetOrganizationAdminAccount :: GetOrganizationAdminAccount newGetOrganizationAdminAccount = GetOrganizationAdminAccount' instance Core.AWSRequest GetOrganizationAdminAccount where type AWSResponse GetOrganizationAdminAccount = GetOrganizationAdminAccountResponse request overrides = Request.get (overrides defaultService) response = Response.receiveJSON ( \s h x -> GetOrganizationAdminAccountResponse' Prelude.<$> (x Data..?> "adminAccountId") Prelude.<*> (x Data..?> "organizationId") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable GetOrganizationAdminAccount where hashWithSalt _salt _ = _salt `Prelude.hashWithSalt` () instance Prelude.NFData GetOrganizationAdminAccount where rnf _ = () instance Data.ToHeaders GetOrganizationAdminAccount where toHeaders = Prelude.const ( Prelude.mconcat [ "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToPath GetOrganizationAdminAccount where toPath = Prelude.const "/account/organizationAdminAccount" instance Data.ToQuery GetOrganizationAdminAccount where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newGetOrganizationAdminAccountResponse' smart constructor. data GetOrganizationAdminAccountResponse = GetOrganizationAdminAccountResponse' { -- | The identifier for the administrator account. adminAccountId :: Prelude.Maybe Prelude.Text, -- | The identifier for the organization. organizationId :: Prelude.Maybe Prelude.Text, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GetOrganizationAdminAccountResponse' 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: -- -- 'adminAccountId', 'getOrganizationAdminAccountResponse_adminAccountId' - The identifier for the administrator account. -- -- 'organizationId', 'getOrganizationAdminAccountResponse_organizationId' - The identifier for the organization. -- -- 'httpStatus', 'getOrganizationAdminAccountResponse_httpStatus' - The response's http status code. newGetOrganizationAdminAccountResponse :: -- | 'httpStatus' Prelude.Int -> GetOrganizationAdminAccountResponse newGetOrganizationAdminAccountResponse pHttpStatus_ = GetOrganizationAdminAccountResponse' { adminAccountId = Prelude.Nothing, organizationId = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | The identifier for the administrator account. getOrganizationAdminAccountResponse_adminAccountId :: Lens.Lens' GetOrganizationAdminAccountResponse (Prelude.Maybe Prelude.Text) getOrganizationAdminAccountResponse_adminAccountId = Lens.lens (\GetOrganizationAdminAccountResponse' {adminAccountId} -> adminAccountId) (\s@GetOrganizationAdminAccountResponse' {} a -> s {adminAccountId = a} :: GetOrganizationAdminAccountResponse) -- | The identifier for the organization. getOrganizationAdminAccountResponse_organizationId :: Lens.Lens' GetOrganizationAdminAccountResponse (Prelude.Maybe Prelude.Text) getOrganizationAdminAccountResponse_organizationId = Lens.lens (\GetOrganizationAdminAccountResponse' {organizationId} -> organizationId) (\s@GetOrganizationAdminAccountResponse' {} a -> s {organizationId = a} :: GetOrganizationAdminAccountResponse) -- | The response's http status code. getOrganizationAdminAccountResponse_httpStatus :: Lens.Lens' GetOrganizationAdminAccountResponse Prelude.Int getOrganizationAdminAccountResponse_httpStatus = Lens.lens (\GetOrganizationAdminAccountResponse' {httpStatus} -> httpStatus) (\s@GetOrganizationAdminAccountResponse' {} a -> s {httpStatus = a} :: GetOrganizationAdminAccountResponse) instance Prelude.NFData GetOrganizationAdminAccountResponse where rnf GetOrganizationAdminAccountResponse' {..} = Prelude.rnf adminAccountId `Prelude.seq` Prelude.rnf organizationId `Prelude.seq` Prelude.rnf httpStatus