{-# 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.DirectoryService.ListCertificates
-- 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)
--
-- For the specified directory, lists all the certificates registered for a
-- secure LDAP or client certificate authentication.
module Amazonka.DirectoryService.ListCertificates
  ( -- * Creating a Request
    ListCertificates (..),
    newListCertificates,

    -- * Request Lenses
    listCertificates_nextToken,
    listCertificates_limit,
    listCertificates_directoryId,

    -- * Destructuring the Response
    ListCertificatesResponse (..),
    newListCertificatesResponse,

    -- * Response Lenses
    listCertificatesResponse_nextToken,
    listCertificatesResponse_certificatesInfo,
    listCertificatesResponse_httpStatus,
  )
where

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

-- | /See:/ 'newListCertificates' smart constructor.
data ListCertificates = ListCertificates'
  { -- | A token for requesting another page of certificates if the @NextToken@
    -- response element indicates that more certificates are available. Use the
    -- value of the returned @NextToken@ element in your request until the
    -- token comes back as @null@. Pass @null@ if this is the first call.
    ListCertificates -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text,
    -- | The number of items that should show up on one page
    ListCertificates -> Maybe Natural
limit :: Prelude.Maybe Prelude.Natural,
    -- | The identifier of the directory.
    ListCertificates -> Text
directoryId :: Prelude.Text
  }
  deriving (ListCertificates -> ListCertificates -> Bool
(ListCertificates -> ListCertificates -> Bool)
-> (ListCertificates -> ListCertificates -> Bool)
-> Eq ListCertificates
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListCertificates -> ListCertificates -> Bool
$c/= :: ListCertificates -> ListCertificates -> Bool
== :: ListCertificates -> ListCertificates -> Bool
$c== :: ListCertificates -> ListCertificates -> Bool
Prelude.Eq, ReadPrec [ListCertificates]
ReadPrec ListCertificates
Int -> ReadS ListCertificates
ReadS [ListCertificates]
(Int -> ReadS ListCertificates)
-> ReadS [ListCertificates]
-> ReadPrec ListCertificates
-> ReadPrec [ListCertificates]
-> Read ListCertificates
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ListCertificates]
$creadListPrec :: ReadPrec [ListCertificates]
readPrec :: ReadPrec ListCertificates
$creadPrec :: ReadPrec ListCertificates
readList :: ReadS [ListCertificates]
$creadList :: ReadS [ListCertificates]
readsPrec :: Int -> ReadS ListCertificates
$creadsPrec :: Int -> ReadS ListCertificates
Prelude.Read, Int -> ListCertificates -> ShowS
[ListCertificates] -> ShowS
ListCertificates -> String
(Int -> ListCertificates -> ShowS)
-> (ListCertificates -> String)
-> ([ListCertificates] -> ShowS)
-> Show ListCertificates
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListCertificates] -> ShowS
$cshowList :: [ListCertificates] -> ShowS
show :: ListCertificates -> String
$cshow :: ListCertificates -> String
showsPrec :: Int -> ListCertificates -> ShowS
$cshowsPrec :: Int -> ListCertificates -> ShowS
Prelude.Show, (forall x. ListCertificates -> Rep ListCertificates x)
-> (forall x. Rep ListCertificates x -> ListCertificates)
-> Generic ListCertificates
forall x. Rep ListCertificates x -> ListCertificates
forall x. ListCertificates -> Rep ListCertificates x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ListCertificates x -> ListCertificates
$cfrom :: forall x. ListCertificates -> Rep ListCertificates x
Prelude.Generic)

-- |
-- Create a value of 'ListCertificates' 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', 'listCertificates_nextToken' - A token for requesting another page of certificates if the @NextToken@
-- response element indicates that more certificates are available. Use the
-- value of the returned @NextToken@ element in your request until the
-- token comes back as @null@. Pass @null@ if this is the first call.
--
-- 'limit', 'listCertificates_limit' - The number of items that should show up on one page
--
-- 'directoryId', 'listCertificates_directoryId' - The identifier of the directory.
newListCertificates ::
  -- | 'directoryId'
  Prelude.Text ->
  ListCertificates
newListCertificates :: Text -> ListCertificates
newListCertificates Text
pDirectoryId_ =
  ListCertificates' :: Maybe Text -> Maybe Natural -> Text -> ListCertificates
ListCertificates'
    { $sel:nextToken:ListCertificates' :: Maybe Text
nextToken = Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:limit:ListCertificates' :: Maybe Natural
limit = Maybe Natural
forall a. Maybe a
Prelude.Nothing,
      $sel:directoryId:ListCertificates' :: Text
directoryId = Text
pDirectoryId_
    }

-- | A token for requesting another page of certificates if the @NextToken@
-- response element indicates that more certificates are available. Use the
-- value of the returned @NextToken@ element in your request until the
-- token comes back as @null@. Pass @null@ if this is the first call.
listCertificates_nextToken :: Lens.Lens' ListCertificates (Prelude.Maybe Prelude.Text)
listCertificates_nextToken :: (Maybe Text -> f (Maybe Text))
-> ListCertificates -> f ListCertificates
listCertificates_nextToken = (ListCertificates -> Maybe Text)
-> (ListCertificates -> Maybe Text -> ListCertificates)
-> Lens ListCertificates ListCertificates (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListCertificates' {Maybe Text
nextToken :: Maybe Text
$sel:nextToken:ListCertificates' :: ListCertificates -> Maybe Text
nextToken} -> Maybe Text
nextToken) (\s :: ListCertificates
s@ListCertificates' {} Maybe Text
a -> ListCertificates
s {$sel:nextToken:ListCertificates' :: Maybe Text
nextToken = Maybe Text
a} :: ListCertificates)

-- | The number of items that should show up on one page
listCertificates_limit :: Lens.Lens' ListCertificates (Prelude.Maybe Prelude.Natural)
listCertificates_limit :: (Maybe Natural -> f (Maybe Natural))
-> ListCertificates -> f ListCertificates
listCertificates_limit = (ListCertificates -> Maybe Natural)
-> (ListCertificates -> Maybe Natural -> ListCertificates)
-> Lens
     ListCertificates ListCertificates (Maybe Natural) (Maybe Natural)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListCertificates' {Maybe Natural
limit :: Maybe Natural
$sel:limit:ListCertificates' :: ListCertificates -> Maybe Natural
limit} -> Maybe Natural
limit) (\s :: ListCertificates
s@ListCertificates' {} Maybe Natural
a -> ListCertificates
s {$sel:limit:ListCertificates' :: Maybe Natural
limit = Maybe Natural
a} :: ListCertificates)

-- | The identifier of the directory.
listCertificates_directoryId :: Lens.Lens' ListCertificates Prelude.Text
listCertificates_directoryId :: (Text -> f Text) -> ListCertificates -> f ListCertificates
listCertificates_directoryId = (ListCertificates -> Text)
-> (ListCertificates -> Text -> ListCertificates)
-> Lens ListCertificates ListCertificates Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListCertificates' {Text
directoryId :: Text
$sel:directoryId:ListCertificates' :: ListCertificates -> Text
directoryId} -> Text
directoryId) (\s :: ListCertificates
s@ListCertificates' {} Text
a -> ListCertificates
s {$sel:directoryId:ListCertificates' :: Text
directoryId = Text
a} :: ListCertificates)

instance Core.AWSRequest ListCertificates where
  type
    AWSResponse ListCertificates =
      ListCertificatesResponse
  request :: ListCertificates -> Request ListCertificates
request = Service -> ListCertificates -> Request ListCertificates
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
  response :: Logger
-> Service
-> Proxy ListCertificates
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse ListCertificates)))
response =
    (Int
 -> ResponseHeaders
 -> Object
 -> Either String (AWSResponse ListCertificates))
-> Logger
-> Service
-> Proxy ListCertificates
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse ListCertificates)))
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
-> Maybe [CertificateInfo] -> Int -> ListCertificatesResponse
ListCertificatesResponse'
            (Maybe Text
 -> Maybe [CertificateInfo] -> Int -> ListCertificatesResponse)
-> Either String (Maybe Text)
-> Either
     String (Maybe [CertificateInfo] -> Int -> ListCertificatesResponse)
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
"NextToken")
            Either
  String (Maybe [CertificateInfo] -> Int -> ListCertificatesResponse)
-> Either String (Maybe [CertificateInfo])
-> Either String (Int -> ListCertificatesResponse)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> ( Object
x Object -> Text -> Either String (Maybe (Maybe [CertificateInfo]))
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"CertificatesInfo"
                            Either String (Maybe (Maybe [CertificateInfo]))
-> Maybe [CertificateInfo]
-> Either String (Maybe [CertificateInfo])
forall (f :: * -> *) a. Functor f => f (Maybe a) -> a -> f a
Core..!@ Maybe [CertificateInfo]
forall a. Monoid a => a
Prelude.mempty
                        )
            Either String (Int -> ListCertificatesResponse)
-> Either String Int -> Either String ListCertificatesResponse
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 ListCertificates

instance Prelude.NFData ListCertificates

instance Core.ToHeaders ListCertificates where
  toHeaders :: ListCertificates -> ResponseHeaders
toHeaders =
    ResponseHeaders -> ListCertificates -> 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
"DirectoryService_20150416.ListCertificates" ::
                          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 ListCertificates where
  toJSON :: ListCertificates -> Value
toJSON ListCertificates' {Maybe Natural
Maybe Text
Text
directoryId :: Text
limit :: Maybe Natural
nextToken :: Maybe Text
$sel:directoryId:ListCertificates' :: ListCertificates -> Text
$sel:limit:ListCertificates' :: ListCertificates -> Maybe Natural
$sel:nextToken:ListCertificates' :: ListCertificates -> Maybe Text
..} =
    [Pair] -> Value
Core.object
      ( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ (Text
"NextToken" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (Text -> Pair) -> Maybe Text -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
nextToken,
            (Text
"Limit" Text -> Natural -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (Natural -> Pair) -> Maybe Natural -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Natural
limit,
            Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"DirectoryId" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
directoryId)
          ]
      )

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

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

-- | /See:/ 'newListCertificatesResponse' smart constructor.
data ListCertificatesResponse = ListCertificatesResponse'
  { -- | Indicates whether another page of certificates is available when the
    -- number of available certificates exceeds the page limit.
    ListCertificatesResponse -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text,
    -- | A list of certificates with basic details including certificate ID,
    -- certificate common name, certificate state.
    ListCertificatesResponse -> Maybe [CertificateInfo]
certificatesInfo :: Prelude.Maybe [CertificateInfo],
    -- | The response's http status code.
    ListCertificatesResponse -> Int
httpStatus :: Prelude.Int
  }
  deriving (ListCertificatesResponse -> ListCertificatesResponse -> Bool
(ListCertificatesResponse -> ListCertificatesResponse -> Bool)
-> (ListCertificatesResponse -> ListCertificatesResponse -> Bool)
-> Eq ListCertificatesResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListCertificatesResponse -> ListCertificatesResponse -> Bool
$c/= :: ListCertificatesResponse -> ListCertificatesResponse -> Bool
== :: ListCertificatesResponse -> ListCertificatesResponse -> Bool
$c== :: ListCertificatesResponse -> ListCertificatesResponse -> Bool
Prelude.Eq, ReadPrec [ListCertificatesResponse]
ReadPrec ListCertificatesResponse
Int -> ReadS ListCertificatesResponse
ReadS [ListCertificatesResponse]
(Int -> ReadS ListCertificatesResponse)
-> ReadS [ListCertificatesResponse]
-> ReadPrec ListCertificatesResponse
-> ReadPrec [ListCertificatesResponse]
-> Read ListCertificatesResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ListCertificatesResponse]
$creadListPrec :: ReadPrec [ListCertificatesResponse]
readPrec :: ReadPrec ListCertificatesResponse
$creadPrec :: ReadPrec ListCertificatesResponse
readList :: ReadS [ListCertificatesResponse]
$creadList :: ReadS [ListCertificatesResponse]
readsPrec :: Int -> ReadS ListCertificatesResponse
$creadsPrec :: Int -> ReadS ListCertificatesResponse
Prelude.Read, Int -> ListCertificatesResponse -> ShowS
[ListCertificatesResponse] -> ShowS
ListCertificatesResponse -> String
(Int -> ListCertificatesResponse -> ShowS)
-> (ListCertificatesResponse -> String)
-> ([ListCertificatesResponse] -> ShowS)
-> Show ListCertificatesResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListCertificatesResponse] -> ShowS
$cshowList :: [ListCertificatesResponse] -> ShowS
show :: ListCertificatesResponse -> String
$cshow :: ListCertificatesResponse -> String
showsPrec :: Int -> ListCertificatesResponse -> ShowS
$cshowsPrec :: Int -> ListCertificatesResponse -> ShowS
Prelude.Show, (forall x.
 ListCertificatesResponse -> Rep ListCertificatesResponse x)
-> (forall x.
    Rep ListCertificatesResponse x -> ListCertificatesResponse)
-> Generic ListCertificatesResponse
forall x.
Rep ListCertificatesResponse x -> ListCertificatesResponse
forall x.
ListCertificatesResponse -> Rep ListCertificatesResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep ListCertificatesResponse x -> ListCertificatesResponse
$cfrom :: forall x.
ListCertificatesResponse -> Rep ListCertificatesResponse x
Prelude.Generic)

-- |
-- Create a value of 'ListCertificatesResponse' 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', 'listCertificatesResponse_nextToken' - Indicates whether another page of certificates is available when the
-- number of available certificates exceeds the page limit.
--
-- 'certificatesInfo', 'listCertificatesResponse_certificatesInfo' - A list of certificates with basic details including certificate ID,
-- certificate common name, certificate state.
--
-- 'httpStatus', 'listCertificatesResponse_httpStatus' - The response's http status code.
newListCertificatesResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  ListCertificatesResponse
newListCertificatesResponse :: Int -> ListCertificatesResponse
newListCertificatesResponse Int
pHttpStatus_ =
  ListCertificatesResponse' :: Maybe Text
-> Maybe [CertificateInfo] -> Int -> ListCertificatesResponse
ListCertificatesResponse'
    { $sel:nextToken:ListCertificatesResponse' :: Maybe Text
nextToken =
        Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:certificatesInfo:ListCertificatesResponse' :: Maybe [CertificateInfo]
certificatesInfo = Maybe [CertificateInfo]
forall a. Maybe a
Prelude.Nothing,
      $sel:httpStatus:ListCertificatesResponse' :: Int
httpStatus = Int
pHttpStatus_
    }

-- | Indicates whether another page of certificates is available when the
-- number of available certificates exceeds the page limit.
listCertificatesResponse_nextToken :: Lens.Lens' ListCertificatesResponse (Prelude.Maybe Prelude.Text)
listCertificatesResponse_nextToken :: (Maybe Text -> f (Maybe Text))
-> ListCertificatesResponse -> f ListCertificatesResponse
listCertificatesResponse_nextToken = (ListCertificatesResponse -> Maybe Text)
-> (ListCertificatesResponse
    -> Maybe Text -> ListCertificatesResponse)
-> Lens
     ListCertificatesResponse
     ListCertificatesResponse
     (Maybe Text)
     (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListCertificatesResponse' {Maybe Text
nextToken :: Maybe Text
$sel:nextToken:ListCertificatesResponse' :: ListCertificatesResponse -> Maybe Text
nextToken} -> Maybe Text
nextToken) (\s :: ListCertificatesResponse
s@ListCertificatesResponse' {} Maybe Text
a -> ListCertificatesResponse
s {$sel:nextToken:ListCertificatesResponse' :: Maybe Text
nextToken = Maybe Text
a} :: ListCertificatesResponse)

-- | A list of certificates with basic details including certificate ID,
-- certificate common name, certificate state.
listCertificatesResponse_certificatesInfo :: Lens.Lens' ListCertificatesResponse (Prelude.Maybe [CertificateInfo])
listCertificatesResponse_certificatesInfo :: (Maybe [CertificateInfo] -> f (Maybe [CertificateInfo]))
-> ListCertificatesResponse -> f ListCertificatesResponse
listCertificatesResponse_certificatesInfo = (ListCertificatesResponse -> Maybe [CertificateInfo])
-> (ListCertificatesResponse
    -> Maybe [CertificateInfo] -> ListCertificatesResponse)
-> Lens
     ListCertificatesResponse
     ListCertificatesResponse
     (Maybe [CertificateInfo])
     (Maybe [CertificateInfo])
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListCertificatesResponse' {Maybe [CertificateInfo]
certificatesInfo :: Maybe [CertificateInfo]
$sel:certificatesInfo:ListCertificatesResponse' :: ListCertificatesResponse -> Maybe [CertificateInfo]
certificatesInfo} -> Maybe [CertificateInfo]
certificatesInfo) (\s :: ListCertificatesResponse
s@ListCertificatesResponse' {} Maybe [CertificateInfo]
a -> ListCertificatesResponse
s {$sel:certificatesInfo:ListCertificatesResponse' :: Maybe [CertificateInfo]
certificatesInfo = Maybe [CertificateInfo]
a} :: ListCertificatesResponse) ((Maybe [CertificateInfo] -> f (Maybe [CertificateInfo]))
 -> ListCertificatesResponse -> f ListCertificatesResponse)
-> ((Maybe [CertificateInfo] -> f (Maybe [CertificateInfo]))
    -> Maybe [CertificateInfo] -> f (Maybe [CertificateInfo]))
-> (Maybe [CertificateInfo] -> f (Maybe [CertificateInfo]))
-> ListCertificatesResponse
-> f ListCertificatesResponse
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. AnIso
  [CertificateInfo]
  [CertificateInfo]
  [CertificateInfo]
  [CertificateInfo]
-> Iso
     (Maybe [CertificateInfo])
     (Maybe [CertificateInfo])
     (Maybe [CertificateInfo])
     (Maybe [CertificateInfo])
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 AnIso
  [CertificateInfo]
  [CertificateInfo]
  [CertificateInfo]
  [CertificateInfo]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

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

instance Prelude.NFData ListCertificatesResponse