{-# 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.WAFRegional.GetIPSet -- Copyright : (c) 2013-2023 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- This is __AWS WAF Classic__ documentation. For more information, see -- -- in the developer guide. -- -- __For the latest version of AWS WAF__, use the AWS WAFV2 API and see the -- . -- With the latest version, AWS WAF has a single set of endpoints for -- regional and global use. -- -- Returns the IPSet that is specified by @IPSetId@. module Amazonka.WAFRegional.GetIPSet ( -- * Creating a Request GetIPSet (..), newGetIPSet, -- * Request Lenses getIPSet_iPSetId, -- * Destructuring the Response GetIPSetResponse (..), newGetIPSetResponse, -- * Response Lenses getIPSetResponse_iPSet, getIPSetResponse_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.WAFRegional.Types -- | /See:/ 'newGetIPSet' smart constructor. data GetIPSet = GetIPSet' { -- | The @IPSetId@ of the IPSet that you want to get. @IPSetId@ is returned -- by CreateIPSet and by ListIPSets. iPSetId :: Prelude.Text } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GetIPSet' 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: -- -- 'iPSetId', 'getIPSet_iPSetId' - The @IPSetId@ of the IPSet that you want to get. @IPSetId@ is returned -- by CreateIPSet and by ListIPSets. newGetIPSet :: -- | 'iPSetId' Prelude.Text -> GetIPSet newGetIPSet pIPSetId_ = GetIPSet' {iPSetId = pIPSetId_} -- | The @IPSetId@ of the IPSet that you want to get. @IPSetId@ is returned -- by CreateIPSet and by ListIPSets. getIPSet_iPSetId :: Lens.Lens' GetIPSet Prelude.Text getIPSet_iPSetId = Lens.lens (\GetIPSet' {iPSetId} -> iPSetId) (\s@GetIPSet' {} a -> s {iPSetId = a} :: GetIPSet) instance Core.AWSRequest GetIPSet where type AWSResponse GetIPSet = GetIPSetResponse request overrides = Request.postJSON (overrides defaultService) response = Response.receiveJSON ( \s h x -> GetIPSetResponse' Prelude.<$> (x Data..?> "IPSet") Prelude.<*> (Prelude.pure (Prelude.fromEnum s)) ) instance Prelude.Hashable GetIPSet where hashWithSalt _salt GetIPSet' {..} = _salt `Prelude.hashWithSalt` iPSetId instance Prelude.NFData GetIPSet where rnf GetIPSet' {..} = Prelude.rnf iPSetId instance Data.ToHeaders GetIPSet where toHeaders = Prelude.const ( Prelude.mconcat [ "X-Amz-Target" Data.=# ( "AWSWAF_Regional_20161128.GetIPSet" :: Prelude.ByteString ), "Content-Type" Data.=# ( "application/x-amz-json-1.1" :: Prelude.ByteString ) ] ) instance Data.ToJSON GetIPSet where toJSON GetIPSet' {..} = Data.object ( Prelude.catMaybes [Prelude.Just ("IPSetId" Data..= iPSetId)] ) instance Data.ToPath GetIPSet where toPath = Prelude.const "/" instance Data.ToQuery GetIPSet where toQuery = Prelude.const Prelude.mempty -- | /See:/ 'newGetIPSetResponse' smart constructor. data GetIPSetResponse = GetIPSetResponse' { -- | Information about the IPSet that you specified in the @GetIPSet@ -- request. For more information, see the following topics: -- -- - IPSet: Contains @IPSetDescriptors@, @IPSetId@, and @Name@ -- -- - @IPSetDescriptors@: Contains an array of IPSetDescriptor objects. -- Each @IPSetDescriptor@ object contains @Type@ and @Value@ iPSet :: Prelude.Maybe IPSet, -- | The response's http status code. httpStatus :: Prelude.Int } deriving (Prelude.Eq, Prelude.Read, Prelude.Show, Prelude.Generic) -- | -- Create a value of 'GetIPSetResponse' 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: -- -- 'iPSet', 'getIPSetResponse_iPSet' - Information about the IPSet that you specified in the @GetIPSet@ -- request. For more information, see the following topics: -- -- - IPSet: Contains @IPSetDescriptors@, @IPSetId@, and @Name@ -- -- - @IPSetDescriptors@: Contains an array of IPSetDescriptor objects. -- Each @IPSetDescriptor@ object contains @Type@ and @Value@ -- -- 'httpStatus', 'getIPSetResponse_httpStatus' - The response's http status code. newGetIPSetResponse :: -- | 'httpStatus' Prelude.Int -> GetIPSetResponse newGetIPSetResponse pHttpStatus_ = GetIPSetResponse' { iPSet = Prelude.Nothing, httpStatus = pHttpStatus_ } -- | Information about the IPSet that you specified in the @GetIPSet@ -- request. For more information, see the following topics: -- -- - IPSet: Contains @IPSetDescriptors@, @IPSetId@, and @Name@ -- -- - @IPSetDescriptors@: Contains an array of IPSetDescriptor objects. -- Each @IPSetDescriptor@ object contains @Type@ and @Value@ getIPSetResponse_iPSet :: Lens.Lens' GetIPSetResponse (Prelude.Maybe IPSet) getIPSetResponse_iPSet = Lens.lens (\GetIPSetResponse' {iPSet} -> iPSet) (\s@GetIPSetResponse' {} a -> s {iPSet = a} :: GetIPSetResponse) -- | The response's http status code. getIPSetResponse_httpStatus :: Lens.Lens' GetIPSetResponse Prelude.Int getIPSetResponse_httpStatus = Lens.lens (\GetIPSetResponse' {httpStatus} -> httpStatus) (\s@GetIPSetResponse' {} a -> s {httpStatus = a} :: GetIPSetResponse) instance Prelude.NFData GetIPSetResponse where rnf GetIPSetResponse' {..} = Prelude.rnf iPSet `Prelude.seq` Prelude.rnf httpStatus