{-# 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.ChimeSDKMessaging.ListChannelBans
-- 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 the users banned from a particular channel.
--
-- The @x-amz-chime-bearer@ request header is mandatory. Use the
-- @AppInstanceUserArn@ of the user that makes the API call as the value in
-- the header.
module Amazonka.ChimeSDKMessaging.ListChannelBans
  ( -- * Creating a Request
    ListChannelBans (..),
    newListChannelBans,

    -- * Request Lenses
    listChannelBans_maxResults,
    listChannelBans_nextToken,
    listChannelBans_channelArn,
    listChannelBans_chimeBearer,

    -- * Destructuring the Response
    ListChannelBansResponse (..),
    newListChannelBansResponse,

    -- * Response Lenses
    listChannelBansResponse_channelArn,
    listChannelBansResponse_channelBans,
    listChannelBansResponse_nextToken,
    listChannelBansResponse_httpStatus,
  )
where

import Amazonka.ChimeSDKMessaging.Types
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

-- | /See:/ 'newListChannelBans' smart constructor.
data ListChannelBans = ListChannelBans'
  { -- | The maximum number of bans that you want returned.
    ListChannelBans -> Maybe Natural
maxResults :: Prelude.Maybe Prelude.Natural,
    -- | The token passed by previous API calls until all requested bans are
    -- returned.
    ListChannelBans -> Maybe (Sensitive Text)
nextToken :: Prelude.Maybe (Data.Sensitive Prelude.Text),
    -- | The ARN of the channel.
    ListChannelBans -> Text
channelArn :: Prelude.Text,
    -- | The @AppInstanceUserArn@ of the user that makes the API call.
    ListChannelBans -> Text
chimeBearer :: Prelude.Text
  }
  deriving (ListChannelBans -> ListChannelBans -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListChannelBans -> ListChannelBans -> Bool
$c/= :: ListChannelBans -> ListChannelBans -> Bool
== :: ListChannelBans -> ListChannelBans -> Bool
$c== :: ListChannelBans -> ListChannelBans -> Bool
Prelude.Eq, Int -> ListChannelBans -> ShowS
[ListChannelBans] -> ShowS
ListChannelBans -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListChannelBans] -> ShowS
$cshowList :: [ListChannelBans] -> ShowS
show :: ListChannelBans -> String
$cshow :: ListChannelBans -> String
showsPrec :: Int -> ListChannelBans -> ShowS
$cshowsPrec :: Int -> ListChannelBans -> ShowS
Prelude.Show, forall x. Rep ListChannelBans x -> ListChannelBans
forall x. ListChannelBans -> Rep ListChannelBans x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ListChannelBans x -> ListChannelBans
$cfrom :: forall x. ListChannelBans -> Rep ListChannelBans x
Prelude.Generic)

-- |
-- Create a value of 'ListChannelBans' 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:
--
-- 'maxResults', 'listChannelBans_maxResults' - The maximum number of bans that you want returned.
--
-- 'nextToken', 'listChannelBans_nextToken' - The token passed by previous API calls until all requested bans are
-- returned.
--
-- 'channelArn', 'listChannelBans_channelArn' - The ARN of the channel.
--
-- 'chimeBearer', 'listChannelBans_chimeBearer' - The @AppInstanceUserArn@ of the user that makes the API call.
newListChannelBans ::
  -- | 'channelArn'
  Prelude.Text ->
  -- | 'chimeBearer'
  Prelude.Text ->
  ListChannelBans
newListChannelBans :: Text -> Text -> ListChannelBans
newListChannelBans Text
pChannelArn_ Text
pChimeBearer_ =
  ListChannelBans'
    { $sel:maxResults:ListChannelBans' :: Maybe Natural
maxResults = forall a. Maybe a
Prelude.Nothing,
      $sel:nextToken:ListChannelBans' :: Maybe (Sensitive Text)
nextToken = forall a. Maybe a
Prelude.Nothing,
      $sel:channelArn:ListChannelBans' :: Text
channelArn = Text
pChannelArn_,
      $sel:chimeBearer:ListChannelBans' :: Text
chimeBearer = Text
pChimeBearer_
    }

-- | The maximum number of bans that you want returned.
listChannelBans_maxResults :: Lens.Lens' ListChannelBans (Prelude.Maybe Prelude.Natural)
listChannelBans_maxResults :: Lens' ListChannelBans (Maybe Natural)
listChannelBans_maxResults = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListChannelBans' {Maybe Natural
maxResults :: Maybe Natural
$sel:maxResults:ListChannelBans' :: ListChannelBans -> Maybe Natural
maxResults} -> Maybe Natural
maxResults) (\s :: ListChannelBans
s@ListChannelBans' {} Maybe Natural
a -> ListChannelBans
s {$sel:maxResults:ListChannelBans' :: Maybe Natural
maxResults = Maybe Natural
a} :: ListChannelBans)

-- | The token passed by previous API calls until all requested bans are
-- returned.
listChannelBans_nextToken :: Lens.Lens' ListChannelBans (Prelude.Maybe Prelude.Text)
listChannelBans_nextToken :: Lens' ListChannelBans (Maybe Text)
listChannelBans_nextToken = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListChannelBans' {Maybe (Sensitive Text)
nextToken :: Maybe (Sensitive Text)
$sel:nextToken:ListChannelBans' :: ListChannelBans -> Maybe (Sensitive Text)
nextToken} -> Maybe (Sensitive Text)
nextToken) (\s :: ListChannelBans
s@ListChannelBans' {} Maybe (Sensitive Text)
a -> ListChannelBans
s {$sel:nextToken:ListChannelBans' :: Maybe (Sensitive Text)
nextToken = Maybe (Sensitive Text)
a} :: ListChannelBans) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping forall a. Iso' (Sensitive a) a
Data._Sensitive

-- | The ARN of the channel.
listChannelBans_channelArn :: Lens.Lens' ListChannelBans Prelude.Text
listChannelBans_channelArn :: Lens' ListChannelBans Text
listChannelBans_channelArn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListChannelBans' {Text
channelArn :: Text
$sel:channelArn:ListChannelBans' :: ListChannelBans -> Text
channelArn} -> Text
channelArn) (\s :: ListChannelBans
s@ListChannelBans' {} Text
a -> ListChannelBans
s {$sel:channelArn:ListChannelBans' :: Text
channelArn = Text
a} :: ListChannelBans)

-- | The @AppInstanceUserArn@ of the user that makes the API call.
listChannelBans_chimeBearer :: Lens.Lens' ListChannelBans Prelude.Text
listChannelBans_chimeBearer :: Lens' ListChannelBans Text
listChannelBans_chimeBearer = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListChannelBans' {Text
chimeBearer :: Text
$sel:chimeBearer:ListChannelBans' :: ListChannelBans -> Text
chimeBearer} -> Text
chimeBearer) (\s :: ListChannelBans
s@ListChannelBans' {} Text
a -> ListChannelBans
s {$sel:chimeBearer:ListChannelBans' :: Text
chimeBearer = Text
a} :: ListChannelBans)

instance Core.AWSRequest ListChannelBans where
  type
    AWSResponse ListChannelBans =
      ListChannelBansResponse
  request :: (Service -> Service) -> ListChannelBans -> Request ListChannelBans
request Service -> Service
overrides =
    forall a. ToRequest a => Service -> a -> Request a
Request.get (Service -> Service
overrides Service
defaultService)
  response :: forall (m :: * -> *).
MonadResource m =>
(ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy ListChannelBans
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse ListChannelBans)))
response =
    forall (m :: * -> *) a.
MonadResource m =>
(Int -> ResponseHeaders -> Object -> Either String (AWSResponse a))
-> (ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy a
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse a)))
Response.receiveJSON
      ( \Int
s ResponseHeaders
h Object
x ->
          Maybe Text
-> Maybe [ChannelBanSummary]
-> Maybe (Sensitive Text)
-> Int
-> ListChannelBansResponse
ListChannelBansResponse'
            forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> (Object
x forall a. FromJSON a => Object -> Key -> Either String (Maybe a)
Data..?> Key
"ChannelArn")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Either String (Maybe a)
Data..?> Key
"ChannelBans" forall (f :: * -> *) a. Functor f => f (Maybe a) -> a -> f a
Core..!@ forall a. Monoid a => a
Prelude.mempty)
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x forall a. FromJSON a => Object -> Key -> Either String (Maybe a)
Data..?> Key
"NextToken")
            forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure (forall a. Enum a => a -> Int
Prelude.fromEnum Int
s))
      )

instance Prelude.Hashable ListChannelBans where
  hashWithSalt :: Int -> ListChannelBans -> Int
hashWithSalt Int
_salt ListChannelBans' {Maybe Natural
Maybe (Sensitive Text)
Text
chimeBearer :: Text
channelArn :: Text
nextToken :: Maybe (Sensitive Text)
maxResults :: Maybe Natural
$sel:chimeBearer:ListChannelBans' :: ListChannelBans -> Text
$sel:channelArn:ListChannelBans' :: ListChannelBans -> Text
$sel:nextToken:ListChannelBans' :: ListChannelBans -> Maybe (Sensitive Text)
$sel:maxResults:ListChannelBans' :: ListChannelBans -> Maybe Natural
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Natural
maxResults
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe (Sensitive Text)
nextToken
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
channelArn
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Text
chimeBearer

instance Prelude.NFData ListChannelBans where
  rnf :: ListChannelBans -> ()
rnf ListChannelBans' {Maybe Natural
Maybe (Sensitive Text)
Text
chimeBearer :: Text
channelArn :: Text
nextToken :: Maybe (Sensitive Text)
maxResults :: Maybe Natural
$sel:chimeBearer:ListChannelBans' :: ListChannelBans -> Text
$sel:channelArn:ListChannelBans' :: ListChannelBans -> Text
$sel:nextToken:ListChannelBans' :: ListChannelBans -> Maybe (Sensitive Text)
$sel:maxResults:ListChannelBans' :: ListChannelBans -> Maybe Natural
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Natural
maxResults
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe (Sensitive Text)
nextToken
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
channelArn
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Text
chimeBearer

instance Data.ToHeaders ListChannelBans where
  toHeaders :: ListChannelBans -> ResponseHeaders
toHeaders ListChannelBans' {Maybe Natural
Maybe (Sensitive Text)
Text
chimeBearer :: Text
channelArn :: Text
nextToken :: Maybe (Sensitive Text)
maxResults :: Maybe Natural
$sel:chimeBearer:ListChannelBans' :: ListChannelBans -> Text
$sel:channelArn:ListChannelBans' :: ListChannelBans -> Text
$sel:nextToken:ListChannelBans' :: ListChannelBans -> Maybe (Sensitive Text)
$sel:maxResults:ListChannelBans' :: ListChannelBans -> Maybe Natural
..} =
    forall a. Monoid a => [a] -> a
Prelude.mconcat
      [HeaderName
"x-amz-chime-bearer" forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Data.=# Text
chimeBearer]

instance Data.ToPath ListChannelBans where
  toPath :: ListChannelBans -> ByteString
toPath ListChannelBans' {Maybe Natural
Maybe (Sensitive Text)
Text
chimeBearer :: Text
channelArn :: Text
nextToken :: Maybe (Sensitive Text)
maxResults :: Maybe Natural
$sel:chimeBearer:ListChannelBans' :: ListChannelBans -> Text
$sel:channelArn:ListChannelBans' :: ListChannelBans -> Text
$sel:nextToken:ListChannelBans' :: ListChannelBans -> Maybe (Sensitive Text)
$sel:maxResults:ListChannelBans' :: ListChannelBans -> Maybe Natural
..} =
    forall a. Monoid a => [a] -> a
Prelude.mconcat
      [ByteString
"/channels/", forall a. ToByteString a => a -> ByteString
Data.toBS Text
channelArn, ByteString
"/bans"]

instance Data.ToQuery ListChannelBans where
  toQuery :: ListChannelBans -> QueryString
toQuery ListChannelBans' {Maybe Natural
Maybe (Sensitive Text)
Text
chimeBearer :: Text
channelArn :: Text
nextToken :: Maybe (Sensitive Text)
maxResults :: Maybe Natural
$sel:chimeBearer:ListChannelBans' :: ListChannelBans -> Text
$sel:channelArn:ListChannelBans' :: ListChannelBans -> Text
$sel:nextToken:ListChannelBans' :: ListChannelBans -> Maybe (Sensitive Text)
$sel:maxResults:ListChannelBans' :: ListChannelBans -> Maybe Natural
..} =
    forall a. Monoid a => [a] -> a
Prelude.mconcat
      [ ByteString
"max-results" forall a. ToQuery a => ByteString -> a -> QueryString
Data.=: Maybe Natural
maxResults,
        ByteString
"next-token" forall a. ToQuery a => ByteString -> a -> QueryString
Data.=: Maybe (Sensitive Text)
nextToken
      ]

-- | /See:/ 'newListChannelBansResponse' smart constructor.
data ListChannelBansResponse = ListChannelBansResponse'
  { -- | The ARN of the channel.
    ListChannelBansResponse -> Maybe Text
channelArn :: Prelude.Maybe Prelude.Text,
    -- | The information for each requested ban.
    ListChannelBansResponse -> Maybe [ChannelBanSummary]
channelBans :: Prelude.Maybe [ChannelBanSummary],
    -- | The token passed by previous API calls until all requested bans are
    -- returned.
    ListChannelBansResponse -> Maybe (Sensitive Text)
nextToken :: Prelude.Maybe (Data.Sensitive Prelude.Text),
    -- | The response's http status code.
    ListChannelBansResponse -> Int
httpStatus :: Prelude.Int
  }
  deriving (ListChannelBansResponse -> ListChannelBansResponse -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListChannelBansResponse -> ListChannelBansResponse -> Bool
$c/= :: ListChannelBansResponse -> ListChannelBansResponse -> Bool
== :: ListChannelBansResponse -> ListChannelBansResponse -> Bool
$c== :: ListChannelBansResponse -> ListChannelBansResponse -> Bool
Prelude.Eq, Int -> ListChannelBansResponse -> ShowS
[ListChannelBansResponse] -> ShowS
ListChannelBansResponse -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListChannelBansResponse] -> ShowS
$cshowList :: [ListChannelBansResponse] -> ShowS
show :: ListChannelBansResponse -> String
$cshow :: ListChannelBansResponse -> String
showsPrec :: Int -> ListChannelBansResponse -> ShowS
$cshowsPrec :: Int -> ListChannelBansResponse -> ShowS
Prelude.Show, forall x. Rep ListChannelBansResponse x -> ListChannelBansResponse
forall x. ListChannelBansResponse -> Rep ListChannelBansResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ListChannelBansResponse x -> ListChannelBansResponse
$cfrom :: forall x. ListChannelBansResponse -> Rep ListChannelBansResponse x
Prelude.Generic)

-- |
-- Create a value of 'ListChannelBansResponse' 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:
--
-- 'channelArn', 'listChannelBansResponse_channelArn' - The ARN of the channel.
--
-- 'channelBans', 'listChannelBansResponse_channelBans' - The information for each requested ban.
--
-- 'nextToken', 'listChannelBansResponse_nextToken' - The token passed by previous API calls until all requested bans are
-- returned.
--
-- 'httpStatus', 'listChannelBansResponse_httpStatus' - The response's http status code.
newListChannelBansResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  ListChannelBansResponse
newListChannelBansResponse :: Int -> ListChannelBansResponse
newListChannelBansResponse Int
pHttpStatus_ =
  ListChannelBansResponse'
    { $sel:channelArn:ListChannelBansResponse' :: Maybe Text
channelArn =
        forall a. Maybe a
Prelude.Nothing,
      $sel:channelBans:ListChannelBansResponse' :: Maybe [ChannelBanSummary]
channelBans = forall a. Maybe a
Prelude.Nothing,
      $sel:nextToken:ListChannelBansResponse' :: Maybe (Sensitive Text)
nextToken = forall a. Maybe a
Prelude.Nothing,
      $sel:httpStatus:ListChannelBansResponse' :: Int
httpStatus = Int
pHttpStatus_
    }

-- | The ARN of the channel.
listChannelBansResponse_channelArn :: Lens.Lens' ListChannelBansResponse (Prelude.Maybe Prelude.Text)
listChannelBansResponse_channelArn :: Lens' ListChannelBansResponse (Maybe Text)
listChannelBansResponse_channelArn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListChannelBansResponse' {Maybe Text
channelArn :: Maybe Text
$sel:channelArn:ListChannelBansResponse' :: ListChannelBansResponse -> Maybe Text
channelArn} -> Maybe Text
channelArn) (\s :: ListChannelBansResponse
s@ListChannelBansResponse' {} Maybe Text
a -> ListChannelBansResponse
s {$sel:channelArn:ListChannelBansResponse' :: Maybe Text
channelArn = Maybe Text
a} :: ListChannelBansResponse)

-- | The information for each requested ban.
listChannelBansResponse_channelBans :: Lens.Lens' ListChannelBansResponse (Prelude.Maybe [ChannelBanSummary])
listChannelBansResponse_channelBans :: Lens' ListChannelBansResponse (Maybe [ChannelBanSummary])
listChannelBansResponse_channelBans = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListChannelBansResponse' {Maybe [ChannelBanSummary]
channelBans :: Maybe [ChannelBanSummary]
$sel:channelBans:ListChannelBansResponse' :: ListChannelBansResponse -> Maybe [ChannelBanSummary]
channelBans} -> Maybe [ChannelBanSummary]
channelBans) (\s :: ListChannelBansResponse
s@ListChannelBansResponse' {} Maybe [ChannelBanSummary]
a -> ListChannelBansResponse
s {$sel:channelBans:ListChannelBansResponse' :: Maybe [ChannelBanSummary]
channelBans = Maybe [ChannelBanSummary]
a} :: ListChannelBansResponse) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

-- | The token passed by previous API calls until all requested bans are
-- returned.
listChannelBansResponse_nextToken :: Lens.Lens' ListChannelBansResponse (Prelude.Maybe Prelude.Text)
listChannelBansResponse_nextToken :: Lens' ListChannelBansResponse (Maybe Text)
listChannelBansResponse_nextToken = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListChannelBansResponse' {Maybe (Sensitive Text)
nextToken :: Maybe (Sensitive Text)
$sel:nextToken:ListChannelBansResponse' :: ListChannelBansResponse -> Maybe (Sensitive Text)
nextToken} -> Maybe (Sensitive Text)
nextToken) (\s :: ListChannelBansResponse
s@ListChannelBansResponse' {} Maybe (Sensitive Text)
a -> ListChannelBansResponse
s {$sel:nextToken:ListChannelBansResponse' :: Maybe (Sensitive Text)
nextToken = Maybe (Sensitive Text)
a} :: ListChannelBansResponse) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall (f :: * -> *) (g :: * -> *) s t a b.
(Functor f, Functor g) =>
AnIso s t a b -> Iso (f s) (g t) (f a) (g b)
Lens.mapping forall a. Iso' (Sensitive a) a
Data._Sensitive

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

instance Prelude.NFData ListChannelBansResponse where
  rnf :: ListChannelBansResponse -> ()
rnf ListChannelBansResponse' {Int
Maybe [ChannelBanSummary]
Maybe Text
Maybe (Sensitive Text)
httpStatus :: Int
nextToken :: Maybe (Sensitive Text)
channelBans :: Maybe [ChannelBanSummary]
channelArn :: Maybe Text
$sel:httpStatus:ListChannelBansResponse' :: ListChannelBansResponse -> Int
$sel:nextToken:ListChannelBansResponse' :: ListChannelBansResponse -> Maybe (Sensitive Text)
$sel:channelBans:ListChannelBansResponse' :: ListChannelBansResponse -> Maybe [ChannelBanSummary]
$sel:channelArn:ListChannelBansResponse' :: ListChannelBansResponse -> Maybe Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
channelArn
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe [ChannelBanSummary]
channelBans
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe (Sensitive Text)
nextToken
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Int
httpStatus