{-# 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.ElasticSearch.ListDomainsForPackage -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Lists all Amazon ES domains associated with the package. module Amazonka.ElasticSearch.ListDomainsForPackage ( -- * Creating a Request ListDomainsForPackage (..), newListDomainsForPackage, -- * Request Lenses listDomainsForPackage_maxResults, listDomainsForPackage_nextToken, listDomainsForPackage_packageID, -- * Destructuring the Response ListDomainsForPackageResponse (..), newListDomainsForPackageResponse, -- * Response Lenses listDomainsForPackageResponse_domainPackageDetailsList, listDomainsForPackageResponse_nextToken, listDomainsForPackageResponse_httpStatus, ) where import qualified Amazonka.Core as Core import qualified Amazonka.Core.Lens.Internal as Lens import qualified Amazonka.Data as Data import Amazonka.ElasticSearch.Types import qualified Amazonka.Prelude as Prelude import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response -- | Container for request parameters to @ @@ListDomainsForPackage@@ @ -- operation. -- -- /See:/ 'newListDomainsForPackage' smart constructor. data ListDomainsForPackage = ListDomainsForPackage' { -- | Limits results to a maximum number of domains. maxResults :: Prelude.Maybe Prelude.Int, -- | Used for pagination. Only necessary if a previous API call includes a -- non-null NextToken value. If provided, returns results for the next -- page. nextToken :: Prelude.Maybe Prelude.Text, -- | The package for which to list domains. packageID :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ListDomainsForPackage' 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: -- -- 'maxResults', 'listDomainsForPackage_maxResults' - Limits results to a maximum number of domains. -- -- 'nextToken', 'listDomainsForPackage_nextToken' - Used for pagination. Only necessary if a previous API call includes a -- non-null NextToken value. If provided, returns results for the next -- page. -- -- 'packageID', 'listDomainsForPackage_packageID' - The package for which to list domains. newListDomainsForPackage :: -- | 'packageID' Prelude.Text -> ListDomainsForPackage newListDomainsForPackage pPackageID_ = ListDomainsForPackage' { maxResults = Prelude.Nothing, nextToken = Prelude.Nothing, packageID = pPackageID_ } -- | Limits results to a maximum number of domains. listDomainsForPackage_maxResults :: Lens.Lens' ListDomainsForPackage (Prelude.Maybe Prelude.Int) listDomainsForPackage_maxResults = Lens.lens (\ListDomainsForPackage' {maxResults} -> maxResults) (\s@ListDomainsForPackage' {} a -> s {maxResults = a} :: ListDomainsForPackage) -- | Used for pagination. Only necessary if a previous API call includes a -- non-null NextToken value. If provided, returns results for the next -- page. listDomainsForPackage_nextToken :: Lens.Lens' ListDomainsForPackage (Prelude.Maybe Prelude.Text) listDomainsForPackage_nextToken = Lens.lens (\ListDomainsForPackage' {nextToken} -> nextToken) (\s@ListDomainsForPackage' {} a -> s {nextToken = a} :: ListDomainsForPackage) -- | The package for which to list domains. listDomainsForPackage_packageID :: Lens.Lens' ListDomainsForPackage Prelude.Text listDomainsForPackage_packageID = Lens.lens (\ListDomainsForPackage' {packageID} -> packageID) (\s@ListDomainsForPackage' {} a -> s {packageID = a} :: ListDomainsForPackage) instance Core.AWSRequest ListDomainsForPackage where type AWSResponse ListDomainsForPackage = ListDomainsForPackageResponse request overrides = Request.get (overrides defaultService) response = Response.receiveJSON ( \s h x -> ListDomainsForPackageResponse' Prelude.<$> ( x Data..?> "DomainPackageDetailsList" Core..!@ Prelude.mempty ) Prelude.<*> (x Data..?> "NextToken") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable ListDomainsForPackage where hashWithSalt _salt ListDomainsForPackage' {..} = _salt `Prelude.hashWithSalt` maxResults `Prelude.hashWithSalt` nextToken `Prelude.hashWithSalt` packageID instance Prelude.NFData ListDomainsForPackage where rnf ListDomainsForPackage' {..} = Prelude.rnf maxResults `Prelude.seq` Prelude.rnf nextToken `Prelude.seq` Prelude.rnf packageID instance Data.ToHeaders ListDomainsForPackage where toHeaders = Prelude.const Prelude.mempty instance Data.ToPath ListDomainsForPackage where toPath ListDomainsForPackage' {..} = Prelude.mconcat [ "/2015-01-01/packages/", Data.toBS packageID, "/domains" ] instance Data.ToQuery ListDomainsForPackage where toQuery ListDomainsForPackage' {..} = Prelude.mconcat [ "maxResults" Data.=: maxResults, "nextToken" Data.=: nextToken ] -- | Container for response parameters to @ @@ListDomainsForPackage@@ @ -- operation. -- -- /See:/ 'newListDomainsForPackageResponse' smart constructor. data ListDomainsForPackageResponse = ListDomainsForPackageResponse' { -- | List of @DomainPackageDetails@ objects. domainPackageDetailsList :: Prelude.Maybe [DomainPackageDetails], nextToken :: 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 'ListDomainsForPackageResponse' 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: -- -- 'domainPackageDetailsList', 'listDomainsForPackageResponse_domainPackageDetailsList' - List of @DomainPackageDetails@ objects. -- -- 'nextToken', 'listDomainsForPackageResponse_nextToken' - Undocumented member. -- -- 'httpStatus', 'listDomainsForPackageResponse_httpStatus' - The response's http status code. newListDomainsForPackageResponse :: -- | 'httpStatus' Prelude.Int -> ListDomainsForPackageResponse newListDomainsForPackageResponse pHttpStatus_ = ListDomainsForPackageResponse' { domainPackageDetailsList = Prelude.Nothing, nextToken = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | List of @DomainPackageDetails@ objects. listDomainsForPackageResponse_domainPackageDetailsList :: Lens.Lens' ListDomainsForPackageResponse (Prelude.Maybe [DomainPackageDetails]) listDomainsForPackageResponse_domainPackageDetailsList = Lens.lens (\ListDomainsForPackageResponse' {domainPackageDetailsList} -> domainPackageDetailsList) (\s@ListDomainsForPackageResponse' {} a -> s {domainPackageDetailsList = a} :: ListDomainsForPackageResponse) Prelude.. Lens.mapping Lens.coerced -- | Undocumented member. listDomainsForPackageResponse_nextToken :: Lens.Lens' ListDomainsForPackageResponse (Prelude.Maybe Prelude.Text) listDomainsForPackageResponse_nextToken = Lens.lens (\ListDomainsForPackageResponse' {nextToken} -> nextToken) (\s@ListDomainsForPackageResponse' {} a -> s {nextToken = a} :: ListDomainsForPackageResponse) -- | The response's http status code. listDomainsForPackageResponse_httpStatus :: Lens.Lens' ListDomainsForPackageResponse Prelude.Int listDomainsForPackageResponse_httpStatus = Lens.lens (\ListDomainsForPackageResponse' {httpStatus} -> httpStatus) (\s@ListDomainsForPackageResponse' {} a -> s {httpStatus = a} :: ListDomainsForPackageResponse) instance Prelude.NFData ListDomainsForPackageResponse where rnf ListDomainsForPackageResponse' {..} = Prelude.rnf domainPackageDetailsList `Prelude.seq` Prelude.rnf nextToken `Prelude.seq` Prelude.rnf httpStatus