{-# 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.IoT.ListJobTemplates
-- 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)
--
-- Returns a list of job templates.
--
-- Requires permission to access the
-- <https://docs.aws.amazon.com/service-authorization/latest/reference/list_awsiot.html#awsiot-actions-as-permissions ListJobTemplates>
-- action.
--
-- This operation returns paginated results.
module Amazonka.IoT.ListJobTemplates
  ( -- * Creating a Request
    ListJobTemplates (..),
    newListJobTemplates,

    -- * Request Lenses
    listJobTemplates_nextToken,
    listJobTemplates_maxResults,

    -- * Destructuring the Response
    ListJobTemplatesResponse (..),
    newListJobTemplatesResponse,

    -- * Response Lenses
    listJobTemplatesResponse_jobTemplates,
    listJobTemplatesResponse_nextToken,
    listJobTemplatesResponse_httpStatus,
  )
where

import qualified Amazonka.Core as Core
import Amazonka.IoT.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:/ 'newListJobTemplates' smart constructor.
data ListJobTemplates = ListJobTemplates'
  { -- | The token to use to return the next set of results in the list.
    ListJobTemplates -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text,
    -- | The maximum number of results to return in the list.
    ListJobTemplates -> Maybe Natural
maxResults :: Prelude.Maybe Prelude.Natural
  }
  deriving (ListJobTemplates -> ListJobTemplates -> Bool
(ListJobTemplates -> ListJobTemplates -> Bool)
-> (ListJobTemplates -> ListJobTemplates -> Bool)
-> Eq ListJobTemplates
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListJobTemplates -> ListJobTemplates -> Bool
$c/= :: ListJobTemplates -> ListJobTemplates -> Bool
== :: ListJobTemplates -> ListJobTemplates -> Bool
$c== :: ListJobTemplates -> ListJobTemplates -> Bool
Prelude.Eq, ReadPrec [ListJobTemplates]
ReadPrec ListJobTemplates
Int -> ReadS ListJobTemplates
ReadS [ListJobTemplates]
(Int -> ReadS ListJobTemplates)
-> ReadS [ListJobTemplates]
-> ReadPrec ListJobTemplates
-> ReadPrec [ListJobTemplates]
-> Read ListJobTemplates
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ListJobTemplates]
$creadListPrec :: ReadPrec [ListJobTemplates]
readPrec :: ReadPrec ListJobTemplates
$creadPrec :: ReadPrec ListJobTemplates
readList :: ReadS [ListJobTemplates]
$creadList :: ReadS [ListJobTemplates]
readsPrec :: Int -> ReadS ListJobTemplates
$creadsPrec :: Int -> ReadS ListJobTemplates
Prelude.Read, Int -> ListJobTemplates -> ShowS
[ListJobTemplates] -> ShowS
ListJobTemplates -> String
(Int -> ListJobTemplates -> ShowS)
-> (ListJobTemplates -> String)
-> ([ListJobTemplates] -> ShowS)
-> Show ListJobTemplates
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListJobTemplates] -> ShowS
$cshowList :: [ListJobTemplates] -> ShowS
show :: ListJobTemplates -> String
$cshow :: ListJobTemplates -> String
showsPrec :: Int -> ListJobTemplates -> ShowS
$cshowsPrec :: Int -> ListJobTemplates -> ShowS
Prelude.Show, (forall x. ListJobTemplates -> Rep ListJobTemplates x)
-> (forall x. Rep ListJobTemplates x -> ListJobTemplates)
-> Generic ListJobTemplates
forall x. Rep ListJobTemplates x -> ListJobTemplates
forall x. ListJobTemplates -> Rep ListJobTemplates x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ListJobTemplates x -> ListJobTemplates
$cfrom :: forall x. ListJobTemplates -> Rep ListJobTemplates x
Prelude.Generic)

-- |
-- Create a value of 'ListJobTemplates' 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', 'listJobTemplates_nextToken' - The token to use to return the next set of results in the list.
--
-- 'maxResults', 'listJobTemplates_maxResults' - The maximum number of results to return in the list.
newListJobTemplates ::
  ListJobTemplates
newListJobTemplates :: ListJobTemplates
newListJobTemplates =
  ListJobTemplates' :: Maybe Text -> Maybe Natural -> ListJobTemplates
ListJobTemplates'
    { $sel:nextToken:ListJobTemplates' :: Maybe Text
nextToken = Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:maxResults:ListJobTemplates' :: Maybe Natural
maxResults = Maybe Natural
forall a. Maybe a
Prelude.Nothing
    }

-- | The token to use to return the next set of results in the list.
listJobTemplates_nextToken :: Lens.Lens' ListJobTemplates (Prelude.Maybe Prelude.Text)
listJobTemplates_nextToken :: (Maybe Text -> f (Maybe Text))
-> ListJobTemplates -> f ListJobTemplates
listJobTemplates_nextToken = (ListJobTemplates -> Maybe Text)
-> (ListJobTemplates -> Maybe Text -> ListJobTemplates)
-> Lens ListJobTemplates ListJobTemplates (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListJobTemplates' {Maybe Text
nextToken :: Maybe Text
$sel:nextToken:ListJobTemplates' :: ListJobTemplates -> Maybe Text
nextToken} -> Maybe Text
nextToken) (\s :: ListJobTemplates
s@ListJobTemplates' {} Maybe Text
a -> ListJobTemplates
s {$sel:nextToken:ListJobTemplates' :: Maybe Text
nextToken = Maybe Text
a} :: ListJobTemplates)

-- | The maximum number of results to return in the list.
listJobTemplates_maxResults :: Lens.Lens' ListJobTemplates (Prelude.Maybe Prelude.Natural)
listJobTemplates_maxResults :: (Maybe Natural -> f (Maybe Natural))
-> ListJobTemplates -> f ListJobTemplates
listJobTemplates_maxResults = (ListJobTemplates -> Maybe Natural)
-> (ListJobTemplates -> Maybe Natural -> ListJobTemplates)
-> Lens
     ListJobTemplates ListJobTemplates (Maybe Natural) (Maybe Natural)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListJobTemplates' {Maybe Natural
maxResults :: Maybe Natural
$sel:maxResults:ListJobTemplates' :: ListJobTemplates -> Maybe Natural
maxResults} -> Maybe Natural
maxResults) (\s :: ListJobTemplates
s@ListJobTemplates' {} Maybe Natural
a -> ListJobTemplates
s {$sel:maxResults:ListJobTemplates' :: Maybe Natural
maxResults = Maybe Natural
a} :: ListJobTemplates)

instance Core.AWSPager ListJobTemplates where
  page :: ListJobTemplates
-> AWSResponse ListJobTemplates -> Maybe ListJobTemplates
page ListJobTemplates
rq AWSResponse ListJobTemplates
rs
    | Maybe Text -> Bool
forall a. AWSTruncated a => a -> Bool
Core.stop
        ( AWSResponse ListJobTemplates
ListJobTemplatesResponse
rs
            ListJobTemplatesResponse
-> Getting (First Text) ListJobTemplatesResponse Text -> Maybe Text
forall s a. s -> Getting (First a) s a -> Maybe a
Lens.^? (Maybe Text -> Const (First Text) (Maybe Text))
-> ListJobTemplatesResponse
-> Const (First Text) ListJobTemplatesResponse
Lens' ListJobTemplatesResponse (Maybe Text)
listJobTemplatesResponse_nextToken
              ((Maybe Text -> Const (First Text) (Maybe Text))
 -> ListJobTemplatesResponse
 -> Const (First Text) ListJobTemplatesResponse)
-> ((Text -> Const (First Text) Text)
    -> Maybe Text -> Const (First Text) (Maybe Text))
-> Getting (First Text) ListJobTemplatesResponse Text
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. (Text -> Const (First Text) Text)
-> Maybe Text -> Const (First Text) (Maybe Text)
forall a b. Prism (Maybe a) (Maybe b) a b
Lens._Just
        ) =
      Maybe ListJobTemplates
forall a. Maybe a
Prelude.Nothing
    | Maybe [JobTemplateSummary] -> Bool
forall a. AWSTruncated a => a -> Bool
Core.stop
        ( AWSResponse ListJobTemplates
ListJobTemplatesResponse
rs
            ListJobTemplatesResponse
-> Getting
     (First [JobTemplateSummary])
     ListJobTemplatesResponse
     [JobTemplateSummary]
-> Maybe [JobTemplateSummary]
forall s a. s -> Getting (First a) s a -> Maybe a
Lens.^? (Maybe [JobTemplateSummary]
 -> Const (First [JobTemplateSummary]) (Maybe [JobTemplateSummary]))
-> ListJobTemplatesResponse
-> Const (First [JobTemplateSummary]) ListJobTemplatesResponse
Lens' ListJobTemplatesResponse (Maybe [JobTemplateSummary])
listJobTemplatesResponse_jobTemplates
              ((Maybe [JobTemplateSummary]
  -> Const (First [JobTemplateSummary]) (Maybe [JobTemplateSummary]))
 -> ListJobTemplatesResponse
 -> Const (First [JobTemplateSummary]) ListJobTemplatesResponse)
-> (([JobTemplateSummary]
     -> Const (First [JobTemplateSummary]) [JobTemplateSummary])
    -> Maybe [JobTemplateSummary]
    -> Const (First [JobTemplateSummary]) (Maybe [JobTemplateSummary]))
-> Getting
     (First [JobTemplateSummary])
     ListJobTemplatesResponse
     [JobTemplateSummary]
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. ([JobTemplateSummary]
 -> Const (First [JobTemplateSummary]) [JobTemplateSummary])
-> Maybe [JobTemplateSummary]
-> Const (First [JobTemplateSummary]) (Maybe [JobTemplateSummary])
forall a b. Prism (Maybe a) (Maybe b) a b
Lens._Just
        ) =
      Maybe ListJobTemplates
forall a. Maybe a
Prelude.Nothing
    | Bool
Prelude.otherwise =
      ListJobTemplates -> Maybe ListJobTemplates
forall a. a -> Maybe a
Prelude.Just (ListJobTemplates -> Maybe ListJobTemplates)
-> ListJobTemplates -> Maybe ListJobTemplates
forall a b. (a -> b) -> a -> b
Prelude.$
        ListJobTemplates
rq
          ListJobTemplates
-> (ListJobTemplates -> ListJobTemplates) -> ListJobTemplates
forall a b. a -> (a -> b) -> b
Prelude.& (Maybe Text -> Identity (Maybe Text))
-> ListJobTemplates -> Identity ListJobTemplates
Lens ListJobTemplates ListJobTemplates (Maybe Text) (Maybe Text)
listJobTemplates_nextToken
          ((Maybe Text -> Identity (Maybe Text))
 -> ListJobTemplates -> Identity ListJobTemplates)
-> Maybe Text -> ListJobTemplates -> ListJobTemplates
forall s t a b. ASetter s t a b -> b -> s -> t
Lens..~ AWSResponse ListJobTemplates
ListJobTemplatesResponse
rs
          ListJobTemplatesResponse
-> Getting (First Text) ListJobTemplatesResponse Text -> Maybe Text
forall s a. s -> Getting (First a) s a -> Maybe a
Lens.^? (Maybe Text -> Const (First Text) (Maybe Text))
-> ListJobTemplatesResponse
-> Const (First Text) ListJobTemplatesResponse
Lens' ListJobTemplatesResponse (Maybe Text)
listJobTemplatesResponse_nextToken
            ((Maybe Text -> Const (First Text) (Maybe Text))
 -> ListJobTemplatesResponse
 -> Const (First Text) ListJobTemplatesResponse)
-> ((Text -> Const (First Text) Text)
    -> Maybe Text -> Const (First Text) (Maybe Text))
-> Getting (First Text) ListJobTemplatesResponse Text
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. (Text -> Const (First Text) Text)
-> Maybe Text -> Const (First Text) (Maybe Text)
forall a b. Prism (Maybe a) (Maybe b) a b
Lens._Just

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

instance Prelude.NFData ListJobTemplates

instance Core.ToHeaders ListJobTemplates where
  toHeaders :: ListJobTemplates -> ResponseHeaders
toHeaders = ResponseHeaders -> ListJobTemplates -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const ResponseHeaders
forall a. Monoid a => a
Prelude.mempty

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

instance Core.ToQuery ListJobTemplates where
  toQuery :: ListJobTemplates -> QueryString
toQuery ListJobTemplates' {Maybe Natural
Maybe Text
maxResults :: Maybe Natural
nextToken :: Maybe Text
$sel:maxResults:ListJobTemplates' :: ListJobTemplates -> Maybe Natural
$sel:nextToken:ListJobTemplates' :: ListJobTemplates -> Maybe Text
..} =
    [QueryString] -> QueryString
forall a. Monoid a => [a] -> a
Prelude.mconcat
      [ ByteString
"nextToken" ByteString -> Maybe Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Text
nextToken,
        ByteString
"maxResults" ByteString -> Maybe Natural -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Maybe Natural
maxResults
      ]

-- | /See:/ 'newListJobTemplatesResponse' smart constructor.
data ListJobTemplatesResponse = ListJobTemplatesResponse'
  { -- | A list of objects that contain information about the job templates.
    ListJobTemplatesResponse -> Maybe [JobTemplateSummary]
jobTemplates :: Prelude.Maybe [JobTemplateSummary],
    -- | The token for the next set of results, or __null__ if there are no
    -- additional results.
    ListJobTemplatesResponse -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text,
    -- | The response's http status code.
    ListJobTemplatesResponse -> Int
httpStatus :: Prelude.Int
  }
  deriving (ListJobTemplatesResponse -> ListJobTemplatesResponse -> Bool
(ListJobTemplatesResponse -> ListJobTemplatesResponse -> Bool)
-> (ListJobTemplatesResponse -> ListJobTemplatesResponse -> Bool)
-> Eq ListJobTemplatesResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListJobTemplatesResponse -> ListJobTemplatesResponse -> Bool
$c/= :: ListJobTemplatesResponse -> ListJobTemplatesResponse -> Bool
== :: ListJobTemplatesResponse -> ListJobTemplatesResponse -> Bool
$c== :: ListJobTemplatesResponse -> ListJobTemplatesResponse -> Bool
Prelude.Eq, ReadPrec [ListJobTemplatesResponse]
ReadPrec ListJobTemplatesResponse
Int -> ReadS ListJobTemplatesResponse
ReadS [ListJobTemplatesResponse]
(Int -> ReadS ListJobTemplatesResponse)
-> ReadS [ListJobTemplatesResponse]
-> ReadPrec ListJobTemplatesResponse
-> ReadPrec [ListJobTemplatesResponse]
-> Read ListJobTemplatesResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ListJobTemplatesResponse]
$creadListPrec :: ReadPrec [ListJobTemplatesResponse]
readPrec :: ReadPrec ListJobTemplatesResponse
$creadPrec :: ReadPrec ListJobTemplatesResponse
readList :: ReadS [ListJobTemplatesResponse]
$creadList :: ReadS [ListJobTemplatesResponse]
readsPrec :: Int -> ReadS ListJobTemplatesResponse
$creadsPrec :: Int -> ReadS ListJobTemplatesResponse
Prelude.Read, Int -> ListJobTemplatesResponse -> ShowS
[ListJobTemplatesResponse] -> ShowS
ListJobTemplatesResponse -> String
(Int -> ListJobTemplatesResponse -> ShowS)
-> (ListJobTemplatesResponse -> String)
-> ([ListJobTemplatesResponse] -> ShowS)
-> Show ListJobTemplatesResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListJobTemplatesResponse] -> ShowS
$cshowList :: [ListJobTemplatesResponse] -> ShowS
show :: ListJobTemplatesResponse -> String
$cshow :: ListJobTemplatesResponse -> String
showsPrec :: Int -> ListJobTemplatesResponse -> ShowS
$cshowsPrec :: Int -> ListJobTemplatesResponse -> ShowS
Prelude.Show, (forall x.
 ListJobTemplatesResponse -> Rep ListJobTemplatesResponse x)
-> (forall x.
    Rep ListJobTemplatesResponse x -> ListJobTemplatesResponse)
-> Generic ListJobTemplatesResponse
forall x.
Rep ListJobTemplatesResponse x -> ListJobTemplatesResponse
forall x.
ListJobTemplatesResponse -> Rep ListJobTemplatesResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x.
Rep ListJobTemplatesResponse x -> ListJobTemplatesResponse
$cfrom :: forall x.
ListJobTemplatesResponse -> Rep ListJobTemplatesResponse x
Prelude.Generic)

-- |
-- Create a value of 'ListJobTemplatesResponse' 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:
--
-- 'jobTemplates', 'listJobTemplatesResponse_jobTemplates' - A list of objects that contain information about the job templates.
--
-- 'nextToken', 'listJobTemplatesResponse_nextToken' - The token for the next set of results, or __null__ if there are no
-- additional results.
--
-- 'httpStatus', 'listJobTemplatesResponse_httpStatus' - The response's http status code.
newListJobTemplatesResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  ListJobTemplatesResponse
newListJobTemplatesResponse :: Int -> ListJobTemplatesResponse
newListJobTemplatesResponse Int
pHttpStatus_ =
  ListJobTemplatesResponse' :: Maybe [JobTemplateSummary]
-> Maybe Text -> Int -> ListJobTemplatesResponse
ListJobTemplatesResponse'
    { $sel:jobTemplates:ListJobTemplatesResponse' :: Maybe [JobTemplateSummary]
jobTemplates =
        Maybe [JobTemplateSummary]
forall a. Maybe a
Prelude.Nothing,
      $sel:nextToken:ListJobTemplatesResponse' :: Maybe Text
nextToken = Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:httpStatus:ListJobTemplatesResponse' :: Int
httpStatus = Int
pHttpStatus_
    }

-- | A list of objects that contain information about the job templates.
listJobTemplatesResponse_jobTemplates :: Lens.Lens' ListJobTemplatesResponse (Prelude.Maybe [JobTemplateSummary])
listJobTemplatesResponse_jobTemplates :: (Maybe [JobTemplateSummary] -> f (Maybe [JobTemplateSummary]))
-> ListJobTemplatesResponse -> f ListJobTemplatesResponse
listJobTemplatesResponse_jobTemplates = (ListJobTemplatesResponse -> Maybe [JobTemplateSummary])
-> (ListJobTemplatesResponse
    -> Maybe [JobTemplateSummary] -> ListJobTemplatesResponse)
-> Lens' ListJobTemplatesResponse (Maybe [JobTemplateSummary])
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListJobTemplatesResponse' {Maybe [JobTemplateSummary]
jobTemplates :: Maybe [JobTemplateSummary]
$sel:jobTemplates:ListJobTemplatesResponse' :: ListJobTemplatesResponse -> Maybe [JobTemplateSummary]
jobTemplates} -> Maybe [JobTemplateSummary]
jobTemplates) (\s :: ListJobTemplatesResponse
s@ListJobTemplatesResponse' {} Maybe [JobTemplateSummary]
a -> ListJobTemplatesResponse
s {$sel:jobTemplates:ListJobTemplatesResponse' :: Maybe [JobTemplateSummary]
jobTemplates = Maybe [JobTemplateSummary]
a} :: ListJobTemplatesResponse) ((Maybe [JobTemplateSummary] -> f (Maybe [JobTemplateSummary]))
 -> ListJobTemplatesResponse -> f ListJobTemplatesResponse)
-> ((Maybe [JobTemplateSummary] -> f (Maybe [JobTemplateSummary]))
    -> Maybe [JobTemplateSummary] -> f (Maybe [JobTemplateSummary]))
-> (Maybe [JobTemplateSummary] -> f (Maybe [JobTemplateSummary]))
-> ListJobTemplatesResponse
-> f ListJobTemplatesResponse
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. AnIso
  [JobTemplateSummary]
  [JobTemplateSummary]
  [JobTemplateSummary]
  [JobTemplateSummary]
-> Iso
     (Maybe [JobTemplateSummary])
     (Maybe [JobTemplateSummary])
     (Maybe [JobTemplateSummary])
     (Maybe [JobTemplateSummary])
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
  [JobTemplateSummary]
  [JobTemplateSummary]
  [JobTemplateSummary]
  [JobTemplateSummary]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

-- | The token for the next set of results, or __null__ if there are no
-- additional results.
listJobTemplatesResponse_nextToken :: Lens.Lens' ListJobTemplatesResponse (Prelude.Maybe Prelude.Text)
listJobTemplatesResponse_nextToken :: (Maybe Text -> f (Maybe Text))
-> ListJobTemplatesResponse -> f ListJobTemplatesResponse
listJobTemplatesResponse_nextToken = (ListJobTemplatesResponse -> Maybe Text)
-> (ListJobTemplatesResponse
    -> Maybe Text -> ListJobTemplatesResponse)
-> Lens' ListJobTemplatesResponse (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListJobTemplatesResponse' {Maybe Text
nextToken :: Maybe Text
$sel:nextToken:ListJobTemplatesResponse' :: ListJobTemplatesResponse -> Maybe Text
nextToken} -> Maybe Text
nextToken) (\s :: ListJobTemplatesResponse
s@ListJobTemplatesResponse' {} Maybe Text
a -> ListJobTemplatesResponse
s {$sel:nextToken:ListJobTemplatesResponse' :: Maybe Text
nextToken = Maybe Text
a} :: ListJobTemplatesResponse)

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

instance Prelude.NFData ListJobTemplatesResponse