{-# 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.UpdateIPSet
-- Copyright   : (c) 2013-2021 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com>
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- This is __AWS WAF Classic__ documentation. For more information, see
-- <https://docs.aws.amazon.com/waf/latest/developerguide/classic-waf-chapter.html AWS WAF Classic>
-- in the developer guide.
--
-- __For the latest version of AWS WAF__, use the AWS WAFV2 API and see the
-- <https://docs.aws.amazon.com/waf/latest/developerguide/waf-chapter.html AWS WAF Developer Guide>.
-- With the latest version, AWS WAF has a single set of endpoints for
-- regional and global use.
--
-- Inserts or deletes IPSetDescriptor objects in an @IPSet@. For each
-- @IPSetDescriptor@ object, you specify the following values:
--
-- -   Whether to insert or delete the object from the array. If you want
--     to change an @IPSetDescriptor@ object, you delete the existing
--     object and add a new one.
--
-- -   The IP address version, @IPv4@ or @IPv6@.
--
-- -   The IP address in CIDR notation, for example, @192.0.2.0\/24@ (for
--     the range of IP addresses from @192.0.2.0@ to @192.0.2.255@) or
--     @192.0.2.44\/32@ (for the individual IP address @192.0.2.44@).
--
-- AWS WAF supports IPv4 address ranges: \/8 and any range between \/16
-- through \/32. AWS WAF supports IPv6 address ranges: \/24, \/32, \/48,
-- \/56, \/64, and \/128. For more information about CIDR notation, see the
-- Wikipedia entry
-- <https://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing Classless Inter-Domain Routing>.
--
-- IPv6 addresses can be represented using any of the following formats:
--
-- -   1111:0000:0000:0000:0000:0000:0000:0111\/128
--
-- -   1111:0:0:0:0:0:0:0111\/128
--
-- -   1111::0111\/128
--
-- -   1111::111\/128
--
-- You use an @IPSet@ to specify which web requests you want to allow or
-- block based on the IP addresses that the requests originated from. For
-- example, if you\'re receiving a lot of requests from one or a small
-- number of IP addresses and you want to block the requests, you can
-- create an @IPSet@ that specifies those IP addresses, and then configure
-- AWS WAF to block the requests.
--
-- To create and configure an @IPSet@, perform the following steps:
--
-- 1.  Submit a CreateIPSet request.
--
-- 2.  Use GetChangeToken to get the change token that you provide in the
--     @ChangeToken@ parameter of an UpdateIPSet request.
--
-- 3.  Submit an @UpdateIPSet@ request to specify the IP addresses that you
--     want AWS WAF to watch for.
--
-- When you update an @IPSet@, you specify the IP addresses that you want
-- to add and\/or the IP addresses that you want to delete. If you want to
-- change an IP address, you delete the existing IP address and add the new
-- one.
--
-- You can insert a maximum of 1000 addresses in a single request.
--
-- For more information about how to use the AWS WAF API to allow or block
-- HTTP requests, see the
-- <https://docs.aws.amazon.com/waf/latest/developerguide/ AWS WAF Developer Guide>.
module Amazonka.WAFRegional.UpdateIPSet
  ( -- * Creating a Request
    UpdateIPSet (..),
    newUpdateIPSet,

    -- * Request Lenses
    updateIPSet_iPSetId,
    updateIPSet_changeToken,
    updateIPSet_updates,

    -- * Destructuring the Response
    UpdateIPSetResponse (..),
    newUpdateIPSetResponse,

    -- * Response Lenses
    updateIPSetResponse_changeToken,
    updateIPSetResponse_httpStatus,
  )
where

import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
import Amazonka.WAFRegional.Types

-- | /See:/ 'newUpdateIPSet' smart constructor.
data UpdateIPSet = UpdateIPSet'
  { -- | The @IPSetId@ of the IPSet that you want to update. @IPSetId@ is
    -- returned by CreateIPSet and by ListIPSets.
    UpdateIPSet -> Text
iPSetId :: Prelude.Text,
    -- | The value returned by the most recent call to GetChangeToken.
    UpdateIPSet -> Text
changeToken :: Prelude.Text,
    -- | An array of @IPSetUpdate@ objects that you want to insert into or delete
    -- from an IPSet. For more information, see the applicable data types:
    --
    -- -   IPSetUpdate: Contains @Action@ and @IPSetDescriptor@
    --
    -- -   IPSetDescriptor: Contains @Type@ and @Value@
    --
    -- You can insert a maximum of 1000 addresses in a single request.
    UpdateIPSet -> NonEmpty IPSetUpdate
updates :: Prelude.NonEmpty IPSetUpdate
  }
  deriving (UpdateIPSet -> UpdateIPSet -> Bool
(UpdateIPSet -> UpdateIPSet -> Bool)
-> (UpdateIPSet -> UpdateIPSet -> Bool) -> Eq UpdateIPSet
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateIPSet -> UpdateIPSet -> Bool
$c/= :: UpdateIPSet -> UpdateIPSet -> Bool
== :: UpdateIPSet -> UpdateIPSet -> Bool
$c== :: UpdateIPSet -> UpdateIPSet -> Bool
Prelude.Eq, ReadPrec [UpdateIPSet]
ReadPrec UpdateIPSet
Int -> ReadS UpdateIPSet
ReadS [UpdateIPSet]
(Int -> ReadS UpdateIPSet)
-> ReadS [UpdateIPSet]
-> ReadPrec UpdateIPSet
-> ReadPrec [UpdateIPSet]
-> Read UpdateIPSet
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateIPSet]
$creadListPrec :: ReadPrec [UpdateIPSet]
readPrec :: ReadPrec UpdateIPSet
$creadPrec :: ReadPrec UpdateIPSet
readList :: ReadS [UpdateIPSet]
$creadList :: ReadS [UpdateIPSet]
readsPrec :: Int -> ReadS UpdateIPSet
$creadsPrec :: Int -> ReadS UpdateIPSet
Prelude.Read, Int -> UpdateIPSet -> ShowS
[UpdateIPSet] -> ShowS
UpdateIPSet -> String
(Int -> UpdateIPSet -> ShowS)
-> (UpdateIPSet -> String)
-> ([UpdateIPSet] -> ShowS)
-> Show UpdateIPSet
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateIPSet] -> ShowS
$cshowList :: [UpdateIPSet] -> ShowS
show :: UpdateIPSet -> String
$cshow :: UpdateIPSet -> String
showsPrec :: Int -> UpdateIPSet -> ShowS
$cshowsPrec :: Int -> UpdateIPSet -> ShowS
Prelude.Show, (forall x. UpdateIPSet -> Rep UpdateIPSet x)
-> (forall x. Rep UpdateIPSet x -> UpdateIPSet)
-> Generic UpdateIPSet
forall x. Rep UpdateIPSet x -> UpdateIPSet
forall x. UpdateIPSet -> Rep UpdateIPSet x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep UpdateIPSet x -> UpdateIPSet
$cfrom :: forall x. UpdateIPSet -> Rep UpdateIPSet x
Prelude.Generic)

-- |
-- Create a value of 'UpdateIPSet' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'iPSetId', 'updateIPSet_iPSetId' - The @IPSetId@ of the IPSet that you want to update. @IPSetId@ is
-- returned by CreateIPSet and by ListIPSets.
--
-- 'changeToken', 'updateIPSet_changeToken' - The value returned by the most recent call to GetChangeToken.
--
-- 'updates', 'updateIPSet_updates' - An array of @IPSetUpdate@ objects that you want to insert into or delete
-- from an IPSet. For more information, see the applicable data types:
--
-- -   IPSetUpdate: Contains @Action@ and @IPSetDescriptor@
--
-- -   IPSetDescriptor: Contains @Type@ and @Value@
--
-- You can insert a maximum of 1000 addresses in a single request.
newUpdateIPSet ::
  -- | 'iPSetId'
  Prelude.Text ->
  -- | 'changeToken'
  Prelude.Text ->
  -- | 'updates'
  Prelude.NonEmpty IPSetUpdate ->
  UpdateIPSet
newUpdateIPSet :: Text -> Text -> NonEmpty IPSetUpdate -> UpdateIPSet
newUpdateIPSet Text
pIPSetId_ Text
pChangeToken_ NonEmpty IPSetUpdate
pUpdates_ =
  UpdateIPSet' :: Text -> Text -> NonEmpty IPSetUpdate -> UpdateIPSet
UpdateIPSet'
    { $sel:iPSetId:UpdateIPSet' :: Text
iPSetId = Text
pIPSetId_,
      $sel:changeToken:UpdateIPSet' :: Text
changeToken = Text
pChangeToken_,
      $sel:updates:UpdateIPSet' :: NonEmpty IPSetUpdate
updates = Tagged (NonEmpty IPSetUpdate) (Identity (NonEmpty IPSetUpdate))
-> Tagged (NonEmpty IPSetUpdate) (Identity (NonEmpty IPSetUpdate))
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced (Tagged (NonEmpty IPSetUpdate) (Identity (NonEmpty IPSetUpdate))
 -> Tagged (NonEmpty IPSetUpdate) (Identity (NonEmpty IPSetUpdate)))
-> NonEmpty IPSetUpdate -> NonEmpty IPSetUpdate
forall t b. AReview t b -> b -> t
Lens.# NonEmpty IPSetUpdate
pUpdates_
    }

-- | The @IPSetId@ of the IPSet that you want to update. @IPSetId@ is
-- returned by CreateIPSet and by ListIPSets.
updateIPSet_iPSetId :: Lens.Lens' UpdateIPSet Prelude.Text
updateIPSet_iPSetId :: (Text -> f Text) -> UpdateIPSet -> f UpdateIPSet
updateIPSet_iPSetId = (UpdateIPSet -> Text)
-> (UpdateIPSet -> Text -> UpdateIPSet)
-> Lens UpdateIPSet UpdateIPSet Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateIPSet' {Text
iPSetId :: Text
$sel:iPSetId:UpdateIPSet' :: UpdateIPSet -> Text
iPSetId} -> Text
iPSetId) (\s :: UpdateIPSet
s@UpdateIPSet' {} Text
a -> UpdateIPSet
s {$sel:iPSetId:UpdateIPSet' :: Text
iPSetId = Text
a} :: UpdateIPSet)

-- | The value returned by the most recent call to GetChangeToken.
updateIPSet_changeToken :: Lens.Lens' UpdateIPSet Prelude.Text
updateIPSet_changeToken :: (Text -> f Text) -> UpdateIPSet -> f UpdateIPSet
updateIPSet_changeToken = (UpdateIPSet -> Text)
-> (UpdateIPSet -> Text -> UpdateIPSet)
-> Lens UpdateIPSet UpdateIPSet Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateIPSet' {Text
changeToken :: Text
$sel:changeToken:UpdateIPSet' :: UpdateIPSet -> Text
changeToken} -> Text
changeToken) (\s :: UpdateIPSet
s@UpdateIPSet' {} Text
a -> UpdateIPSet
s {$sel:changeToken:UpdateIPSet' :: Text
changeToken = Text
a} :: UpdateIPSet)

-- | An array of @IPSetUpdate@ objects that you want to insert into or delete
-- from an IPSet. For more information, see the applicable data types:
--
-- -   IPSetUpdate: Contains @Action@ and @IPSetDescriptor@
--
-- -   IPSetDescriptor: Contains @Type@ and @Value@
--
-- You can insert a maximum of 1000 addresses in a single request.
updateIPSet_updates :: Lens.Lens' UpdateIPSet (Prelude.NonEmpty IPSetUpdate)
updateIPSet_updates :: (NonEmpty IPSetUpdate -> f (NonEmpty IPSetUpdate))
-> UpdateIPSet -> f UpdateIPSet
updateIPSet_updates = (UpdateIPSet -> NonEmpty IPSetUpdate)
-> (UpdateIPSet -> NonEmpty IPSetUpdate -> UpdateIPSet)
-> Lens
     UpdateIPSet
     UpdateIPSet
     (NonEmpty IPSetUpdate)
     (NonEmpty IPSetUpdate)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateIPSet' {NonEmpty IPSetUpdate
updates :: NonEmpty IPSetUpdate
$sel:updates:UpdateIPSet' :: UpdateIPSet -> NonEmpty IPSetUpdate
updates} -> NonEmpty IPSetUpdate
updates) (\s :: UpdateIPSet
s@UpdateIPSet' {} NonEmpty IPSetUpdate
a -> UpdateIPSet
s {$sel:updates:UpdateIPSet' :: NonEmpty IPSetUpdate
updates = NonEmpty IPSetUpdate
a} :: UpdateIPSet) ((NonEmpty IPSetUpdate -> f (NonEmpty IPSetUpdate))
 -> UpdateIPSet -> f UpdateIPSet)
-> ((NonEmpty IPSetUpdate -> f (NonEmpty IPSetUpdate))
    -> NonEmpty IPSetUpdate -> f (NonEmpty IPSetUpdate))
-> (NonEmpty IPSetUpdate -> f (NonEmpty IPSetUpdate))
-> UpdateIPSet
-> f UpdateIPSet
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. (NonEmpty IPSetUpdate -> f (NonEmpty IPSetUpdate))
-> NonEmpty IPSetUpdate -> f (NonEmpty IPSetUpdate)
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

instance Core.AWSRequest UpdateIPSet where
  type AWSResponse UpdateIPSet = UpdateIPSetResponse
  request :: UpdateIPSet -> Request UpdateIPSet
request = Service -> UpdateIPSet -> Request UpdateIPSet
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
  response :: Logger
-> Service
-> Proxy UpdateIPSet
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse UpdateIPSet)))
response =
    (Int
 -> ResponseHeaders
 -> Object
 -> Either String (AWSResponse UpdateIPSet))
-> Logger
-> Service
-> Proxy UpdateIPSet
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse UpdateIPSet)))
forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> Object -> Either String (AWSResponse a))
-> Logger
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveJSON
      ( \Int
s ResponseHeaders
h Object
x ->
          Maybe Text -> Int -> UpdateIPSetResponse
UpdateIPSetResponse'
            (Maybe Text -> Int -> UpdateIPSetResponse)
-> Either String (Maybe Text)
-> Either String (Int -> UpdateIPSetResponse)
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x Object -> Text -> Either String (Maybe Text)
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"ChangeToken")
            Either String (Int -> UpdateIPSetResponse)
-> Either String Int -> Either String UpdateIPSetResponse
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Int -> Either String Int
forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure (Int -> Int
forall a. Enum a => a -> Int
Prelude.fromEnum Int
s))
      )

instance Prelude.Hashable UpdateIPSet

instance Prelude.NFData UpdateIPSet

instance Core.ToHeaders UpdateIPSet where
  toHeaders :: UpdateIPSet -> ResponseHeaders
toHeaders =
    ResponseHeaders -> UpdateIPSet -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const
      ( [ResponseHeaders] -> ResponseHeaders
forall a. Monoid a => [a] -> a
Prelude.mconcat
          [ HeaderName
"X-Amz-Target"
              HeaderName -> ByteString -> ResponseHeaders
forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Core.=# ( ByteString
"AWSWAF_Regional_20161128.UpdateIPSet" ::
                          Prelude.ByteString
                      ),
            HeaderName
"Content-Type"
              HeaderName -> ByteString -> ResponseHeaders
forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Core.=# ( ByteString
"application/x-amz-json-1.1" ::
                          Prelude.ByteString
                      )
          ]
      )

instance Core.ToJSON UpdateIPSet where
  toJSON :: UpdateIPSet -> Value
toJSON UpdateIPSet' {NonEmpty IPSetUpdate
Text
updates :: NonEmpty IPSetUpdate
changeToken :: Text
iPSetId :: Text
$sel:updates:UpdateIPSet' :: UpdateIPSet -> NonEmpty IPSetUpdate
$sel:changeToken:UpdateIPSet' :: UpdateIPSet -> Text
$sel:iPSetId:UpdateIPSet' :: UpdateIPSet -> Text
..} =
    [Pair] -> Value
Core.object
      ( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"IPSetId" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
iPSetId),
            Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"ChangeToken" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
changeToken),
            Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"Updates" Text -> NonEmpty IPSetUpdate -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= NonEmpty IPSetUpdate
updates)
          ]
      )

instance Core.ToPath UpdateIPSet where
  toPath :: UpdateIPSet -> ByteString
toPath = ByteString -> UpdateIPSet -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"

instance Core.ToQuery UpdateIPSet where
  toQuery :: UpdateIPSet -> QueryString
toQuery = QueryString -> UpdateIPSet -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty

-- | /See:/ 'newUpdateIPSetResponse' smart constructor.
data UpdateIPSetResponse = UpdateIPSetResponse'
  { -- | The @ChangeToken@ that you used to submit the @UpdateIPSet@ request. You
    -- can also use this value to query the status of the request. For more
    -- information, see GetChangeTokenStatus.
    UpdateIPSetResponse -> Maybe Text
changeToken :: Prelude.Maybe Prelude.Text,
    -- | The response's http status code.
    UpdateIPSetResponse -> Int
httpStatus :: Prelude.Int
  }
  deriving (UpdateIPSetResponse -> UpdateIPSetResponse -> Bool
(UpdateIPSetResponse -> UpdateIPSetResponse -> Bool)
-> (UpdateIPSetResponse -> UpdateIPSetResponse -> Bool)
-> Eq UpdateIPSetResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: UpdateIPSetResponse -> UpdateIPSetResponse -> Bool
$c/= :: UpdateIPSetResponse -> UpdateIPSetResponse -> Bool
== :: UpdateIPSetResponse -> UpdateIPSetResponse -> Bool
$c== :: UpdateIPSetResponse -> UpdateIPSetResponse -> Bool
Prelude.Eq, ReadPrec [UpdateIPSetResponse]
ReadPrec UpdateIPSetResponse
Int -> ReadS UpdateIPSetResponse
ReadS [UpdateIPSetResponse]
(Int -> ReadS UpdateIPSetResponse)
-> ReadS [UpdateIPSetResponse]
-> ReadPrec UpdateIPSetResponse
-> ReadPrec [UpdateIPSetResponse]
-> Read UpdateIPSetResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [UpdateIPSetResponse]
$creadListPrec :: ReadPrec [UpdateIPSetResponse]
readPrec :: ReadPrec UpdateIPSetResponse
$creadPrec :: ReadPrec UpdateIPSetResponse
readList :: ReadS [UpdateIPSetResponse]
$creadList :: ReadS [UpdateIPSetResponse]
readsPrec :: Int -> ReadS UpdateIPSetResponse
$creadsPrec :: Int -> ReadS UpdateIPSetResponse
Prelude.Read, Int -> UpdateIPSetResponse -> ShowS
[UpdateIPSetResponse] -> ShowS
UpdateIPSetResponse -> String
(Int -> UpdateIPSetResponse -> ShowS)
-> (UpdateIPSetResponse -> String)
-> ([UpdateIPSetResponse] -> ShowS)
-> Show UpdateIPSetResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [UpdateIPSetResponse] -> ShowS
$cshowList :: [UpdateIPSetResponse] -> ShowS
show :: UpdateIPSetResponse -> String
$cshow :: UpdateIPSetResponse -> String
showsPrec :: Int -> UpdateIPSetResponse -> ShowS
$cshowsPrec :: Int -> UpdateIPSetResponse -> ShowS
Prelude.Show, (forall x. UpdateIPSetResponse -> Rep UpdateIPSetResponse x)
-> (forall x. Rep UpdateIPSetResponse x -> UpdateIPSetResponse)
-> Generic UpdateIPSetResponse
forall x. Rep UpdateIPSetResponse x -> UpdateIPSetResponse
forall x. UpdateIPSetResponse -> Rep UpdateIPSetResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep UpdateIPSetResponse x -> UpdateIPSetResponse
$cfrom :: forall x. UpdateIPSetResponse -> Rep UpdateIPSetResponse x
Prelude.Generic)

-- |
-- Create a value of 'UpdateIPSetResponse' with all optional fields omitted.
--
-- Use <https://hackage.haskell.org/package/generic-lens generic-lens> or <https://hackage.haskell.org/package/optics optics> to modify other optional fields.
--
-- The following record fields are available, with the corresponding lenses provided
-- for backwards compatibility:
--
-- 'changeToken', 'updateIPSetResponse_changeToken' - The @ChangeToken@ that you used to submit the @UpdateIPSet@ request. You
-- can also use this value to query the status of the request. For more
-- information, see GetChangeTokenStatus.
--
-- 'httpStatus', 'updateIPSetResponse_httpStatus' - The response's http status code.
newUpdateIPSetResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  UpdateIPSetResponse
newUpdateIPSetResponse :: Int -> UpdateIPSetResponse
newUpdateIPSetResponse Int
pHttpStatus_ =
  UpdateIPSetResponse' :: Maybe Text -> Int -> UpdateIPSetResponse
UpdateIPSetResponse'
    { $sel:changeToken:UpdateIPSetResponse' :: Maybe Text
changeToken = Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:httpStatus:UpdateIPSetResponse' :: Int
httpStatus = Int
pHttpStatus_
    }

-- | The @ChangeToken@ that you used to submit the @UpdateIPSet@ request. You
-- can also use this value to query the status of the request. For more
-- information, see GetChangeTokenStatus.
updateIPSetResponse_changeToken :: Lens.Lens' UpdateIPSetResponse (Prelude.Maybe Prelude.Text)
updateIPSetResponse_changeToken :: (Maybe Text -> f (Maybe Text))
-> UpdateIPSetResponse -> f UpdateIPSetResponse
updateIPSetResponse_changeToken = (UpdateIPSetResponse -> Maybe Text)
-> (UpdateIPSetResponse -> Maybe Text -> UpdateIPSetResponse)
-> Lens
     UpdateIPSetResponse UpdateIPSetResponse (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateIPSetResponse' {Maybe Text
changeToken :: Maybe Text
$sel:changeToken:UpdateIPSetResponse' :: UpdateIPSetResponse -> Maybe Text
changeToken} -> Maybe Text
changeToken) (\s :: UpdateIPSetResponse
s@UpdateIPSetResponse' {} Maybe Text
a -> UpdateIPSetResponse
s {$sel:changeToken:UpdateIPSetResponse' :: Maybe Text
changeToken = Maybe Text
a} :: UpdateIPSetResponse)

-- | The response's http status code.
updateIPSetResponse_httpStatus :: Lens.Lens' UpdateIPSetResponse Prelude.Int
updateIPSetResponse_httpStatus :: (Int -> f Int) -> UpdateIPSetResponse -> f UpdateIPSetResponse
updateIPSetResponse_httpStatus = (UpdateIPSetResponse -> Int)
-> (UpdateIPSetResponse -> Int -> UpdateIPSetResponse)
-> Lens UpdateIPSetResponse UpdateIPSetResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\UpdateIPSetResponse' {Int
httpStatus :: Int
$sel:httpStatus:UpdateIPSetResponse' :: UpdateIPSetResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: UpdateIPSetResponse
s@UpdateIPSetResponse' {} Int
a -> UpdateIPSetResponse
s {$sel:httpStatus:UpdateIPSetResponse' :: Int
httpStatus = Int
a} :: UpdateIPSetResponse)

instance Prelude.NFData UpdateIPSetResponse