{-# 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.OpsWorksCM.DescribeBackups
-- Copyright   : (c) 2013-2023 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Describes backups. The results are ordered by time, with newest backups
-- first. If you do not specify a BackupId or ServerName, the command
-- returns all backups.
--
-- This operation is synchronous.
--
-- A @ResourceNotFoundException@ is thrown when the backup does not exist.
-- A @ValidationException@ is raised when parameters of the request are not
-- valid.
--
-- This operation returns paginated results.
module Amazonka.OpsWorksCM.DescribeBackups
  ( -- * Creating a Request
    DescribeBackups (..),
    newDescribeBackups,

    -- * Request Lenses
    describeBackups_backupId,
    describeBackups_maxResults,
    describeBackups_nextToken,
    describeBackups_serverName,

    -- * Destructuring the Response
    DescribeBackupsResponse (..),
    newDescribeBackupsResponse,

    -- * Response Lenses
    describeBackupsResponse_backups,
    describeBackupsResponse_nextToken,
    describeBackupsResponse_httpStatus,
  )
where

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

-- | /See:/ 'newDescribeBackups' smart constructor.
data DescribeBackups = DescribeBackups'
  { -- | Describes a single backup.
    DescribeBackups -> Maybe Text
backupId :: Prelude.Maybe Prelude.Text,
    -- | This is not currently implemented for @DescribeBackups@ requests.
    DescribeBackups -> Maybe Natural
maxResults :: Prelude.Maybe Prelude.Natural,
    -- | This is not currently implemented for @DescribeBackups@ requests.
    DescribeBackups -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text,
    -- | Returns backups for the server with the specified ServerName.
    DescribeBackups -> Maybe Text
serverName :: Prelude.Maybe Prelude.Text
  }
  deriving (DescribeBackups -> DescribeBackups -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DescribeBackups -> DescribeBackups -> Bool
$c/= :: DescribeBackups -> DescribeBackups -> Bool
== :: DescribeBackups -> DescribeBackups -> Bool
$c== :: DescribeBackups -> DescribeBackups -> Bool
Prelude.Eq, ReadPrec [DescribeBackups]
ReadPrec DescribeBackups
Int -> ReadS DescribeBackups
ReadS [DescribeBackups]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DescribeBackups]
$creadListPrec :: ReadPrec [DescribeBackups]
readPrec :: ReadPrec DescribeBackups
$creadPrec :: ReadPrec DescribeBackups
readList :: ReadS [DescribeBackups]
$creadList :: ReadS [DescribeBackups]
readsPrec :: Int -> ReadS DescribeBackups
$creadsPrec :: Int -> ReadS DescribeBackups
Prelude.Read, Int -> DescribeBackups -> ShowS
[DescribeBackups] -> ShowS
DescribeBackups -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DescribeBackups] -> ShowS
$cshowList :: [DescribeBackups] -> ShowS
show :: DescribeBackups -> String
$cshow :: DescribeBackups -> String
showsPrec :: Int -> DescribeBackups -> ShowS
$cshowsPrec :: Int -> DescribeBackups -> ShowS
Prelude.Show, forall x. Rep DescribeBackups x -> DescribeBackups
forall x. DescribeBackups -> Rep DescribeBackups x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DescribeBackups x -> DescribeBackups
$cfrom :: forall x. DescribeBackups -> Rep DescribeBackups x
Prelude.Generic)

-- |
-- Create a value of 'DescribeBackups' 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:
--
-- 'backupId', 'describeBackups_backupId' - Describes a single backup.
--
-- 'maxResults', 'describeBackups_maxResults' - This is not currently implemented for @DescribeBackups@ requests.
--
-- 'nextToken', 'describeBackups_nextToken' - This is not currently implemented for @DescribeBackups@ requests.
--
-- 'serverName', 'describeBackups_serverName' - Returns backups for the server with the specified ServerName.
newDescribeBackups ::
  DescribeBackups
newDescribeBackups :: DescribeBackups
newDescribeBackups =
  DescribeBackups'
    { $sel:backupId:DescribeBackups' :: Maybe Text
backupId = forall a. Maybe a
Prelude.Nothing,
      $sel:maxResults:DescribeBackups' :: Maybe Natural
maxResults = forall a. Maybe a
Prelude.Nothing,
      $sel:nextToken:DescribeBackups' :: Maybe Text
nextToken = forall a. Maybe a
Prelude.Nothing,
      $sel:serverName:DescribeBackups' :: Maybe Text
serverName = forall a. Maybe a
Prelude.Nothing
    }

-- | Describes a single backup.
describeBackups_backupId :: Lens.Lens' DescribeBackups (Prelude.Maybe Prelude.Text)
describeBackups_backupId :: Lens' DescribeBackups (Maybe Text)
describeBackups_backupId = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DescribeBackups' {Maybe Text
backupId :: Maybe Text
$sel:backupId:DescribeBackups' :: DescribeBackups -> Maybe Text
backupId} -> Maybe Text
backupId) (\s :: DescribeBackups
s@DescribeBackups' {} Maybe Text
a -> DescribeBackups
s {$sel:backupId:DescribeBackups' :: Maybe Text
backupId = Maybe Text
a} :: DescribeBackups)

-- | This is not currently implemented for @DescribeBackups@ requests.
describeBackups_maxResults :: Lens.Lens' DescribeBackups (Prelude.Maybe Prelude.Natural)
describeBackups_maxResults :: Lens' DescribeBackups (Maybe Natural)
describeBackups_maxResults = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DescribeBackups' {Maybe Natural
maxResults :: Maybe Natural
$sel:maxResults:DescribeBackups' :: DescribeBackups -> Maybe Natural
maxResults} -> Maybe Natural
maxResults) (\s :: DescribeBackups
s@DescribeBackups' {} Maybe Natural
a -> DescribeBackups
s {$sel:maxResults:DescribeBackups' :: Maybe Natural
maxResults = Maybe Natural
a} :: DescribeBackups)

-- | This is not currently implemented for @DescribeBackups@ requests.
describeBackups_nextToken :: Lens.Lens' DescribeBackups (Prelude.Maybe Prelude.Text)
describeBackups_nextToken :: Lens' DescribeBackups (Maybe Text)
describeBackups_nextToken = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DescribeBackups' {Maybe Text
nextToken :: Maybe Text
$sel:nextToken:DescribeBackups' :: DescribeBackups -> Maybe Text
nextToken} -> Maybe Text
nextToken) (\s :: DescribeBackups
s@DescribeBackups' {} Maybe Text
a -> DescribeBackups
s {$sel:nextToken:DescribeBackups' :: Maybe Text
nextToken = Maybe Text
a} :: DescribeBackups)

-- | Returns backups for the server with the specified ServerName.
describeBackups_serverName :: Lens.Lens' DescribeBackups (Prelude.Maybe Prelude.Text)
describeBackups_serverName :: Lens' DescribeBackups (Maybe Text)
describeBackups_serverName = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DescribeBackups' {Maybe Text
serverName :: Maybe Text
$sel:serverName:DescribeBackups' :: DescribeBackups -> Maybe Text
serverName} -> Maybe Text
serverName) (\s :: DescribeBackups
s@DescribeBackups' {} Maybe Text
a -> DescribeBackups
s {$sel:serverName:DescribeBackups' :: Maybe Text
serverName = Maybe Text
a} :: DescribeBackups)

instance Core.AWSPager DescribeBackups where
  page :: DescribeBackups
-> AWSResponse DescribeBackups -> Maybe DescribeBackups
page DescribeBackups
rq AWSResponse DescribeBackups
rs
    | forall a. AWSTruncated a => a -> Bool
Core.stop
        ( AWSResponse DescribeBackups
rs
            forall s a. s -> Getting (First a) s a -> Maybe a
Lens.^? Lens' DescribeBackupsResponse (Maybe Text)
describeBackupsResponse_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 DescribeBackups
rs
            forall s a. s -> Getting (First a) s a -> Maybe a
Lens.^? Lens' DescribeBackupsResponse (Maybe [Backup])
describeBackupsResponse_backups
            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.$ DescribeBackups
rq
          forall a b. a -> (a -> b) -> b
Prelude.& Lens' DescribeBackups (Maybe Text)
describeBackups_nextToken
          forall s t a b. ASetter s t a b -> b -> s -> t
Lens..~ AWSResponse DescribeBackups
rs
          forall s a. s -> Getting (First a) s a -> Maybe a
Lens.^? Lens' DescribeBackupsResponse (Maybe Text)
describeBackupsResponse_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 DescribeBackups where
  type
    AWSResponse DescribeBackups =
      DescribeBackupsResponse
  request :: (Service -> Service) -> DescribeBackups -> Request DescribeBackups
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 DescribeBackups
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse DescribeBackups)))
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 [Backup] -> Maybe Text -> Int -> DescribeBackupsResponse
DescribeBackupsResponse'
            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
"Backups" 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 DescribeBackups where
  hashWithSalt :: Int -> DescribeBackups -> Int
hashWithSalt Int
_salt DescribeBackups' {Maybe Natural
Maybe Text
serverName :: Maybe Text
nextToken :: Maybe Text
maxResults :: Maybe Natural
backupId :: Maybe Text
$sel:serverName:DescribeBackups' :: DescribeBackups -> Maybe Text
$sel:nextToken:DescribeBackups' :: DescribeBackups -> Maybe Text
$sel:maxResults:DescribeBackups' :: DescribeBackups -> Maybe Natural
$sel:backupId:DescribeBackups' :: DescribeBackups -> Maybe Text
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
backupId
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Natural
maxResults
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
nextToken
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
serverName

instance Prelude.NFData DescribeBackups where
  rnf :: DescribeBackups -> ()
rnf DescribeBackups' {Maybe Natural
Maybe Text
serverName :: Maybe Text
nextToken :: Maybe Text
maxResults :: Maybe Natural
backupId :: Maybe Text
$sel:serverName:DescribeBackups' :: DescribeBackups -> Maybe Text
$sel:nextToken:DescribeBackups' :: DescribeBackups -> Maybe Text
$sel:maxResults:DescribeBackups' :: DescribeBackups -> Maybe Natural
$sel:backupId:DescribeBackups' :: DescribeBackups -> Maybe Text
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
backupId
      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
      seq :: forall a b. a -> b -> b
`Prelude.seq` forall a. NFData a => a -> ()
Prelude.rnf Maybe Text
serverName

instance Data.ToHeaders DescribeBackups where
  toHeaders :: DescribeBackups -> 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
"OpsWorksCM_V2016_11_01.DescribeBackups" ::
                          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 DescribeBackups where
  toJSON :: DescribeBackups -> Value
toJSON DescribeBackups' {Maybe Natural
Maybe Text
serverName :: Maybe Text
nextToken :: Maybe Text
maxResults :: Maybe Natural
backupId :: Maybe Text
$sel:serverName:DescribeBackups' :: DescribeBackups -> Maybe Text
$sel:nextToken:DescribeBackups' :: DescribeBackups -> Maybe Text
$sel:maxResults:DescribeBackups' :: DescribeBackups -> Maybe Natural
$sel:backupId:DescribeBackups' :: DescribeBackups -> Maybe Text
..} =
    [Pair] -> Value
Data.object
      ( forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ (Key
"BackupId" 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
backupId,
            (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,
            (Key
"ServerName" 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
serverName
          ]
      )

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

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

-- | /See:/ 'newDescribeBackupsResponse' smart constructor.
data DescribeBackupsResponse = DescribeBackupsResponse'
  { -- | Contains the response to a @DescribeBackups@ request.
    DescribeBackupsResponse -> Maybe [Backup]
backups :: Prelude.Maybe [Backup],
    -- | This is not currently implemented for @DescribeBackups@ requests.
    DescribeBackupsResponse -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text,
    -- | The response's http status code.
    DescribeBackupsResponse -> Int
httpStatus :: Prelude.Int
  }
  deriving (DescribeBackupsResponse -> DescribeBackupsResponse -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: DescribeBackupsResponse -> DescribeBackupsResponse -> Bool
$c/= :: DescribeBackupsResponse -> DescribeBackupsResponse -> Bool
== :: DescribeBackupsResponse -> DescribeBackupsResponse -> Bool
$c== :: DescribeBackupsResponse -> DescribeBackupsResponse -> Bool
Prelude.Eq, ReadPrec [DescribeBackupsResponse]
ReadPrec DescribeBackupsResponse
Int -> ReadS DescribeBackupsResponse
ReadS [DescribeBackupsResponse]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [DescribeBackupsResponse]
$creadListPrec :: ReadPrec [DescribeBackupsResponse]
readPrec :: ReadPrec DescribeBackupsResponse
$creadPrec :: ReadPrec DescribeBackupsResponse
readList :: ReadS [DescribeBackupsResponse]
$creadList :: ReadS [DescribeBackupsResponse]
readsPrec :: Int -> ReadS DescribeBackupsResponse
$creadsPrec :: Int -> ReadS DescribeBackupsResponse
Prelude.Read, Int -> DescribeBackupsResponse -> ShowS
[DescribeBackupsResponse] -> ShowS
DescribeBackupsResponse -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [DescribeBackupsResponse] -> ShowS
$cshowList :: [DescribeBackupsResponse] -> ShowS
show :: DescribeBackupsResponse -> String
$cshow :: DescribeBackupsResponse -> String
showsPrec :: Int -> DescribeBackupsResponse -> ShowS
$cshowsPrec :: Int -> DescribeBackupsResponse -> ShowS
Prelude.Show, forall x. Rep DescribeBackupsResponse x -> DescribeBackupsResponse
forall x. DescribeBackupsResponse -> Rep DescribeBackupsResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep DescribeBackupsResponse x -> DescribeBackupsResponse
$cfrom :: forall x. DescribeBackupsResponse -> Rep DescribeBackupsResponse x
Prelude.Generic)

-- |
-- Create a value of 'DescribeBackupsResponse' 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:
--
-- 'backups', 'describeBackupsResponse_backups' - Contains the response to a @DescribeBackups@ request.
--
-- 'nextToken', 'describeBackupsResponse_nextToken' - This is not currently implemented for @DescribeBackups@ requests.
--
-- 'httpStatus', 'describeBackupsResponse_httpStatus' - The response's http status code.
newDescribeBackupsResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  DescribeBackupsResponse
newDescribeBackupsResponse :: Int -> DescribeBackupsResponse
newDescribeBackupsResponse Int
pHttpStatus_ =
  DescribeBackupsResponse'
    { $sel:backups:DescribeBackupsResponse' :: Maybe [Backup]
backups = forall a. Maybe a
Prelude.Nothing,
      $sel:nextToken:DescribeBackupsResponse' :: Maybe Text
nextToken = forall a. Maybe a
Prelude.Nothing,
      $sel:httpStatus:DescribeBackupsResponse' :: Int
httpStatus = Int
pHttpStatus_
    }

-- | Contains the response to a @DescribeBackups@ request.
describeBackupsResponse_backups :: Lens.Lens' DescribeBackupsResponse (Prelude.Maybe [Backup])
describeBackupsResponse_backups :: Lens' DescribeBackupsResponse (Maybe [Backup])
describeBackupsResponse_backups = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DescribeBackupsResponse' {Maybe [Backup]
backups :: Maybe [Backup]
$sel:backups:DescribeBackupsResponse' :: DescribeBackupsResponse -> Maybe [Backup]
backups} -> Maybe [Backup]
backups) (\s :: DescribeBackupsResponse
s@DescribeBackupsResponse' {} Maybe [Backup]
a -> DescribeBackupsResponse
s {$sel:backups:DescribeBackupsResponse' :: Maybe [Backup]
backups = Maybe [Backup]
a} :: DescribeBackupsResponse) 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

-- | This is not currently implemented for @DescribeBackups@ requests.
describeBackupsResponse_nextToken :: Lens.Lens' DescribeBackupsResponse (Prelude.Maybe Prelude.Text)
describeBackupsResponse_nextToken :: Lens' DescribeBackupsResponse (Maybe Text)
describeBackupsResponse_nextToken = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\DescribeBackupsResponse' {Maybe Text
nextToken :: Maybe Text
$sel:nextToken:DescribeBackupsResponse' :: DescribeBackupsResponse -> Maybe Text
nextToken} -> Maybe Text
nextToken) (\s :: DescribeBackupsResponse
s@DescribeBackupsResponse' {} Maybe Text
a -> DescribeBackupsResponse
s {$sel:nextToken:DescribeBackupsResponse' :: Maybe Text
nextToken = Maybe Text
a} :: DescribeBackupsResponse)

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

instance Prelude.NFData DescribeBackupsResponse where
  rnf :: DescribeBackupsResponse -> ()
rnf DescribeBackupsResponse' {Int
Maybe [Backup]
Maybe Text
httpStatus :: Int
nextToken :: Maybe Text
backups :: Maybe [Backup]
$sel:httpStatus:DescribeBackupsResponse' :: DescribeBackupsResponse -> Int
$sel:nextToken:DescribeBackupsResponse' :: DescribeBackupsResponse -> Maybe Text
$sel:backups:DescribeBackupsResponse' :: DescribeBackupsResponse -> Maybe [Backup]
..} =
    forall a. NFData a => a -> ()
Prelude.rnf Maybe [Backup]
backups
      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