{-# 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.IVS.ListChannels
-- Copyright   : (c) 2013-2023 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Gets summary information about all channels in your account, in the
-- Amazon Web Services region where the API request is processed. This list
-- can be filtered to match a specified name or recording-configuration
-- ARN. Filters are mutually exclusive and cannot be used together. If you
-- try to use both filters, you will get an error (409 ConflictException).
--
-- This operation returns paginated results.
module Amazonka.IVS.ListChannels
  ( -- * Creating a Request
    ListChannels (..),
    newListChannels,

    -- * Request Lenses
    listChannels_filterByName,
    listChannels_filterByRecordingConfigurationArn,
    listChannels_maxResults,
    listChannels_nextToken,

    -- * Destructuring the Response
    ListChannelsResponse (..),
    newListChannelsResponse,

    -- * Response Lenses
    listChannelsResponse_nextToken,
    listChannelsResponse_httpStatus,
    listChannelsResponse_channels,
  )
where

import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import Amazonka.IVS.Types
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response

-- | /See:/ 'newListChannels' smart constructor.
data ListChannels = ListChannels'
  { -- | Filters the channel list to match the specified name.
    ListChannels -> Maybe Text
filterByName :: Prelude.Maybe Prelude.Text,
    -- | Filters the channel list to match the specified recording-configuration
    -- ARN.
    ListChannels -> Maybe Text
filterByRecordingConfigurationArn :: Prelude.Maybe Prelude.Text,
    -- | Maximum number of channels to return. Default: 100.
    ListChannels -> Maybe Natural
maxResults :: Prelude.Maybe Prelude.Natural,
    -- | The first channel to retrieve. This is used for pagination; see the
    -- @nextToken@ response field.
    ListChannels -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text
  }
  deriving (ListChannels -> ListChannels -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListChannels -> ListChannels -> Bool
$c/= :: ListChannels -> ListChannels -> Bool
== :: ListChannels -> ListChannels -> Bool
$c== :: ListChannels -> ListChannels -> Bool
Prelude.Eq, ReadPrec [ListChannels]
ReadPrec ListChannels
Int -> ReadS ListChannels
ReadS [ListChannels]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ListChannels]
$creadListPrec :: ReadPrec [ListChannels]
readPrec :: ReadPrec ListChannels
$creadPrec :: ReadPrec ListChannels
readList :: ReadS [ListChannels]
$creadList :: ReadS [ListChannels]
readsPrec :: Int -> ReadS ListChannels
$creadsPrec :: Int -> ReadS ListChannels
Prelude.Read, Int -> ListChannels -> ShowS
[ListChannels] -> ShowS
ListChannels -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListChannels] -> ShowS
$cshowList :: [ListChannels] -> ShowS
show :: ListChannels -> String
$cshow :: ListChannels -> String
showsPrec :: Int -> ListChannels -> ShowS
$cshowsPrec :: Int -> ListChannels -> ShowS
Prelude.Show, forall x. Rep ListChannels x -> ListChannels
forall x. ListChannels -> Rep ListChannels x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ListChannels x -> ListChannels
$cfrom :: forall x. ListChannels -> Rep ListChannels x
Prelude.Generic)

-- |
-- Create a value of 'ListChannels' 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:
--
-- 'filterByName', 'listChannels_filterByName' - Filters the channel list to match the specified name.
--
-- 'filterByRecordingConfigurationArn', 'listChannels_filterByRecordingConfigurationArn' - Filters the channel list to match the specified recording-configuration
-- ARN.
--
-- 'maxResults', 'listChannels_maxResults' - Maximum number of channels to return. Default: 100.
--
-- 'nextToken', 'listChannels_nextToken' - The first channel to retrieve. This is used for pagination; see the
-- @nextToken@ response field.
newListChannels ::
  ListChannels
newListChannels :: ListChannels
newListChannels =
  ListChannels'
    { $sel:filterByName:ListChannels' :: Maybe Text
filterByName = forall a. Maybe a
Prelude.Nothing,
      $sel:filterByRecordingConfigurationArn:ListChannels' :: Maybe Text
filterByRecordingConfigurationArn = forall a. Maybe a
Prelude.Nothing,
      $sel:maxResults:ListChannels' :: Maybe Natural
maxResults = forall a. Maybe a
Prelude.Nothing,
      $sel:nextToken:ListChannels' :: Maybe Text
nextToken = forall a. Maybe a
Prelude.Nothing
    }

-- | Filters the channel list to match the specified name.
listChannels_filterByName :: Lens.Lens' ListChannels (Prelude.Maybe Prelude.Text)
listChannels_filterByName :: Lens' ListChannels (Maybe Text)
listChannels_filterByName = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListChannels' {Maybe Text
filterByName :: Maybe Text
$sel:filterByName:ListChannels' :: ListChannels -> Maybe Text
filterByName} -> Maybe Text
filterByName) (\s :: ListChannels
s@ListChannels' {} Maybe Text
a -> ListChannels
s {$sel:filterByName:ListChannels' :: Maybe Text
filterByName = Maybe Text
a} :: ListChannels)

-- | Filters the channel list to match the specified recording-configuration
-- ARN.
listChannels_filterByRecordingConfigurationArn :: Lens.Lens' ListChannels (Prelude.Maybe Prelude.Text)
listChannels_filterByRecordingConfigurationArn :: Lens' ListChannels (Maybe Text)
listChannels_filterByRecordingConfigurationArn = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListChannels' {Maybe Text
filterByRecordingConfigurationArn :: Maybe Text
$sel:filterByRecordingConfigurationArn:ListChannels' :: ListChannels -> Maybe Text
filterByRecordingConfigurationArn} -> Maybe Text
filterByRecordingConfigurationArn) (\s :: ListChannels
s@ListChannels' {} Maybe Text
a -> ListChannels
s {$sel:filterByRecordingConfigurationArn:ListChannels' :: Maybe Text
filterByRecordingConfigurationArn = Maybe Text
a} :: ListChannels)

-- | Maximum number of channels to return. Default: 100.
listChannels_maxResults :: Lens.Lens' ListChannels (Prelude.Maybe Prelude.Natural)
listChannels_maxResults :: Lens' ListChannels (Maybe Natural)
listChannels_maxResults = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListChannels' {Maybe Natural
maxResults :: Maybe Natural
$sel:maxResults:ListChannels' :: ListChannels -> Maybe Natural
maxResults} -> Maybe Natural
maxResults) (\s :: ListChannels
s@ListChannels' {} Maybe Natural
a -> ListChannels
s {$sel:maxResults:ListChannels' :: Maybe Natural
maxResults = Maybe Natural
a} :: ListChannels)

-- | The first channel to retrieve. This is used for pagination; see the
-- @nextToken@ response field.
listChannels_nextToken :: Lens.Lens' ListChannels (Prelude.Maybe Prelude.Text)
listChannels_nextToken :: Lens' ListChannels (Maybe Text)
listChannels_nextToken = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListChannels' {Maybe Text
nextToken :: Maybe Text
$sel:nextToken:ListChannels' :: ListChannels -> Maybe Text
nextToken} -> Maybe Text
nextToken) (\s :: ListChannels
s@ListChannels' {} Maybe Text
a -> ListChannels
s {$sel:nextToken:ListChannels' :: Maybe Text
nextToken = Maybe Text
a} :: ListChannels)

instance Core.AWSPager ListChannels where
  page :: ListChannels -> AWSResponse ListChannels -> Maybe ListChannels
page ListChannels
rq AWSResponse ListChannels
rs
    | forall a. AWSTruncated a => a -> Bool
Core.stop
        ( AWSResponse ListChannels
rs
            forall s a. s -> Getting (First a) s a -> Maybe a
Lens.^? Lens' ListChannelsResponse (Maybe Text)
listChannelsResponse_nextToken
            forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall a b. Prism (Maybe a) (Maybe b) a b
Lens._Just
        ) =
        forall a. Maybe a
Prelude.Nothing
    | forall a. AWSTruncated a => a -> Bool
Core.stop
        (AWSResponse ListChannels
rs forall s a. s -> Getting a s a -> a
Lens.^. Lens' ListChannelsResponse [ChannelSummary]
listChannelsResponse_channels) =
        forall a. Maybe a
Prelude.Nothing
    | Bool
Prelude.otherwise =
        forall a. a -> Maybe a
Prelude.Just
          forall a b. (a -> b) -> a -> b
Prelude.$ ListChannels
rq
          forall a b. a -> (a -> b) -> b
Prelude.& Lens' ListChannels (Maybe Text)
listChannels_nextToken
          forall s t a b. ASetter s t a b -> b -> s -> t
Lens..~ AWSResponse ListChannels
rs
          forall s a. s -> Getting (First a) s a -> Maybe a
Lens.^? Lens' ListChannelsResponse (Maybe Text)
listChannelsResponse_nextToken
          forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall a b. Prism (Maybe a) (Maybe b) a b
Lens._Just

instance Core.AWSRequest ListChannels where
  type AWSResponse ListChannels = ListChannelsResponse
  request :: (Service -> Service) -> ListChannels -> Request ListChannels
request Service -> Service
overrides =
    forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON (Service -> Service
overrides Service
defaultService)
  response :: forall (m :: * -> *).
MonadResource m =>
(ByteStringLazy -> IO ByteStringLazy)
-> Service
-> Proxy ListChannels
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse ListChannels)))
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 -> Int -> [ChannelSummary] -> ListChannelsResponse
ListChannelsResponse'
            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
"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))
            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
"channels" forall (f :: * -> *) a. Functor f => f (Maybe a) -> a -> f a
Core..!@ forall a. Monoid a => a
Prelude.mempty)
      )

instance Prelude.Hashable ListChannels where
  hashWithSalt :: Int -> ListChannels -> Int
hashWithSalt Int
_salt ListChannels' {Maybe Natural
Maybe Text
nextToken :: Maybe Text
maxResults :: Maybe Natural
filterByRecordingConfigurationArn :: Maybe Text
filterByName :: Maybe Text
$sel:nextToken:ListChannels' :: ListChannels -> Maybe Text
$sel:maxResults:ListChannels' :: ListChannels -> Maybe Natural
$sel:filterByRecordingConfigurationArn:ListChannels' :: ListChannels -> Maybe Text
$sel:filterByName:ListChannels' :: ListChannels -> Maybe Text
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
filterByName
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
filterByRecordingConfigurationArn
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Natural
maxResults
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
nextToken

instance Prelude.NFData ListChannels where
  rnf :: ListChannels -> ()
rnf ListChannels' {Maybe Natural
Maybe Text
nextToken :: Maybe Text
maxResults :: Maybe Natural
filterByRecordingConfigurationArn :: Maybe Text
filterByName :: Maybe Text
$sel:nextToken:ListChannels' :: ListChannels -> Maybe Text
$sel:maxResults:ListChannels' :: ListChannels -> Maybe Natural
$sel:filterByRecordingConfigurationArn:ListChannels' :: ListChannels -> Maybe Text
$sel:filterByName:ListChannels' :: ListChannels -> Maybe Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
filterByName
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
filterByRecordingConfigurationArn
      seq :: forall a b. a -> b -> b
`Prelude.seq` 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 Text
nextToken

instance Data.ToHeaders ListChannels where
  toHeaders :: ListChannels -> ResponseHeaders
toHeaders =
    forall a b. a -> b -> a
Prelude.const
      ( forall a. Monoid a => [a] -> a
Prelude.mconcat
          [ HeaderName
"Content-Type"
              forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Data.=# ( ByteString
"application/x-amz-json-1.1" ::
                          Prelude.ByteString
                      )
          ]
      )

instance Data.ToJSON ListChannels where
  toJSON :: ListChannels -> Value
toJSON ListChannels' {Maybe Natural
Maybe Text
nextToken :: Maybe Text
maxResults :: Maybe Natural
filterByRecordingConfigurationArn :: Maybe Text
filterByName :: Maybe Text
$sel:nextToken:ListChannels' :: ListChannels -> Maybe Text
$sel:maxResults:ListChannels' :: ListChannels -> Maybe Natural
$sel:filterByRecordingConfigurationArn:ListChannels' :: ListChannels -> Maybe Text
$sel:filterByName:ListChannels' :: ListChannels -> Maybe Text
..} =
    [Pair] -> Value
Data.object
      ( forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ (Key
"filterByName" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=) forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
filterByName,
            (Key
"filterByRecordingConfigurationArn" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=)
              forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
filterByRecordingConfigurationArn,
            (Key
"maxResults" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=) forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Natural
maxResults,
            (Key
"nextToken" forall kv v. (KeyValue kv, ToJSON v) => Key -> v -> kv
Data..=) forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
nextToken
          ]
      )

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

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

-- | /See:/ 'newListChannelsResponse' smart constructor.
data ListChannelsResponse = ListChannelsResponse'
  { -- | If there are more channels than @maxResults@, use @nextToken@ in the
    -- request to get the next set.
    ListChannelsResponse -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text,
    -- | The response's http status code.
    ListChannelsResponse -> Int
httpStatus :: Prelude.Int,
    -- | List of the matching channels.
    ListChannelsResponse -> [ChannelSummary]
channels :: [ChannelSummary]
  }
  deriving (ListChannelsResponse -> ListChannelsResponse -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListChannelsResponse -> ListChannelsResponse -> Bool
$c/= :: ListChannelsResponse -> ListChannelsResponse -> Bool
== :: ListChannelsResponse -> ListChannelsResponse -> Bool
$c== :: ListChannelsResponse -> ListChannelsResponse -> Bool
Prelude.Eq, ReadPrec [ListChannelsResponse]
ReadPrec ListChannelsResponse
Int -> ReadS ListChannelsResponse
ReadS [ListChannelsResponse]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ListChannelsResponse]
$creadListPrec :: ReadPrec [ListChannelsResponse]
readPrec :: ReadPrec ListChannelsResponse
$creadPrec :: ReadPrec ListChannelsResponse
readList :: ReadS [ListChannelsResponse]
$creadList :: ReadS [ListChannelsResponse]
readsPrec :: Int -> ReadS ListChannelsResponse
$creadsPrec :: Int -> ReadS ListChannelsResponse
Prelude.Read, Int -> ListChannelsResponse -> ShowS
[ListChannelsResponse] -> ShowS
ListChannelsResponse -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListChannelsResponse] -> ShowS
$cshowList :: [ListChannelsResponse] -> ShowS
show :: ListChannelsResponse -> String
$cshow :: ListChannelsResponse -> String
showsPrec :: Int -> ListChannelsResponse -> ShowS
$cshowsPrec :: Int -> ListChannelsResponse -> ShowS
Prelude.Show, forall x. Rep ListChannelsResponse x -> ListChannelsResponse
forall x. ListChannelsResponse -> Rep ListChannelsResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ListChannelsResponse x -> ListChannelsResponse
$cfrom :: forall x. ListChannelsResponse -> Rep ListChannelsResponse x
Prelude.Generic)

-- |
-- Create a value of 'ListChannelsResponse' 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:
--
-- 'nextToken', 'listChannelsResponse_nextToken' - If there are more channels than @maxResults@, use @nextToken@ in the
-- request to get the next set.
--
-- 'httpStatus', 'listChannelsResponse_httpStatus' - The response's http status code.
--
-- 'channels', 'listChannelsResponse_channels' - List of the matching channels.
newListChannelsResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  ListChannelsResponse
newListChannelsResponse :: Int -> ListChannelsResponse
newListChannelsResponse Int
pHttpStatus_ =
  ListChannelsResponse'
    { $sel:nextToken:ListChannelsResponse' :: Maybe Text
nextToken = forall a. Maybe a
Prelude.Nothing,
      $sel:httpStatus:ListChannelsResponse' :: Int
httpStatus = Int
pHttpStatus_,
      $sel:channels:ListChannelsResponse' :: [ChannelSummary]
channels = forall a. Monoid a => a
Prelude.mempty
    }

-- | If there are more channels than @maxResults@, use @nextToken@ in the
-- request to get the next set.
listChannelsResponse_nextToken :: Lens.Lens' ListChannelsResponse (Prelude.Maybe Prelude.Text)
listChannelsResponse_nextToken :: Lens' ListChannelsResponse (Maybe Text)
listChannelsResponse_nextToken = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListChannelsResponse' {Maybe Text
nextToken :: Maybe Text
$sel:nextToken:ListChannelsResponse' :: ListChannelsResponse -> Maybe Text
nextToken} -> Maybe Text
nextToken) (\s :: ListChannelsResponse
s@ListChannelsResponse' {} Maybe Text
a -> ListChannelsResponse
s {$sel:nextToken:ListChannelsResponse' :: Maybe Text
nextToken = Maybe Text
a} :: ListChannelsResponse)

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

-- | List of the matching channels.
listChannelsResponse_channels :: Lens.Lens' ListChannelsResponse [ChannelSummary]
listChannelsResponse_channels :: Lens' ListChannelsResponse [ChannelSummary]
listChannelsResponse_channels = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListChannelsResponse' {[ChannelSummary]
channels :: [ChannelSummary]
$sel:channels:ListChannelsResponse' :: ListChannelsResponse -> [ChannelSummary]
channels} -> [ChannelSummary]
channels) (\s :: ListChannelsResponse
s@ListChannelsResponse' {} [ChannelSummary]
a -> ListChannelsResponse
s {$sel:channels:ListChannelsResponse' :: [ChannelSummary]
channels = [ChannelSummary]
a} :: ListChannelsResponse) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

instance Prelude.NFData ListChannelsResponse where
  rnf :: ListChannelsResponse -> ()
rnf ListChannelsResponse' {Int
[ChannelSummary]
Maybe Text
channels :: [ChannelSummary]
httpStatus :: Int
nextToken :: Maybe Text
$sel:channels:ListChannelsResponse' :: ListChannelsResponse -> [ChannelSummary]
$sel:httpStatus:ListChannelsResponse' :: ListChannelsResponse -> Int
$sel:nextToken:ListChannelsResponse' :: ListChannelsResponse -> Maybe Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
nextToken
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Int
httpStatus
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf [ChannelSummary]
channels