{-# 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.OpenSearchServerless.GetAccountSettings -- 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 account-level settings related to OpenSearch Serverless. module Amazonka.OpenSearchServerless.GetAccountSettings ( -- * Creating a Request GetAccountSettings (..), newGetAccountSettings, -- * Destructuring the Response GetAccountSettingsResponse (..), newGetAccountSettingsResponse, -- * Response Lenses getAccountSettingsResponse_accountSettingsDetail, getAccountSettingsResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.OpenSearchServerless.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | /See:/ 'newGetAccountSettings' smart constructor. data GetAccountSettings = GetAccountSettings' { } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GetAccountSettings' with all optional fields omitted. -- -- Use or to modify other optional fields. newGetAccountSettings :: GetAccountSettings newGetAccountSettings = GetAccountSettings' instance Core.AWSRequest GetAccountSettings where type AWSResponse GetAccountSettings = GetAccountSettingsResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> GetAccountSettingsResponse' Prelude.<$> (x Data..?> "accountSettingsDetail") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable GetAccountSettings where hashWithSalt _salt _ = _salt `Prelude.hashWithSalt` () instance Prelude.NFData GetAccountSettings where rnf _ = () instance Data.ToHeaders GetAccountSettings where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "OpenSearchServerless.GetAccountSettings" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.0" :: Prelude.ByteString ) ] ) instance Data.ToJSON GetAccountSettings where toJSON = Prelude.const (Data.Object Prelude.mempty) instance Data.ToPath GetAccountSettings where toPath = Prelude.const "/" instance Data.ToQuery GetAccountSettings where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newGetAccountSettingsResponse' smart constructor. data GetAccountSettingsResponse = GetAccountSettingsResponse' { -- | OpenSearch Serverless-related details for the current account. accountSettingsDetail :: Prelude.Maybe AccountSettingsDetail, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GetAccountSettingsResponse' 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: -- -- 'accountSettingsDetail', 'getAccountSettingsResponse_accountSettingsDetail' - OpenSearch Serverless-related details for the current account. -- -- 'httpStatus', 'getAccountSettingsResponse_httpStatus' - The response's http status code. newGetAccountSettingsResponse :: -- | 'httpStatus' Prelude.Int -> GetAccountSettingsResponse newGetAccountSettingsResponse pHttpStatus_ = GetAccountSettingsResponse' { accountSettingsDetail = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | OpenSearch Serverless-related details for the current account. getAccountSettingsResponse_accountSettingsDetail :: Lens.Lens' GetAccountSettingsResponse (Prelude.Maybe AccountSettingsDetail) getAccountSettingsResponse_accountSettingsDetail = Lens.lens (\GetAccountSettingsResponse' {accountSettingsDetail} -> accountSettingsDetail) (\s@GetAccountSettingsResponse' {} a -> s {accountSettingsDetail = a} :: GetAccountSettingsResponse) -- | The response's http status code. getAccountSettingsResponse_httpStatus :: Lens.Lens' GetAccountSettingsResponse Prelude.Int getAccountSettingsResponse_httpStatus = Lens.lens (\GetAccountSettingsResponse' {httpStatus} -> httpStatus) (\s@GetAccountSettingsResponse' {} a -> s {httpStatus = a} :: GetAccountSettingsResponse) instance Prelude.NFData GetAccountSettingsResponse where rnf GetAccountSettingsResponse' {..} = Prelude.rnf accountSettingsDetail `Prelude.seq` Prelude.rnf httpStatus