{-# 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.Route53AutoNaming.ListServices
-- 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 summary information for all the services that are associated with
-- one or more specified namespaces.
--
-- This operation returns paginated results.
module Amazonka.Route53AutoNaming.ListServices
  ( -- * Creating a Request
    ListServices (..),
    newListServices,

    -- * Request Lenses
    listServices_filters,
    listServices_maxResults,
    listServices_nextToken,

    -- * Destructuring the Response
    ListServicesResponse (..),
    newListServicesResponse,

    -- * Response Lenses
    listServicesResponse_nextToken,
    listServicesResponse_services,
    listServicesResponse_httpStatus,
  )
where

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

-- | /See:/ 'newListServices' smart constructor.
data ListServices = ListServices'
  { -- | A complex type that contains specifications for the namespaces that you
    -- want to list services for.
    --
    -- If you specify more than one filter, an operation must match all filters
    -- to be returned by @ListServices@.
    ListServices -> Maybe [ServiceFilter]
filters :: Prelude.Maybe [ServiceFilter],
    -- | The maximum number of services that you want Cloud Map to return in the
    -- response to a @ListServices@ request. If you don\'t specify a value for
    -- @MaxResults@, Cloud Map returns up to 100 services.
    ListServices -> Maybe Natural
maxResults :: Prelude.Maybe Prelude.Natural,
    -- | For the first @ListServices@ request, omit this value.
    --
    -- If the response contains @NextToken@, submit another @ListServices@
    -- request to get the next group of results. Specify the value of
    -- @NextToken@ from the previous response in the next request.
    --
    -- Cloud Map gets @MaxResults@ services and then filters them based on the
    -- specified criteria. It\'s possible that no services in the first
    -- @MaxResults@ services matched the specified criteria but that subsequent
    -- groups of @MaxResults@ services do contain services that match the
    -- criteria.
    ListServices -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text
  }
  deriving (ListServices -> ListServices -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListServices -> ListServices -> Bool
$c/= :: ListServices -> ListServices -> Bool
== :: ListServices -> ListServices -> Bool
$c== :: ListServices -> ListServices -> Bool
Prelude.Eq, ReadPrec [ListServices]
ReadPrec ListServices
Int -> ReadS ListServices
ReadS [ListServices]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ListServices]
$creadListPrec :: ReadPrec [ListServices]
readPrec :: ReadPrec ListServices
$creadPrec :: ReadPrec ListServices
readList :: ReadS [ListServices]
$creadList :: ReadS [ListServices]
readsPrec :: Int -> ReadS ListServices
$creadsPrec :: Int -> ReadS ListServices
Prelude.Read, Int -> ListServices -> ShowS
[ListServices] -> ShowS
ListServices -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListServices] -> ShowS
$cshowList :: [ListServices] -> ShowS
show :: ListServices -> String
$cshow :: ListServices -> String
showsPrec :: Int -> ListServices -> ShowS
$cshowsPrec :: Int -> ListServices -> ShowS
Prelude.Show, forall x. Rep ListServices x -> ListServices
forall x. ListServices -> Rep ListServices x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ListServices x -> ListServices
$cfrom :: forall x. ListServices -> Rep ListServices x
Prelude.Generic)

-- |
-- Create a value of 'ListServices' 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:
--
-- 'filters', 'listServices_filters' - A complex type that contains specifications for the namespaces that you
-- want to list services for.
--
-- If you specify more than one filter, an operation must match all filters
-- to be returned by @ListServices@.
--
-- 'maxResults', 'listServices_maxResults' - The maximum number of services that you want Cloud Map to return in the
-- response to a @ListServices@ request. If you don\'t specify a value for
-- @MaxResults@, Cloud Map returns up to 100 services.
--
-- 'nextToken', 'listServices_nextToken' - For the first @ListServices@ request, omit this value.
--
-- If the response contains @NextToken@, submit another @ListServices@
-- request to get the next group of results. Specify the value of
-- @NextToken@ from the previous response in the next request.
--
-- Cloud Map gets @MaxResults@ services and then filters them based on the
-- specified criteria. It\'s possible that no services in the first
-- @MaxResults@ services matched the specified criteria but that subsequent
-- groups of @MaxResults@ services do contain services that match the
-- criteria.
newListServices ::
  ListServices
newListServices :: ListServices
newListServices =
  ListServices'
    { $sel:filters:ListServices' :: Maybe [ServiceFilter]
filters = forall a. Maybe a
Prelude.Nothing,
      $sel:maxResults:ListServices' :: Maybe Natural
maxResults = forall a. Maybe a
Prelude.Nothing,
      $sel:nextToken:ListServices' :: Maybe Text
nextToken = forall a. Maybe a
Prelude.Nothing
    }

-- | A complex type that contains specifications for the namespaces that you
-- want to list services for.
--
-- If you specify more than one filter, an operation must match all filters
-- to be returned by @ListServices@.
listServices_filters :: Lens.Lens' ListServices (Prelude.Maybe [ServiceFilter])
listServices_filters :: Lens' ListServices (Maybe [ServiceFilter])
listServices_filters = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListServices' {Maybe [ServiceFilter]
filters :: Maybe [ServiceFilter]
$sel:filters:ListServices' :: ListServices -> Maybe [ServiceFilter]
filters} -> Maybe [ServiceFilter]
filters) (\s :: ListServices
s@ListServices' {} Maybe [ServiceFilter]
a -> ListServices
s {$sel:filters:ListServices' :: Maybe [ServiceFilter]
filters = Maybe [ServiceFilter]
a} :: ListServices) 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 maximum number of services that you want Cloud Map to return in the
-- response to a @ListServices@ request. If you don\'t specify a value for
-- @MaxResults@, Cloud Map returns up to 100 services.
listServices_maxResults :: Lens.Lens' ListServices (Prelude.Maybe Prelude.Natural)
listServices_maxResults :: Lens' ListServices (Maybe Natural)
listServices_maxResults = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListServices' {Maybe Natural
maxResults :: Maybe Natural
$sel:maxResults:ListServices' :: ListServices -> Maybe Natural
maxResults} -> Maybe Natural
maxResults) (\s :: ListServices
s@ListServices' {} Maybe Natural
a -> ListServices
s {$sel:maxResults:ListServices' :: Maybe Natural
maxResults = Maybe Natural
a} :: ListServices)

-- | For the first @ListServices@ request, omit this value.
--
-- If the response contains @NextToken@, submit another @ListServices@
-- request to get the next group of results. Specify the value of
-- @NextToken@ from the previous response in the next request.
--
-- Cloud Map gets @MaxResults@ services and then filters them based on the
-- specified criteria. It\'s possible that no services in the first
-- @MaxResults@ services matched the specified criteria but that subsequent
-- groups of @MaxResults@ services do contain services that match the
-- criteria.
listServices_nextToken :: Lens.Lens' ListServices (Prelude.Maybe Prelude.Text)
listServices_nextToken :: Lens' ListServices (Maybe Text)
listServices_nextToken = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListServices' {Maybe Text
nextToken :: Maybe Text
$sel:nextToken:ListServices' :: ListServices -> Maybe Text
nextToken} -> Maybe Text
nextToken) (\s :: ListServices
s@ListServices' {} Maybe Text
a -> ListServices
s {$sel:nextToken:ListServices' :: Maybe Text
nextToken = Maybe Text
a} :: ListServices)

instance Core.AWSPager ListServices where
  page :: ListServices -> AWSResponse ListServices -> Maybe ListServices
page ListServices
rq AWSResponse ListServices
rs
    | forall a. AWSTruncated a => a -> Bool
Core.stop
        ( AWSResponse ListServices
rs
            forall s a. s -> Getting (First a) s a -> Maybe a
Lens.^? Lens' ListServicesResponse (Maybe Text)
listServicesResponse_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 ListServices
rs
            forall s a. s -> Getting (First a) s a -> Maybe a
Lens.^? Lens' ListServicesResponse (Maybe [ServiceSummary])
listServicesResponse_services
            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
    | Bool
Prelude.otherwise =
        forall a. a -> Maybe a
Prelude.Just
          forall a b. (a -> b) -> a -> b
Prelude.$ ListServices
rq
          forall a b. a -> (a -> b) -> b
Prelude.& Lens' ListServices (Maybe Text)
listServices_nextToken
          forall s t a b. ASetter s t a b -> b -> s -> t
Lens..~ AWSResponse ListServices
rs
          forall s a. s -> Getting (First a) s a -> Maybe a
Lens.^? Lens' ListServicesResponse (Maybe Text)
listServicesResponse_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 ListServices where
  type AWSResponse ListServices = ListServicesResponse
  request :: (Service -> Service) -> ListServices -> Request ListServices
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 ListServices
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse ListServices)))
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 [ServiceSummary] -> Int -> ListServicesResponse
ListServicesResponse'
            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.<*> (Object
x forall a. FromJSON a => Object -> Key -> Either String (Maybe a)
Data..?> Key
"Services" 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.<*> (forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure (forall a. Enum a => a -> Int
Prelude.fromEnum Int
s))
      )

instance Prelude.Hashable ListServices where
  hashWithSalt :: Int -> ListServices -> Int
hashWithSalt Int
_salt ListServices' {Maybe Natural
Maybe [ServiceFilter]
Maybe Text
nextToken :: Maybe Text
maxResults :: Maybe Natural
filters :: Maybe [ServiceFilter]
$sel:nextToken:ListServices' :: ListServices -> Maybe Text
$sel:maxResults:ListServices' :: ListServices -> Maybe Natural
$sel:filters:ListServices' :: ListServices -> Maybe [ServiceFilter]
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe [ServiceFilter]
filters
      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 ListServices where
  rnf :: ListServices -> ()
rnf ListServices' {Maybe Natural
Maybe [ServiceFilter]
Maybe Text
nextToken :: Maybe Text
maxResults :: Maybe Natural
filters :: Maybe [ServiceFilter]
$sel:nextToken:ListServices' :: ListServices -> Maybe Text
$sel:maxResults:ListServices' :: ListServices -> Maybe Natural
$sel:filters:ListServices' :: ListServices -> Maybe [ServiceFilter]
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe [ServiceFilter]
filters
      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 ListServices where
  toHeaders :: ListServices -> ResponseHeaders
toHeaders =
    forall a b. a -> b -> a
Prelude.const
      ( forall a. Monoid a => [a] -> a
Prelude.mconcat
          [ HeaderName
"X-Amz-Target"
              forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Data.=# ( ByteString
"Route53AutoNaming_v20170314.ListServices" ::
                          Prelude.ByteString
                      ),
            HeaderName
"Content-Type"
              forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Data.=# ( ByteString
"application/x-amz-json-1.1" ::
                          Prelude.ByteString
                      )
          ]
      )

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

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

-- | /See:/ 'newListServicesResponse' smart constructor.
data ListServicesResponse = ListServicesResponse'
  { -- | If the response contains @NextToken@, submit another @ListServices@
    -- request to get the next group of results. Specify the value of
    -- @NextToken@ from the previous response in the next request.
    --
    -- Cloud Map gets @MaxResults@ services and then filters them based on the
    -- specified criteria. It\'s possible that no services in the first
    -- @MaxResults@ services matched the specified criteria but that subsequent
    -- groups of @MaxResults@ services do contain services that match the
    -- criteria.
    ListServicesResponse -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text,
    -- | An array that contains one @ServiceSummary@ object for each service that
    -- matches the specified filter criteria.
    ListServicesResponse -> Maybe [ServiceSummary]
services :: Prelude.Maybe [ServiceSummary],
    -- | The response's http status code.
    ListServicesResponse -> Int
httpStatus :: Prelude.Int
  }
  deriving (ListServicesResponse -> ListServicesResponse -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListServicesResponse -> ListServicesResponse -> Bool
$c/= :: ListServicesResponse -> ListServicesResponse -> Bool
== :: ListServicesResponse -> ListServicesResponse -> Bool
$c== :: ListServicesResponse -> ListServicesResponse -> Bool
Prelude.Eq, ReadPrec [ListServicesResponse]
ReadPrec ListServicesResponse
Int -> ReadS ListServicesResponse
ReadS [ListServicesResponse]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ListServicesResponse]
$creadListPrec :: ReadPrec [ListServicesResponse]
readPrec :: ReadPrec ListServicesResponse
$creadPrec :: ReadPrec ListServicesResponse
readList :: ReadS [ListServicesResponse]
$creadList :: ReadS [ListServicesResponse]
readsPrec :: Int -> ReadS ListServicesResponse
$creadsPrec :: Int -> ReadS ListServicesResponse
Prelude.Read, Int -> ListServicesResponse -> ShowS
[ListServicesResponse] -> ShowS
ListServicesResponse -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListServicesResponse] -> ShowS
$cshowList :: [ListServicesResponse] -> ShowS
show :: ListServicesResponse -> String
$cshow :: ListServicesResponse -> String
showsPrec :: Int -> ListServicesResponse -> ShowS
$cshowsPrec :: Int -> ListServicesResponse -> ShowS
Prelude.Show, forall x. Rep ListServicesResponse x -> ListServicesResponse
forall x. ListServicesResponse -> Rep ListServicesResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ListServicesResponse x -> ListServicesResponse
$cfrom :: forall x. ListServicesResponse -> Rep ListServicesResponse x
Prelude.Generic)

-- |
-- Create a value of 'ListServicesResponse' 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', 'listServicesResponse_nextToken' - If the response contains @NextToken@, submit another @ListServices@
-- request to get the next group of results. Specify the value of
-- @NextToken@ from the previous response in the next request.
--
-- Cloud Map gets @MaxResults@ services and then filters them based on the
-- specified criteria. It\'s possible that no services in the first
-- @MaxResults@ services matched the specified criteria but that subsequent
-- groups of @MaxResults@ services do contain services that match the
-- criteria.
--
-- 'services', 'listServicesResponse_services' - An array that contains one @ServiceSummary@ object for each service that
-- matches the specified filter criteria.
--
-- 'httpStatus', 'listServicesResponse_httpStatus' - The response's http status code.
newListServicesResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  ListServicesResponse
newListServicesResponse :: Int -> ListServicesResponse
newListServicesResponse Int
pHttpStatus_ =
  ListServicesResponse'
    { $sel:nextToken:ListServicesResponse' :: Maybe Text
nextToken = forall a. Maybe a
Prelude.Nothing,
      $sel:services:ListServicesResponse' :: Maybe [ServiceSummary]
services = forall a. Maybe a
Prelude.Nothing,
      $sel:httpStatus:ListServicesResponse' :: Int
httpStatus = Int
pHttpStatus_
    }

-- | If the response contains @NextToken@, submit another @ListServices@
-- request to get the next group of results. Specify the value of
-- @NextToken@ from the previous response in the next request.
--
-- Cloud Map gets @MaxResults@ services and then filters them based on the
-- specified criteria. It\'s possible that no services in the first
-- @MaxResults@ services matched the specified criteria but that subsequent
-- groups of @MaxResults@ services do contain services that match the
-- criteria.
listServicesResponse_nextToken :: Lens.Lens' ListServicesResponse (Prelude.Maybe Prelude.Text)
listServicesResponse_nextToken :: Lens' ListServicesResponse (Maybe Text)
listServicesResponse_nextToken = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListServicesResponse' {Maybe Text
nextToken :: Maybe Text
$sel:nextToken:ListServicesResponse' :: ListServicesResponse -> Maybe Text
nextToken} -> Maybe Text
nextToken) (\s :: ListServicesResponse
s@ListServicesResponse' {} Maybe Text
a -> ListServicesResponse
s {$sel:nextToken:ListServicesResponse' :: Maybe Text
nextToken = Maybe Text
a} :: ListServicesResponse)

-- | An array that contains one @ServiceSummary@ object for each service that
-- matches the specified filter criteria.
listServicesResponse_services :: Lens.Lens' ListServicesResponse (Prelude.Maybe [ServiceSummary])
listServicesResponse_services :: Lens' ListServicesResponse (Maybe [ServiceSummary])
listServicesResponse_services = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListServicesResponse' {Maybe [ServiceSummary]
services :: Maybe [ServiceSummary]
$sel:services:ListServicesResponse' :: ListServicesResponse -> Maybe [ServiceSummary]
services} -> Maybe [ServiceSummary]
services) (\s :: ListServicesResponse
s@ListServicesResponse' {} Maybe [ServiceSummary]
a -> ListServicesResponse
s {$sel:services:ListServicesResponse' :: Maybe [ServiceSummary]
services = Maybe [ServiceSummary]
a} :: ListServicesResponse) 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 response's http status code.
listServicesResponse_httpStatus :: Lens.Lens' ListServicesResponse Prelude.Int
listServicesResponse_httpStatus :: Lens' ListServicesResponse Int
listServicesResponse_httpStatus = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListServicesResponse' {Int
httpStatus :: Int
$sel:httpStatus:ListServicesResponse' :: ListServicesResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: ListServicesResponse
s@ListServicesResponse' {} Int
a -> ListServicesResponse
s {$sel:httpStatus:ListServicesResponse' :: Int
httpStatus = Int
a} :: ListServicesResponse)

instance Prelude.NFData ListServicesResponse where
  rnf :: ListServicesResponse -> ()
rnf ListServicesResponse' {Int
Maybe [ServiceSummary]
Maybe Text
httpStatus :: Int
services :: Maybe [ServiceSummary]
nextToken :: Maybe Text
$sel:httpStatus:ListServicesResponse' :: ListServicesResponse -> Int
$sel:services:ListServicesResponse' :: ListServicesResponse -> Maybe [ServiceSummary]
$sel:nextToken:ListServicesResponse' :: ListServicesResponse -> 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 Maybe [ServiceSummary]
services
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Int
httpStatus