{-# 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.ListRecordingConfigurations
-- 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 recording configurations in your
-- account, in the Amazon Web Services region where the API request is
-- processed.
--
-- This operation returns paginated results.
module Amazonka.IVS.ListRecordingConfigurations
  ( -- * Creating a Request
    ListRecordingConfigurations (..),
    newListRecordingConfigurations,

    -- * Request Lenses
    listRecordingConfigurations_maxResults,
    listRecordingConfigurations_nextToken,

    -- * Destructuring the Response
    ListRecordingConfigurationsResponse (..),
    newListRecordingConfigurationsResponse,

    -- * Response Lenses
    listRecordingConfigurationsResponse_nextToken,
    listRecordingConfigurationsResponse_httpStatus,
    listRecordingConfigurationsResponse_recordingConfigurations,
  )
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:/ 'newListRecordingConfigurations' smart constructor.
data ListRecordingConfigurations = ListRecordingConfigurations'
  { -- | Maximum number of recording configurations to return. Default: your
    -- service quota or 100, whichever is smaller.
    ListRecordingConfigurations -> Maybe Natural
maxResults :: Prelude.Maybe Prelude.Natural,
    -- | The first recording configuration to retrieve. This is used for
    -- pagination; see the @nextToken@ response field.
    ListRecordingConfigurations -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text
  }
  deriving (ListRecordingConfigurations -> ListRecordingConfigurations -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListRecordingConfigurations -> ListRecordingConfigurations -> Bool
$c/= :: ListRecordingConfigurations -> ListRecordingConfigurations -> Bool
== :: ListRecordingConfigurations -> ListRecordingConfigurations -> Bool
$c== :: ListRecordingConfigurations -> ListRecordingConfigurations -> Bool
Prelude.Eq, ReadPrec [ListRecordingConfigurations]
ReadPrec ListRecordingConfigurations
Int -> ReadS ListRecordingConfigurations
ReadS [ListRecordingConfigurations]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ListRecordingConfigurations]
$creadListPrec :: ReadPrec [ListRecordingConfigurations]
readPrec :: ReadPrec ListRecordingConfigurations
$creadPrec :: ReadPrec ListRecordingConfigurations
readList :: ReadS [ListRecordingConfigurations]
$creadList :: ReadS [ListRecordingConfigurations]
readsPrec :: Int -> ReadS ListRecordingConfigurations
$creadsPrec :: Int -> ReadS ListRecordingConfigurations
Prelude.Read, Int -> ListRecordingConfigurations -> ShowS
[ListRecordingConfigurations] -> ShowS
ListRecordingConfigurations -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListRecordingConfigurations] -> ShowS
$cshowList :: [ListRecordingConfigurations] -> ShowS
show :: ListRecordingConfigurations -> String
$cshow :: ListRecordingConfigurations -> String
showsPrec :: Int -> ListRecordingConfigurations -> ShowS
$cshowsPrec :: Int -> ListRecordingConfigurations -> ShowS
Prelude.Show, forall x.
Rep ListRecordingConfigurations x -> ListRecordingConfigurations
forall x.
ListRecordingConfigurations -> Rep ListRecordingConfigurations x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep ListRecordingConfigurations x -> ListRecordingConfigurations
$cfrom :: forall x.
ListRecordingConfigurations -> Rep ListRecordingConfigurations x
Prelude.Generic)

-- |
-- Create a value of 'ListRecordingConfigurations' 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', 'listRecordingConfigurations_maxResults' - Maximum number of recording configurations to return. Default: your
-- service quota or 100, whichever is smaller.
--
-- 'nextToken', 'listRecordingConfigurations_nextToken' - The first recording configuration to retrieve. This is used for
-- pagination; see the @nextToken@ response field.
newListRecordingConfigurations ::
  ListRecordingConfigurations
newListRecordingConfigurations :: ListRecordingConfigurations
newListRecordingConfigurations =
  ListRecordingConfigurations'
    { $sel:maxResults:ListRecordingConfigurations' :: Maybe Natural
maxResults =
        forall a. Maybe a
Prelude.Nothing,
      $sel:nextToken:ListRecordingConfigurations' :: Maybe Text
nextToken = forall a. Maybe a
Prelude.Nothing
    }

-- | Maximum number of recording configurations to return. Default: your
-- service quota or 100, whichever is smaller.
listRecordingConfigurations_maxResults :: Lens.Lens' ListRecordingConfigurations (Prelude.Maybe Prelude.Natural)
listRecordingConfigurations_maxResults :: Lens' ListRecordingConfigurations (Maybe Natural)
listRecordingConfigurations_maxResults = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListRecordingConfigurations' {Maybe Natural
maxResults :: Maybe Natural
$sel:maxResults:ListRecordingConfigurations' :: ListRecordingConfigurations -> Maybe Natural
maxResults} -> Maybe Natural
maxResults) (\s :: ListRecordingConfigurations
s@ListRecordingConfigurations' {} Maybe Natural
a -> ListRecordingConfigurations
s {$sel:maxResults:ListRecordingConfigurations' :: Maybe Natural
maxResults = Maybe Natural
a} :: ListRecordingConfigurations)

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

instance Core.AWSPager ListRecordingConfigurations where
  page :: ListRecordingConfigurations
-> AWSResponse ListRecordingConfigurations
-> Maybe ListRecordingConfigurations
page ListRecordingConfigurations
rq AWSResponse ListRecordingConfigurations
rs
    | forall a. AWSTruncated a => a -> Bool
Core.stop
        ( AWSResponse ListRecordingConfigurations
rs
            forall s a. s -> Getting (First a) s a -> Maybe a
Lens.^? Lens' ListRecordingConfigurationsResponse (Maybe Text)
listRecordingConfigurationsResponse_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 ListRecordingConfigurations
rs
            forall s a. s -> Getting a s a -> a
Lens.^. Lens'
  ListRecordingConfigurationsResponse [RecordingConfigurationSummary]
listRecordingConfigurationsResponse_recordingConfigurations
        ) =
        forall a. Maybe a
Prelude.Nothing
    | Bool
Prelude.otherwise =
        forall a. a -> Maybe a
Prelude.Just
          forall a b. (a -> b) -> a -> b
Prelude.$ ListRecordingConfigurations
rq
          forall a b. a -> (a -> b) -> b
Prelude.& Lens' ListRecordingConfigurations (Maybe Text)
listRecordingConfigurations_nextToken
          forall s t a b. ASetter s t a b -> b -> s -> t
Lens..~ AWSResponse ListRecordingConfigurations
rs
          forall s a. s -> Getting (First a) s a -> Maybe a
Lens.^? Lens' ListRecordingConfigurationsResponse (Maybe Text)
listRecordingConfigurationsResponse_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 ListRecordingConfigurations where
  type
    AWSResponse ListRecordingConfigurations =
      ListRecordingConfigurationsResponse
  request :: (Service -> Service)
-> ListRecordingConfigurations
-> Request ListRecordingConfigurations
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 ListRecordingConfigurations
-> ClientResponse ClientBody
-> m (Either
        Error (ClientResponse (AWSResponse ListRecordingConfigurations)))
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
-> [RecordingConfigurationSummary]
-> ListRecordingConfigurationsResponse
ListRecordingConfigurationsResponse'
            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
"recordingConfigurations"
                            forall (f :: * -> *) a. Functor f => f (Maybe a) -> a -> f a
Core..!@ forall a. Monoid a => a
Prelude.mempty
                        )
      )

instance Prelude.Hashable ListRecordingConfigurations where
  hashWithSalt :: Int -> ListRecordingConfigurations -> Int
hashWithSalt Int
_salt ListRecordingConfigurations' {Maybe Natural
Maybe Text
nextToken :: Maybe Text
maxResults :: Maybe Natural
$sel:nextToken:ListRecordingConfigurations' :: ListRecordingConfigurations -> Maybe Text
$sel:maxResults:ListRecordingConfigurations' :: ListRecordingConfigurations -> 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 Text
nextToken

instance Prelude.NFData ListRecordingConfigurations where
  rnf :: ListRecordingConfigurations -> ()
rnf ListRecordingConfigurations' {Maybe Natural
Maybe Text
nextToken :: Maybe Text
maxResults :: Maybe Natural
$sel:nextToken:ListRecordingConfigurations' :: ListRecordingConfigurations -> Maybe Text
$sel:maxResults:ListRecordingConfigurations' :: ListRecordingConfigurations -> 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 Text
nextToken

instance Data.ToHeaders ListRecordingConfigurations where
  toHeaders :: ListRecordingConfigurations -> 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 ListRecordingConfigurations where
  toJSON :: ListRecordingConfigurations -> Value
toJSON ListRecordingConfigurations' {Maybe Natural
Maybe Text
nextToken :: Maybe Text
maxResults :: Maybe Natural
$sel:nextToken:ListRecordingConfigurations' :: ListRecordingConfigurations -> Maybe Text
$sel:maxResults:ListRecordingConfigurations' :: ListRecordingConfigurations -> Maybe Natural
..} =
    [Pair] -> Value
Data.object
      ( forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ (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 ListRecordingConfigurations where
  toPath :: ListRecordingConfigurations -> ByteString
toPath = forall a b. a -> b -> a
Prelude.const ByteString
"/ListRecordingConfigurations"

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

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

-- |
-- Create a value of 'ListRecordingConfigurationsResponse' 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', 'listRecordingConfigurationsResponse_nextToken' - If there are more recording configurations than @maxResults@, use
-- @nextToken@ in the request to get the next set.
--
-- 'httpStatus', 'listRecordingConfigurationsResponse_httpStatus' - The response's http status code.
--
-- 'recordingConfigurations', 'listRecordingConfigurationsResponse_recordingConfigurations' - List of the matching recording configurations.
newListRecordingConfigurationsResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  ListRecordingConfigurationsResponse
newListRecordingConfigurationsResponse :: Int -> ListRecordingConfigurationsResponse
newListRecordingConfigurationsResponse Int
pHttpStatus_ =
  ListRecordingConfigurationsResponse'
    { $sel:nextToken:ListRecordingConfigurationsResponse' :: Maybe Text
nextToken =
        forall a. Maybe a
Prelude.Nothing,
      $sel:httpStatus:ListRecordingConfigurationsResponse' :: Int
httpStatus = Int
pHttpStatus_,
      $sel:recordingConfigurations:ListRecordingConfigurationsResponse' :: [RecordingConfigurationSummary]
recordingConfigurations =
        forall a. Monoid a => a
Prelude.mempty
    }

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

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

-- | List of the matching recording configurations.
listRecordingConfigurationsResponse_recordingConfigurations :: Lens.Lens' ListRecordingConfigurationsResponse [RecordingConfigurationSummary]
listRecordingConfigurationsResponse_recordingConfigurations :: Lens'
  ListRecordingConfigurationsResponse [RecordingConfigurationSummary]
listRecordingConfigurationsResponse_recordingConfigurations = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListRecordingConfigurationsResponse' {[RecordingConfigurationSummary]
recordingConfigurations :: [RecordingConfigurationSummary]
$sel:recordingConfigurations:ListRecordingConfigurationsResponse' :: ListRecordingConfigurationsResponse
-> [RecordingConfigurationSummary]
recordingConfigurations} -> [RecordingConfigurationSummary]
recordingConfigurations) (\s :: ListRecordingConfigurationsResponse
s@ListRecordingConfigurationsResponse' {} [RecordingConfigurationSummary]
a -> ListRecordingConfigurationsResponse
s {$sel:recordingConfigurations:ListRecordingConfigurationsResponse' :: [RecordingConfigurationSummary]
recordingConfigurations = [RecordingConfigurationSummary]
a} :: ListRecordingConfigurationsResponse) 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
    ListRecordingConfigurationsResponse
  where
  rnf :: ListRecordingConfigurationsResponse -> ()
rnf ListRecordingConfigurationsResponse' {Int
[RecordingConfigurationSummary]
Maybe Text
recordingConfigurations :: [RecordingConfigurationSummary]
httpStatus :: Int
nextToken :: Maybe Text
$sel:recordingConfigurations:ListRecordingConfigurationsResponse' :: ListRecordingConfigurationsResponse
-> [RecordingConfigurationSummary]
$sel:httpStatus:ListRecordingConfigurationsResponse' :: ListRecordingConfigurationsResponse -> Int
$sel:nextToken:ListRecordingConfigurationsResponse' :: ListRecordingConfigurationsResponse -> 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 [RecordingConfigurationSummary]
recordingConfigurations