{-# 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.DataSync.ListLocations
-- Copyright   : (c) 2013-2023 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Returns a list of source and destination locations.
--
-- If you have more locations than are returned in a response (that is, the
-- response returns only a truncated list of your agents), the response
-- contains a token that you can specify in your next request to fetch the
-- next page of locations.
--
-- This operation returns paginated results.
module Amazonka.DataSync.ListLocations
  ( -- * Creating a Request
    ListLocations (..),
    newListLocations,

    -- * Request Lenses
    listLocations_filters,
    listLocations_maxResults,
    listLocations_nextToken,

    -- * Destructuring the Response
    ListLocationsResponse (..),
    newListLocationsResponse,

    -- * Response Lenses
    listLocationsResponse_locations,
    listLocationsResponse_nextToken,
    listLocationsResponse_httpStatus,
  )
where

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

-- | ListLocationsRequest
--
-- /See:/ 'newListLocations' smart constructor.
data ListLocations = ListLocations'
  { -- | You can use API filters to narrow down the list of resources returned by
    -- @ListLocations@. For example, to retrieve all tasks on a specific source
    -- location, you can use @ListLocations@ with filter name @LocationType S3@
    -- and @Operator Equals@.
    ListLocations -> Maybe [LocationFilter]
filters :: Prelude.Maybe [LocationFilter],
    -- | The maximum number of locations to return.
    ListLocations -> Maybe Natural
maxResults :: Prelude.Maybe Prelude.Natural,
    -- | An opaque string that indicates the position at which to begin the next
    -- list of locations.
    ListLocations -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text
  }
  deriving (ListLocations -> ListLocations -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListLocations -> ListLocations -> Bool
$c/= :: ListLocations -> ListLocations -> Bool
== :: ListLocations -> ListLocations -> Bool
$c== :: ListLocations -> ListLocations -> Bool
Prelude.Eq, ReadPrec [ListLocations]
ReadPrec ListLocations
Int -> ReadS ListLocations
ReadS [ListLocations]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ListLocations]
$creadListPrec :: ReadPrec [ListLocations]
readPrec :: ReadPrec ListLocations
$creadPrec :: ReadPrec ListLocations
readList :: ReadS [ListLocations]
$creadList :: ReadS [ListLocations]
readsPrec :: Int -> ReadS ListLocations
$creadsPrec :: Int -> ReadS ListLocations
Prelude.Read, Int -> ListLocations -> ShowS
[ListLocations] -> ShowS
ListLocations -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListLocations] -> ShowS
$cshowList :: [ListLocations] -> ShowS
show :: ListLocations -> String
$cshow :: ListLocations -> String
showsPrec :: Int -> ListLocations -> ShowS
$cshowsPrec :: Int -> ListLocations -> ShowS
Prelude.Show, forall x. Rep ListLocations x -> ListLocations
forall x. ListLocations -> Rep ListLocations x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ListLocations x -> ListLocations
$cfrom :: forall x. ListLocations -> Rep ListLocations x
Prelude.Generic)

-- |
-- Create a value of 'ListLocations' 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', 'listLocations_filters' - You can use API filters to narrow down the list of resources returned by
-- @ListLocations@. For example, to retrieve all tasks on a specific source
-- location, you can use @ListLocations@ with filter name @LocationType S3@
-- and @Operator Equals@.
--
-- 'maxResults', 'listLocations_maxResults' - The maximum number of locations to return.
--
-- 'nextToken', 'listLocations_nextToken' - An opaque string that indicates the position at which to begin the next
-- list of locations.
newListLocations ::
  ListLocations
newListLocations :: ListLocations
newListLocations =
  ListLocations'
    { $sel:filters:ListLocations' :: Maybe [LocationFilter]
filters = forall a. Maybe a
Prelude.Nothing,
      $sel:maxResults:ListLocations' :: Maybe Natural
maxResults = forall a. Maybe a
Prelude.Nothing,
      $sel:nextToken:ListLocations' :: Maybe Text
nextToken = forall a. Maybe a
Prelude.Nothing
    }

-- | You can use API filters to narrow down the list of resources returned by
-- @ListLocations@. For example, to retrieve all tasks on a specific source
-- location, you can use @ListLocations@ with filter name @LocationType S3@
-- and @Operator Equals@.
listLocations_filters :: Lens.Lens' ListLocations (Prelude.Maybe [LocationFilter])
listLocations_filters :: Lens' ListLocations (Maybe [LocationFilter])
listLocations_filters = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListLocations' {Maybe [LocationFilter]
filters :: Maybe [LocationFilter]
$sel:filters:ListLocations' :: ListLocations -> Maybe [LocationFilter]
filters} -> Maybe [LocationFilter]
filters) (\s :: ListLocations
s@ListLocations' {} Maybe [LocationFilter]
a -> ListLocations
s {$sel:filters:ListLocations' :: Maybe [LocationFilter]
filters = Maybe [LocationFilter]
a} :: ListLocations) 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 locations to return.
listLocations_maxResults :: Lens.Lens' ListLocations (Prelude.Maybe Prelude.Natural)
listLocations_maxResults :: Lens' ListLocations (Maybe Natural)
listLocations_maxResults = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListLocations' {Maybe Natural
maxResults :: Maybe Natural
$sel:maxResults:ListLocations' :: ListLocations -> Maybe Natural
maxResults} -> Maybe Natural
maxResults) (\s :: ListLocations
s@ListLocations' {} Maybe Natural
a -> ListLocations
s {$sel:maxResults:ListLocations' :: Maybe Natural
maxResults = Maybe Natural
a} :: ListLocations)

-- | An opaque string that indicates the position at which to begin the next
-- list of locations.
listLocations_nextToken :: Lens.Lens' ListLocations (Prelude.Maybe Prelude.Text)
listLocations_nextToken :: Lens' ListLocations (Maybe Text)
listLocations_nextToken = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListLocations' {Maybe Text
nextToken :: Maybe Text
$sel:nextToken:ListLocations' :: ListLocations -> Maybe Text
nextToken} -> Maybe Text
nextToken) (\s :: ListLocations
s@ListLocations' {} Maybe Text
a -> ListLocations
s {$sel:nextToken:ListLocations' :: Maybe Text
nextToken = Maybe Text
a} :: ListLocations)

instance Core.AWSPager ListLocations where
  page :: ListLocations -> AWSResponse ListLocations -> Maybe ListLocations
page ListLocations
rq AWSResponse ListLocations
rs
    | forall a. AWSTruncated a => a -> Bool
Core.stop
        ( AWSResponse ListLocations
rs
            forall s a. s -> Getting (First a) s a -> Maybe a
Lens.^? Lens' ListLocationsResponse (Maybe Text)
listLocationsResponse_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 ListLocations
rs
            forall s a. s -> Getting (First a) s a -> Maybe a
Lens.^? Lens' ListLocationsResponse (Maybe [LocationListEntry])
listLocationsResponse_locations
            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.$ ListLocations
rq
          forall a b. a -> (a -> b) -> b
Prelude.& Lens' ListLocations (Maybe Text)
listLocations_nextToken
          forall s t a b. ASetter s t a b -> b -> s -> t
Lens..~ AWSResponse ListLocations
rs
          forall s a. s -> Getting (First a) s a -> Maybe a
Lens.^? Lens' ListLocationsResponse (Maybe Text)
listLocationsResponse_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 ListLocations where
  type
    AWSResponse ListLocations =
      ListLocationsResponse
  request :: (Service -> Service) -> ListLocations -> Request ListLocations
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 ListLocations
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse ListLocations)))
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 [LocationListEntry]
-> Maybe Text -> Int -> ListLocationsResponse
ListLocationsResponse'
            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
"Locations" 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.<*> (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))
      )

instance Prelude.Hashable ListLocations where
  hashWithSalt :: Int -> ListLocations -> Int
hashWithSalt Int
_salt ListLocations' {Maybe Natural
Maybe [LocationFilter]
Maybe Text
nextToken :: Maybe Text
maxResults :: Maybe Natural
filters :: Maybe [LocationFilter]
$sel:nextToken:ListLocations' :: ListLocations -> Maybe Text
$sel:maxResults:ListLocations' :: ListLocations -> Maybe Natural
$sel:filters:ListLocations' :: ListLocations -> Maybe [LocationFilter]
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe [LocationFilter]
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 ListLocations where
  rnf :: ListLocations -> ()
rnf ListLocations' {Maybe Natural
Maybe [LocationFilter]
Maybe Text
nextToken :: Maybe Text
maxResults :: Maybe Natural
filters :: Maybe [LocationFilter]
$sel:nextToken:ListLocations' :: ListLocations -> Maybe Text
$sel:maxResults:ListLocations' :: ListLocations -> Maybe Natural
$sel:filters:ListLocations' :: ListLocations -> Maybe [LocationFilter]
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe [LocationFilter]
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 ListLocations where
  toHeaders :: ListLocations -> 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
"FmrsService.ListLocations" :: 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 ListLocations where
  toJSON :: ListLocations -> Value
toJSON ListLocations' {Maybe Natural
Maybe [LocationFilter]
Maybe Text
nextToken :: Maybe Text
maxResults :: Maybe Natural
filters :: Maybe [LocationFilter]
$sel:nextToken:ListLocations' :: ListLocations -> Maybe Text
$sel:maxResults:ListLocations' :: ListLocations -> Maybe Natural
$sel:filters:ListLocations' :: ListLocations -> Maybe [LocationFilter]
..} =
    [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 [LocationFilter]
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 ListLocations where
  toPath :: ListLocations -> ByteString
toPath = forall a b. a -> b -> a
Prelude.const ByteString
"/"

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

-- | ListLocationsResponse
--
-- /See:/ 'newListLocationsResponse' smart constructor.
data ListLocationsResponse = ListLocationsResponse'
  { -- | An array that contains a list of locations.
    ListLocationsResponse -> Maybe [LocationListEntry]
locations :: Prelude.Maybe [LocationListEntry],
    -- | An opaque string that indicates the position at which to begin returning
    -- the next list of locations.
    ListLocationsResponse -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text,
    -- | The response's http status code.
    ListLocationsResponse -> Int
httpStatus :: Prelude.Int
  }
  deriving (ListLocationsResponse -> ListLocationsResponse -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListLocationsResponse -> ListLocationsResponse -> Bool
$c/= :: ListLocationsResponse -> ListLocationsResponse -> Bool
== :: ListLocationsResponse -> ListLocationsResponse -> Bool
$c== :: ListLocationsResponse -> ListLocationsResponse -> Bool
Prelude.Eq, ReadPrec [ListLocationsResponse]
ReadPrec ListLocationsResponse
Int -> ReadS ListLocationsResponse
ReadS [ListLocationsResponse]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ListLocationsResponse]
$creadListPrec :: ReadPrec [ListLocationsResponse]
readPrec :: ReadPrec ListLocationsResponse
$creadPrec :: ReadPrec ListLocationsResponse
readList :: ReadS [ListLocationsResponse]
$creadList :: ReadS [ListLocationsResponse]
readsPrec :: Int -> ReadS ListLocationsResponse
$creadsPrec :: Int -> ReadS ListLocationsResponse
Prelude.Read, Int -> ListLocationsResponse -> ShowS
[ListLocationsResponse] -> ShowS
ListLocationsResponse -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListLocationsResponse] -> ShowS
$cshowList :: [ListLocationsResponse] -> ShowS
show :: ListLocationsResponse -> String
$cshow :: ListLocationsResponse -> String
showsPrec :: Int -> ListLocationsResponse -> ShowS
$cshowsPrec :: Int -> ListLocationsResponse -> ShowS
Prelude.Show, forall x. Rep ListLocationsResponse x -> ListLocationsResponse
forall x. ListLocationsResponse -> Rep ListLocationsResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ListLocationsResponse x -> ListLocationsResponse
$cfrom :: forall x. ListLocationsResponse -> Rep ListLocationsResponse x
Prelude.Generic)

-- |
-- Create a value of 'ListLocationsResponse' 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:
--
-- 'locations', 'listLocationsResponse_locations' - An array that contains a list of locations.
--
-- 'nextToken', 'listLocationsResponse_nextToken' - An opaque string that indicates the position at which to begin returning
-- the next list of locations.
--
-- 'httpStatus', 'listLocationsResponse_httpStatus' - The response's http status code.
newListLocationsResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  ListLocationsResponse
newListLocationsResponse :: Int -> ListLocationsResponse
newListLocationsResponse Int
pHttpStatus_ =
  ListLocationsResponse'
    { $sel:locations:ListLocationsResponse' :: Maybe [LocationListEntry]
locations = forall a. Maybe a
Prelude.Nothing,
      $sel:nextToken:ListLocationsResponse' :: Maybe Text
nextToken = forall a. Maybe a
Prelude.Nothing,
      $sel:httpStatus:ListLocationsResponse' :: Int
httpStatus = Int
pHttpStatus_
    }

-- | An array that contains a list of locations.
listLocationsResponse_locations :: Lens.Lens' ListLocationsResponse (Prelude.Maybe [LocationListEntry])
listLocationsResponse_locations :: Lens' ListLocationsResponse (Maybe [LocationListEntry])
listLocationsResponse_locations = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListLocationsResponse' {Maybe [LocationListEntry]
locations :: Maybe [LocationListEntry]
$sel:locations:ListLocationsResponse' :: ListLocationsResponse -> Maybe [LocationListEntry]
locations} -> Maybe [LocationListEntry]
locations) (\s :: ListLocationsResponse
s@ListLocationsResponse' {} Maybe [LocationListEntry]
a -> ListLocationsResponse
s {$sel:locations:ListLocationsResponse' :: Maybe [LocationListEntry]
locations = Maybe [LocationListEntry]
a} :: ListLocationsResponse) 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

-- | An opaque string that indicates the position at which to begin returning
-- the next list of locations.
listLocationsResponse_nextToken :: Lens.Lens' ListLocationsResponse (Prelude.Maybe Prelude.Text)
listLocationsResponse_nextToken :: Lens' ListLocationsResponse (Maybe Text)
listLocationsResponse_nextToken = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListLocationsResponse' {Maybe Text
nextToken :: Maybe Text
$sel:nextToken:ListLocationsResponse' :: ListLocationsResponse -> Maybe Text
nextToken} -> Maybe Text
nextToken) (\s :: ListLocationsResponse
s@ListLocationsResponse' {} Maybe Text
a -> ListLocationsResponse
s {$sel:nextToken:ListLocationsResponse' :: Maybe Text
nextToken = Maybe Text
a} :: ListLocationsResponse)

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

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