{-# 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.MediaConnect.ListOfferings
-- 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)
--
-- Displays a list of all offerings that are available to this account in
-- the current AWS Region. If you have an active reservation (which means
-- you\'ve purchased an offering that has already started and hasn\'t
-- expired yet), your account isn\'t eligible for other offerings.
--
-- This operation returns paginated results.
module Amazonka.MediaConnect.ListOfferings
  ( -- * Creating a Request
    ListOfferings (..),
    newListOfferings,

    -- * Request Lenses
    listOfferings_nextToken,
    listOfferings_maxResults,

    -- * Destructuring the Response
    ListOfferingsResponse (..),
    newListOfferingsResponse,

    -- * Response Lenses
    listOfferingsResponse_nextToken,
    listOfferingsResponse_offerings,
    listOfferingsResponse_httpStatus,
  )
where

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

-- | /See:/ 'newListOfferings' smart constructor.
data ListOfferings = ListOfferings'
  { -- | The token that identifies which batch of results that you want to see.
    -- For example, you submit a ListOfferings request with MaxResults set at
    -- 5. The service returns the first batch of results (up to 5) and a
    -- NextToken value. To see the next batch of results, you can submit the
    -- ListOfferings request a second time and specify the NextToken value.
    ListOfferings -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text,
    -- | The maximum number of results to return per API request. For example,
    -- you submit a ListOfferings request with MaxResults set at 5. Although 20
    -- items match your request, the service returns no more than the first 5
    -- items. (The service also returns a NextToken value that you can use to
    -- fetch the next batch of results.) The service might return fewer results
    -- than the MaxResults value. If MaxResults is not included in the request,
    -- the service defaults to pagination with a maximum of 10 results per
    -- page.
    ListOfferings -> Maybe Natural
maxResults :: Prelude.Maybe Prelude.Natural
  }
  deriving (ListOfferings -> ListOfferings -> Bool
(ListOfferings -> ListOfferings -> Bool)
-> (ListOfferings -> ListOfferings -> Bool) -> Eq ListOfferings
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListOfferings -> ListOfferings -> Bool
$c/= :: ListOfferings -> ListOfferings -> Bool
== :: ListOfferings -> ListOfferings -> Bool
$c== :: ListOfferings -> ListOfferings -> Bool
Prelude.Eq, ReadPrec [ListOfferings]
ReadPrec ListOfferings
Int -> ReadS ListOfferings
ReadS [ListOfferings]
(Int -> ReadS ListOfferings)
-> ReadS [ListOfferings]
-> ReadPrec ListOfferings
-> ReadPrec [ListOfferings]
-> Read ListOfferings
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ListOfferings]
$creadListPrec :: ReadPrec [ListOfferings]
readPrec :: ReadPrec ListOfferings
$creadPrec :: ReadPrec ListOfferings
readList :: ReadS [ListOfferings]
$creadList :: ReadS [ListOfferings]
readsPrec :: Int -> ReadS ListOfferings
$creadsPrec :: Int -> ReadS ListOfferings
Prelude.Read, Int -> ListOfferings -> ShowS
[ListOfferings] -> ShowS
ListOfferings -> String
(Int -> ListOfferings -> ShowS)
-> (ListOfferings -> String)
-> ([ListOfferings] -> ShowS)
-> Show ListOfferings
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListOfferings] -> ShowS
$cshowList :: [ListOfferings] -> ShowS
show :: ListOfferings -> String
$cshow :: ListOfferings -> String
showsPrec :: Int -> ListOfferings -> ShowS
$cshowsPrec :: Int -> ListOfferings -> ShowS
Prelude.Show, (forall x. ListOfferings -> Rep ListOfferings x)
-> (forall x. Rep ListOfferings x -> ListOfferings)
-> Generic ListOfferings
forall x. Rep ListOfferings x -> ListOfferings
forall x. ListOfferings -> Rep ListOfferings x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ListOfferings x -> ListOfferings
$cfrom :: forall x. ListOfferings -> Rep ListOfferings x
Prelude.Generic)

-- |
-- Create a value of 'ListOfferings' 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', 'listOfferings_nextToken' - The token that identifies which batch of results that you want to see.
-- For example, you submit a ListOfferings request with MaxResults set at
-- 5. The service returns the first batch of results (up to 5) and a
-- NextToken value. To see the next batch of results, you can submit the
-- ListOfferings request a second time and specify the NextToken value.
--
-- 'maxResults', 'listOfferings_maxResults' - The maximum number of results to return per API request. For example,
-- you submit a ListOfferings request with MaxResults set at 5. Although 20
-- items match your request, the service returns no more than the first 5
-- items. (The service also returns a NextToken value that you can use to
-- fetch the next batch of results.) The service might return fewer results
-- than the MaxResults value. If MaxResults is not included in the request,
-- the service defaults to pagination with a maximum of 10 results per
-- page.
newListOfferings ::
  ListOfferings
newListOfferings :: ListOfferings
newListOfferings =
  ListOfferings' :: Maybe Text -> Maybe Natural -> ListOfferings
ListOfferings'
    { $sel:nextToken:ListOfferings' :: Maybe Text
nextToken = Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:maxResults:ListOfferings' :: Maybe Natural
maxResults = Maybe Natural
forall a. Maybe a
Prelude.Nothing
    }

-- | The token that identifies which batch of results that you want to see.
-- For example, you submit a ListOfferings request with MaxResults set at
-- 5. The service returns the first batch of results (up to 5) and a
-- NextToken value. To see the next batch of results, you can submit the
-- ListOfferings request a second time and specify the NextToken value.
listOfferings_nextToken :: Lens.Lens' ListOfferings (Prelude.Maybe Prelude.Text)
listOfferings_nextToken :: (Maybe Text -> f (Maybe Text)) -> ListOfferings -> f ListOfferings
listOfferings_nextToken = (ListOfferings -> Maybe Text)
-> (ListOfferings -> Maybe Text -> ListOfferings)
-> Lens ListOfferings ListOfferings (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListOfferings' {Maybe Text
nextToken :: Maybe Text
$sel:nextToken:ListOfferings' :: ListOfferings -> Maybe Text
nextToken} -> Maybe Text
nextToken) (\s :: ListOfferings
s@ListOfferings' {} Maybe Text
a -> ListOfferings
s {$sel:nextToken:ListOfferings' :: Maybe Text
nextToken = Maybe Text
a} :: ListOfferings)

-- | The maximum number of results to return per API request. For example,
-- you submit a ListOfferings request with MaxResults set at 5. Although 20
-- items match your request, the service returns no more than the first 5
-- items. (The service also returns a NextToken value that you can use to
-- fetch the next batch of results.) The service might return fewer results
-- than the MaxResults value. If MaxResults is not included in the request,
-- the service defaults to pagination with a maximum of 10 results per
-- page.
listOfferings_maxResults :: Lens.Lens' ListOfferings (Prelude.Maybe Prelude.Natural)
listOfferings_maxResults :: (Maybe Natural -> f (Maybe Natural))
-> ListOfferings -> f ListOfferings
listOfferings_maxResults = (ListOfferings -> Maybe Natural)
-> (ListOfferings -> Maybe Natural -> ListOfferings)
-> Lens ListOfferings ListOfferings (Maybe Natural) (Maybe Natural)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListOfferings' {Maybe Natural
maxResults :: Maybe Natural
$sel:maxResults:ListOfferings' :: ListOfferings -> Maybe Natural
maxResults} -> Maybe Natural
maxResults) (\s :: ListOfferings
s@ListOfferings' {} Maybe Natural
a -> ListOfferings
s {$sel:maxResults:ListOfferings' :: Maybe Natural
maxResults = Maybe Natural
a} :: ListOfferings)

instance Core.AWSPager ListOfferings where
  page :: ListOfferings -> AWSResponse ListOfferings -> Maybe ListOfferings
page ListOfferings
rq AWSResponse ListOfferings
rs
    | Maybe Text -> Bool
forall a. AWSTruncated a => a -> Bool
Core.stop
        ( AWSResponse ListOfferings
ListOfferingsResponse
rs
            ListOfferingsResponse
-> Getting (First Text) ListOfferingsResponse Text -> Maybe Text
forall s a. s -> Getting (First a) s a -> Maybe a
Lens.^? (Maybe Text -> Const (First Text) (Maybe Text))
-> ListOfferingsResponse
-> Const (First Text) ListOfferingsResponse
Lens' ListOfferingsResponse (Maybe Text)
listOfferingsResponse_nextToken ((Maybe Text -> Const (First Text) (Maybe Text))
 -> ListOfferingsResponse
 -> Const (First Text) ListOfferingsResponse)
-> ((Text -> Const (First Text) Text)
    -> Maybe Text -> Const (First Text) (Maybe Text))
-> Getting (First Text) ListOfferingsResponse 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 ListOfferings
forall a. Maybe a
Prelude.Nothing
    | Maybe [Offering] -> Bool
forall a. AWSTruncated a => a -> Bool
Core.stop
        ( AWSResponse ListOfferings
ListOfferingsResponse
rs
            ListOfferingsResponse
-> Getting (First [Offering]) ListOfferingsResponse [Offering]
-> Maybe [Offering]
forall s a. s -> Getting (First a) s a -> Maybe a
Lens.^? (Maybe [Offering] -> Const (First [Offering]) (Maybe [Offering]))
-> ListOfferingsResponse
-> Const (First [Offering]) ListOfferingsResponse
Lens' ListOfferingsResponse (Maybe [Offering])
listOfferingsResponse_offerings ((Maybe [Offering] -> Const (First [Offering]) (Maybe [Offering]))
 -> ListOfferingsResponse
 -> Const (First [Offering]) ListOfferingsResponse)
-> (([Offering] -> Const (First [Offering]) [Offering])
    -> Maybe [Offering] -> Const (First [Offering]) (Maybe [Offering]))
-> Getting (First [Offering]) ListOfferingsResponse [Offering]
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. ([Offering] -> Const (First [Offering]) [Offering])
-> Maybe [Offering] -> Const (First [Offering]) (Maybe [Offering])
forall a b. Prism (Maybe a) (Maybe b) a b
Lens._Just
        ) =
      Maybe ListOfferings
forall a. Maybe a
Prelude.Nothing
    | Bool
Prelude.otherwise =
      ListOfferings -> Maybe ListOfferings
forall a. a -> Maybe a
Prelude.Just (ListOfferings -> Maybe ListOfferings)
-> ListOfferings -> Maybe ListOfferings
forall a b. (a -> b) -> a -> b
Prelude.$
        ListOfferings
rq
          ListOfferings -> (ListOfferings -> ListOfferings) -> ListOfferings
forall a b. a -> (a -> b) -> b
Prelude.& (Maybe Text -> Identity (Maybe Text))
-> ListOfferings -> Identity ListOfferings
Lens ListOfferings ListOfferings (Maybe Text) (Maybe Text)
listOfferings_nextToken
          ((Maybe Text -> Identity (Maybe Text))
 -> ListOfferings -> Identity ListOfferings)
-> Maybe Text -> ListOfferings -> ListOfferings
forall s t a b. ASetter s t a b -> b -> s -> t
Lens..~ AWSResponse ListOfferings
ListOfferingsResponse
rs
          ListOfferingsResponse
-> Getting (First Text) ListOfferingsResponse Text -> Maybe Text
forall s a. s -> Getting (First a) s a -> Maybe a
Lens.^? (Maybe Text -> Const (First Text) (Maybe Text))
-> ListOfferingsResponse
-> Const (First Text) ListOfferingsResponse
Lens' ListOfferingsResponse (Maybe Text)
listOfferingsResponse_nextToken ((Maybe Text -> Const (First Text) (Maybe Text))
 -> ListOfferingsResponse
 -> Const (First Text) ListOfferingsResponse)
-> ((Text -> Const (First Text) Text)
    -> Maybe Text -> Const (First Text) (Maybe Text))
-> Getting (First Text) ListOfferingsResponse 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 ListOfferings where
  type
    AWSResponse ListOfferings =
      ListOfferingsResponse
  request :: ListOfferings -> Request ListOfferings
request = Service -> ListOfferings -> Request ListOfferings
forall a. ToRequest a => Service -> a -> Request a
Request.get Service
defaultService
  response :: Logger
-> Service
-> Proxy ListOfferings
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse ListOfferings)))
response =
    (Int
 -> ResponseHeaders
 -> Object
 -> Either String (AWSResponse ListOfferings))
-> Logger
-> Service
-> Proxy ListOfferings
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse ListOfferings)))
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 [Offering] -> Int -> ListOfferingsResponse
ListOfferingsResponse'
            (Maybe Text -> Maybe [Offering] -> Int -> ListOfferingsResponse)
-> Either String (Maybe Text)
-> Either String (Maybe [Offering] -> Int -> ListOfferingsResponse)
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 [Offering] -> Int -> ListOfferingsResponse)
-> Either String (Maybe [Offering])
-> Either String (Int -> ListOfferingsResponse)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Either String (Maybe (Maybe [Offering]))
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"offerings" Either String (Maybe (Maybe [Offering]))
-> Maybe [Offering] -> Either String (Maybe [Offering])
forall (f :: * -> *) a. Functor f => f (Maybe a) -> a -> f a
Core..!@ Maybe [Offering]
forall a. Monoid a => a
Prelude.mempty)
            Either String (Int -> ListOfferingsResponse)
-> Either String Int -> Either String ListOfferingsResponse
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 ListOfferings

instance Prelude.NFData ListOfferings

instance Core.ToHeaders ListOfferings where
  toHeaders :: ListOfferings -> ResponseHeaders
toHeaders =
    ResponseHeaders -> ListOfferings -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const
      ( [ResponseHeaders] -> ResponseHeaders
forall a. Monoid a => [a] -> a
Prelude.mconcat
          [ 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.ToPath ListOfferings where
  toPath :: ListOfferings -> ByteString
toPath = ByteString -> ListOfferings -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/v1/offerings"

instance Core.ToQuery ListOfferings where
  toQuery :: ListOfferings -> QueryString
toQuery ListOfferings' {Maybe Natural
Maybe Text
maxResults :: Maybe Natural
nextToken :: Maybe Text
$sel:maxResults:ListOfferings' :: ListOfferings -> Maybe Natural
$sel:nextToken:ListOfferings' :: ListOfferings -> 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:/ 'newListOfferingsResponse' smart constructor.
data ListOfferingsResponse = ListOfferingsResponse'
  { -- | The token that identifies which batch of results that you want to see.
    -- For example, you submit a ListOfferings request with MaxResults set at
    -- 5. The service returns the first batch of results (up to 5) and a
    -- NextToken value. To see the next batch of results, you can submit the
    -- ListOfferings request a second time and specify the NextToken value.
    ListOfferingsResponse -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text,
    -- | A list of offerings that are available to this account in the current
    -- AWS Region.
    ListOfferingsResponse -> Maybe [Offering]
offerings :: Prelude.Maybe [Offering],
    -- | The response's http status code.
    ListOfferingsResponse -> Int
httpStatus :: Prelude.Int
  }
  deriving (ListOfferingsResponse -> ListOfferingsResponse -> Bool
(ListOfferingsResponse -> ListOfferingsResponse -> Bool)
-> (ListOfferingsResponse -> ListOfferingsResponse -> Bool)
-> Eq ListOfferingsResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListOfferingsResponse -> ListOfferingsResponse -> Bool
$c/= :: ListOfferingsResponse -> ListOfferingsResponse -> Bool
== :: ListOfferingsResponse -> ListOfferingsResponse -> Bool
$c== :: ListOfferingsResponse -> ListOfferingsResponse -> Bool
Prelude.Eq, ReadPrec [ListOfferingsResponse]
ReadPrec ListOfferingsResponse
Int -> ReadS ListOfferingsResponse
ReadS [ListOfferingsResponse]
(Int -> ReadS ListOfferingsResponse)
-> ReadS [ListOfferingsResponse]
-> ReadPrec ListOfferingsResponse
-> ReadPrec [ListOfferingsResponse]
-> Read ListOfferingsResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ListOfferingsResponse]
$creadListPrec :: ReadPrec [ListOfferingsResponse]
readPrec :: ReadPrec ListOfferingsResponse
$creadPrec :: ReadPrec ListOfferingsResponse
readList :: ReadS [ListOfferingsResponse]
$creadList :: ReadS [ListOfferingsResponse]
readsPrec :: Int -> ReadS ListOfferingsResponse
$creadsPrec :: Int -> ReadS ListOfferingsResponse
Prelude.Read, Int -> ListOfferingsResponse -> ShowS
[ListOfferingsResponse] -> ShowS
ListOfferingsResponse -> String
(Int -> ListOfferingsResponse -> ShowS)
-> (ListOfferingsResponse -> String)
-> ([ListOfferingsResponse] -> ShowS)
-> Show ListOfferingsResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListOfferingsResponse] -> ShowS
$cshowList :: [ListOfferingsResponse] -> ShowS
show :: ListOfferingsResponse -> String
$cshow :: ListOfferingsResponse -> String
showsPrec :: Int -> ListOfferingsResponse -> ShowS
$cshowsPrec :: Int -> ListOfferingsResponse -> ShowS
Prelude.Show, (forall x. ListOfferingsResponse -> Rep ListOfferingsResponse x)
-> (forall x. Rep ListOfferingsResponse x -> ListOfferingsResponse)
-> Generic ListOfferingsResponse
forall x. Rep ListOfferingsResponse x -> ListOfferingsResponse
forall x. ListOfferingsResponse -> Rep ListOfferingsResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ListOfferingsResponse x -> ListOfferingsResponse
$cfrom :: forall x. ListOfferingsResponse -> Rep ListOfferingsResponse x
Prelude.Generic)

-- |
-- Create a value of 'ListOfferingsResponse' 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', 'listOfferingsResponse_nextToken' - The token that identifies which batch of results that you want to see.
-- For example, you submit a ListOfferings request with MaxResults set at
-- 5. The service returns the first batch of results (up to 5) and a
-- NextToken value. To see the next batch of results, you can submit the
-- ListOfferings request a second time and specify the NextToken value.
--
-- 'offerings', 'listOfferingsResponse_offerings' - A list of offerings that are available to this account in the current
-- AWS Region.
--
-- 'httpStatus', 'listOfferingsResponse_httpStatus' - The response's http status code.
newListOfferingsResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  ListOfferingsResponse
newListOfferingsResponse :: Int -> ListOfferingsResponse
newListOfferingsResponse Int
pHttpStatus_ =
  ListOfferingsResponse' :: Maybe Text -> Maybe [Offering] -> Int -> ListOfferingsResponse
ListOfferingsResponse'
    { $sel:nextToken:ListOfferingsResponse' :: Maybe Text
nextToken = Maybe Text
forall a. Maybe a
Prelude.Nothing,
      $sel:offerings:ListOfferingsResponse' :: Maybe [Offering]
offerings = Maybe [Offering]
forall a. Maybe a
Prelude.Nothing,
      $sel:httpStatus:ListOfferingsResponse' :: Int
httpStatus = Int
pHttpStatus_
    }

-- | The token that identifies which batch of results that you want to see.
-- For example, you submit a ListOfferings request with MaxResults set at
-- 5. The service returns the first batch of results (up to 5) and a
-- NextToken value. To see the next batch of results, you can submit the
-- ListOfferings request a second time and specify the NextToken value.
listOfferingsResponse_nextToken :: Lens.Lens' ListOfferingsResponse (Prelude.Maybe Prelude.Text)
listOfferingsResponse_nextToken :: (Maybe Text -> f (Maybe Text))
-> ListOfferingsResponse -> f ListOfferingsResponse
listOfferingsResponse_nextToken = (ListOfferingsResponse -> Maybe Text)
-> (ListOfferingsResponse -> Maybe Text -> ListOfferingsResponse)
-> Lens' ListOfferingsResponse (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListOfferingsResponse' {Maybe Text
nextToken :: Maybe Text
$sel:nextToken:ListOfferingsResponse' :: ListOfferingsResponse -> Maybe Text
nextToken} -> Maybe Text
nextToken) (\s :: ListOfferingsResponse
s@ListOfferingsResponse' {} Maybe Text
a -> ListOfferingsResponse
s {$sel:nextToken:ListOfferingsResponse' :: Maybe Text
nextToken = Maybe Text
a} :: ListOfferingsResponse)

-- | A list of offerings that are available to this account in the current
-- AWS Region.
listOfferingsResponse_offerings :: Lens.Lens' ListOfferingsResponse (Prelude.Maybe [Offering])
listOfferingsResponse_offerings :: (Maybe [Offering] -> f (Maybe [Offering]))
-> ListOfferingsResponse -> f ListOfferingsResponse
listOfferingsResponse_offerings = (ListOfferingsResponse -> Maybe [Offering])
-> (ListOfferingsResponse
    -> Maybe [Offering] -> ListOfferingsResponse)
-> Lens' ListOfferingsResponse (Maybe [Offering])
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListOfferingsResponse' {Maybe [Offering]
offerings :: Maybe [Offering]
$sel:offerings:ListOfferingsResponse' :: ListOfferingsResponse -> Maybe [Offering]
offerings} -> Maybe [Offering]
offerings) (\s :: ListOfferingsResponse
s@ListOfferingsResponse' {} Maybe [Offering]
a -> ListOfferingsResponse
s {$sel:offerings:ListOfferingsResponse' :: Maybe [Offering]
offerings = Maybe [Offering]
a} :: ListOfferingsResponse) ((Maybe [Offering] -> f (Maybe [Offering]))
 -> ListOfferingsResponse -> f ListOfferingsResponse)
-> ((Maybe [Offering] -> f (Maybe [Offering]))
    -> Maybe [Offering] -> f (Maybe [Offering]))
-> (Maybe [Offering] -> f (Maybe [Offering]))
-> ListOfferingsResponse
-> f ListOfferingsResponse
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. AnIso [Offering] [Offering] [Offering] [Offering]
-> Iso
     (Maybe [Offering])
     (Maybe [Offering])
     (Maybe [Offering])
     (Maybe [Offering])
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 [Offering] [Offering] [Offering] [Offering]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

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

instance Prelude.NFData ListOfferingsResponse