{-# 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.SES.ListReceiptRuleSets -- 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 the receipt rule sets that exist under your AWS account in the -- current AWS Region. If there are additional receipt rule sets to be -- retrieved, you will receive a @NextToken@ that you can provide to the -- next call to @ListReceiptRuleSets@ to retrieve the additional entries. -- -- For information about managing receipt rule sets, see the -- . -- -- You can execute this operation no more than once per second. -- -- This operation returns paginated results. module Amazonka.SES.ListReceiptRuleSets ( -- * Creating a Request ListReceiptRuleSets (..), newListReceiptRuleSets, -- * Request Lenses listReceiptRuleSets_nextToken, -- * Destructuring the Response ListReceiptRuleSetsResponse (..), newListReceiptRuleSetsResponse, -- * Response Lenses listReceiptRuleSetsResponse_nextToken, listReceiptRuleSetsResponse_ruleSets, listReceiptRuleSetsResponse_httpStatus, ) 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 import qualified Amazonka.Request as Request import qualified Amazonka.Response as Response import Amazonka.SES.Types -- | Represents a request to list the receipt rule sets that exist under your -- AWS account. You use receipt rule sets to receive email with Amazon SES. -- For more information, see the -- . -- -- /See:/ 'newListReceiptRuleSets' smart constructor. data ListReceiptRuleSets = ListReceiptRuleSets' { -- | A token returned from a previous call to @ListReceiptRuleSets@ to -- indicate the position in the receipt rule set list. nextToken :: Prelude.Maybe Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ListReceiptRuleSets' 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: -- -- 'nextToken', 'listReceiptRuleSets_nextToken' - A token returned from a previous call to @ListReceiptRuleSets@ to -- indicate the position in the receipt rule set list. newListReceiptRuleSets :: ListReceiptRuleSets newListReceiptRuleSets = ListReceiptRuleSets' {nextToken = Prelude.Nothing} -- | A token returned from a previous call to @ListReceiptRuleSets@ to -- indicate the position in the receipt rule set list. listReceiptRuleSets_nextToken :: Lens.Lens' ListReceiptRuleSets (Prelude.Maybe Prelude.Text) listReceiptRuleSets_nextToken = Lens.lens (\ListReceiptRuleSets' {nextToken} -> nextToken) (\s@ListReceiptRuleSets' {} a -> s {nextToken = a} :: ListReceiptRuleSets) instance Core.AWSPager ListReceiptRuleSets where page rq rs | Core.stop ( rs Lens.^? listReceiptRuleSetsResponse_nextToken Prelude.. Lens._Just ) = Prelude.Nothing | Core.stop ( rs Lens.^? listReceiptRuleSetsResponse_ruleSets Prelude.. Lens._Just ) = Prelude.Nothing | Prelude.otherwise = Prelude.Just Prelude.$ rq Prelude.& listReceiptRuleSets_nextToken Lens..~ rs Lens.^? listReceiptRuleSetsResponse_nextToken Prelude.. Lens._Just instance Core.AWSRequest ListReceiptRuleSets where type AWSResponse ListReceiptRuleSets = ListReceiptRuleSetsResponse request overrides = Request.postQuery (overrides defaultService) response = Response.receiveXMLWrapper "ListReceiptRuleSetsResult" ( \s h x -> ListReceiptRuleSetsResponse' Prelude.<$> (x Data..@? "NextToken") Prelude.<*> ( x Data..@? "RuleSets" Core..!@ Prelude.mempty Prelude.>>= Core.may (Data.parseXMLList "member") ) Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable ListReceiptRuleSets where hashWithSalt _salt ListReceiptRuleSets' {..} = _salt `Prelude.hashWithSalt` nextToken instance Prelude.NFData ListReceiptRuleSets where rnf ListReceiptRuleSets' {..} = Prelude.rnf nextToken instance Data.ToHeaders ListReceiptRuleSets where toHeaders = Prelude.const Prelude.mempty instance Data.ToPath ListReceiptRuleSets where toPath = Prelude.const "/" instance Data.ToQuery ListReceiptRuleSets where toQuery ListReceiptRuleSets' {..} = Prelude.mconcat [ "Action" Data.=: ("ListReceiptRuleSets" :: Prelude.ByteString), "Version" Data.=: ("2010-12-01" :: Prelude.ByteString), "NextToken" Data.=: nextToken ] -- | A list of receipt rule sets that exist under your AWS account. -- -- /See:/ 'newListReceiptRuleSetsResponse' smart constructor. data ListReceiptRuleSetsResponse = ListReceiptRuleSetsResponse' { -- | A token indicating that there are additional receipt rule sets available -- to be listed. Pass this token to successive calls of -- @ListReceiptRuleSets@ to retrieve up to 100 receipt rule sets at a time. nextToken :: Prelude.Maybe Prelude.Text, -- | The metadata for the currently active receipt rule set. The metadata -- consists of the rule set name and the timestamp of when the rule set was -- created. ruleSets :: Prelude.Maybe [ReceiptRuleSetMetadata], -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'ListReceiptRuleSetsResponse' 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: -- -- 'nextToken', 'listReceiptRuleSetsResponse_nextToken' - A token indicating that there are additional receipt rule sets available -- to be listed. Pass this token to successive calls of -- @ListReceiptRuleSets@ to retrieve up to 100 receipt rule sets at a time. -- -- 'ruleSets', 'listReceiptRuleSetsResponse_ruleSets' - The metadata for the currently active receipt rule set. The metadata -- consists of the rule set name and the timestamp of when the rule set was -- created. -- -- 'httpStatus', 'listReceiptRuleSetsResponse_httpStatus' - The response's http status code. newListReceiptRuleSetsResponse :: -- | 'httpStatus' Prelude.Int -> ListReceiptRuleSetsResponse newListReceiptRuleSetsResponse pHttpStatus_ = ListReceiptRuleSetsResponse' { nextToken = Prelude.Nothing, ruleSets = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | A token indicating that there are additional receipt rule sets available -- to be listed. Pass this token to successive calls of -- @ListReceiptRuleSets@ to retrieve up to 100 receipt rule sets at a time. listReceiptRuleSetsResponse_nextToken :: Lens.Lens' ListReceiptRuleSetsResponse (Prelude.Maybe Prelude.Text) listReceiptRuleSetsResponse_nextToken = Lens.lens (\ListReceiptRuleSetsResponse' {nextToken} -> nextToken) (\s@ListReceiptRuleSetsResponse' {} a -> s {nextToken = a} :: ListReceiptRuleSetsResponse) -- | The metadata for the currently active receipt rule set. The metadata -- consists of the rule set name and the timestamp of when the rule set was -- created. listReceiptRuleSetsResponse_ruleSets :: Lens.Lens' ListReceiptRuleSetsResponse (Prelude.Maybe [ReceiptRuleSetMetadata]) listReceiptRuleSetsResponse_ruleSets = Lens.lens (\ListReceiptRuleSetsResponse' {ruleSets} -> ruleSets) (\s@ListReceiptRuleSetsResponse' {} a -> s {ruleSets = a} :: ListReceiptRuleSetsResponse) Prelude.. Lens.mapping Lens.coerced -- | The response's http status code. listReceiptRuleSetsResponse_httpStatus :: Lens.Lens' ListReceiptRuleSetsResponse Prelude.Int listReceiptRuleSetsResponse_httpStatus = Lens.lens (\ListReceiptRuleSetsResponse' {httpStatus} -> httpStatus) (\s@ListReceiptRuleSetsResponse' {} a -> s {httpStatus = a} :: ListReceiptRuleSetsResponse) instance Prelude.NFData ListReceiptRuleSetsResponse where rnf ListReceiptRuleSetsResponse' {..} = Prelude.rnf nextToken `Prelude.seq` Prelude.rnf ruleSets `Prelude.seq` Prelude.rnf httpStatus