{-# 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.Proton.ListComponents
-- Copyright   : (c) 2013-2023 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- List components with summary data. You can filter the result list by
-- environment, service, or a single service instance.
--
-- For more information about components, see
-- <https://docs.aws.amazon.com/proton/latest/userguide/ag-components.html Proton components>
-- in the /Proton User Guide/.
--
-- This operation returns paginated results.
module Amazonka.Proton.ListComponents
  ( -- * Creating a Request
    ListComponents (..),
    newListComponents,

    -- * Request Lenses
    listComponents_environmentName,
    listComponents_maxResults,
    listComponents_nextToken,
    listComponents_serviceInstanceName,
    listComponents_serviceName,

    -- * Destructuring the Response
    ListComponentsResponse (..),
    newListComponentsResponse,

    -- * Response Lenses
    listComponentsResponse_nextToken,
    listComponentsResponse_httpStatus,
    listComponentsResponse_components,
  )
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 Amazonka.Proton.Types
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response

-- | /See:/ 'newListComponents' smart constructor.
data ListComponents = ListComponents'
  { -- | The name of an environment for result list filtering. Proton returns
    -- components associated with the environment or attached to service
    -- instances running in it.
    ListComponents -> Maybe Text
environmentName :: Prelude.Maybe Prelude.Text,
    -- | The maximum number of components to list.
    ListComponents -> Maybe Natural
maxResults :: Prelude.Maybe Prelude.Natural,
    -- | A token that indicates the location of the next component in the array
    -- of components, after the list of components that was previously
    -- requested.
    ListComponents -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text,
    -- | The name of a service instance for result list filtering. Proton returns
    -- the component attached to the service instance, if any.
    ListComponents -> Maybe Text
serviceInstanceName :: Prelude.Maybe Prelude.Text,
    -- | The name of a service for result list filtering. Proton returns
    -- components attached to service instances of the service.
    ListComponents -> Maybe Text
serviceName :: Prelude.Maybe Prelude.Text
  }
  deriving (ListComponents -> ListComponents -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListComponents -> ListComponents -> Bool
$c/= :: ListComponents -> ListComponents -> Bool
== :: ListComponents -> ListComponents -> Bool
$c== :: ListComponents -> ListComponents -> Bool
Prelude.Eq, ReadPrec [ListComponents]
ReadPrec ListComponents
Int -> ReadS ListComponents
ReadS [ListComponents]
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ListComponents]
$creadListPrec :: ReadPrec [ListComponents]
readPrec :: ReadPrec ListComponents
$creadPrec :: ReadPrec ListComponents
readList :: ReadS [ListComponents]
$creadList :: ReadS [ListComponents]
readsPrec :: Int -> ReadS ListComponents
$creadsPrec :: Int -> ReadS ListComponents
Prelude.Read, Int -> ListComponents -> ShowS
[ListComponents] -> ShowS
ListComponents -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListComponents] -> ShowS
$cshowList :: [ListComponents] -> ShowS
show :: ListComponents -> String
$cshow :: ListComponents -> String
showsPrec :: Int -> ListComponents -> ShowS
$cshowsPrec :: Int -> ListComponents -> ShowS
Prelude.Show, forall x. Rep ListComponents x -> ListComponents
forall x. ListComponents -> Rep ListComponents x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ListComponents x -> ListComponents
$cfrom :: forall x. ListComponents -> Rep ListComponents x
Prelude.Generic)

-- |
-- Create a value of 'ListComponents' 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:
--
-- 'environmentName', 'listComponents_environmentName' - The name of an environment for result list filtering. Proton returns
-- components associated with the environment or attached to service
-- instances running in it.
--
-- 'maxResults', 'listComponents_maxResults' - The maximum number of components to list.
--
-- 'nextToken', 'listComponents_nextToken' - A token that indicates the location of the next component in the array
-- of components, after the list of components that was previously
-- requested.
--
-- 'serviceInstanceName', 'listComponents_serviceInstanceName' - The name of a service instance for result list filtering. Proton returns
-- the component attached to the service instance, if any.
--
-- 'serviceName', 'listComponents_serviceName' - The name of a service for result list filtering. Proton returns
-- components attached to service instances of the service.
newListComponents ::
  ListComponents
newListComponents :: ListComponents
newListComponents =
  ListComponents'
    { $sel:environmentName:ListComponents' :: Maybe Text
environmentName = forall a. Maybe a
Prelude.Nothing,
      $sel:maxResults:ListComponents' :: Maybe Natural
maxResults = forall a. Maybe a
Prelude.Nothing,
      $sel:nextToken:ListComponents' :: Maybe Text
nextToken = forall a. Maybe a
Prelude.Nothing,
      $sel:serviceInstanceName:ListComponents' :: Maybe Text
serviceInstanceName = forall a. Maybe a
Prelude.Nothing,
      $sel:serviceName:ListComponents' :: Maybe Text
serviceName = forall a. Maybe a
Prelude.Nothing
    }

-- | The name of an environment for result list filtering. Proton returns
-- components associated with the environment or attached to service
-- instances running in it.
listComponents_environmentName :: Lens.Lens' ListComponents (Prelude.Maybe Prelude.Text)
listComponents_environmentName :: Lens' ListComponents (Maybe Text)
listComponents_environmentName = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListComponents' {Maybe Text
environmentName :: Maybe Text
$sel:environmentName:ListComponents' :: ListComponents -> Maybe Text
environmentName} -> Maybe Text
environmentName) (\s :: ListComponents
s@ListComponents' {} Maybe Text
a -> ListComponents
s {$sel:environmentName:ListComponents' :: Maybe Text
environmentName = Maybe Text
a} :: ListComponents)

-- | The maximum number of components to list.
listComponents_maxResults :: Lens.Lens' ListComponents (Prelude.Maybe Prelude.Natural)
listComponents_maxResults :: Lens' ListComponents (Maybe Natural)
listComponents_maxResults = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListComponents' {Maybe Natural
maxResults :: Maybe Natural
$sel:maxResults:ListComponents' :: ListComponents -> Maybe Natural
maxResults} -> Maybe Natural
maxResults) (\s :: ListComponents
s@ListComponents' {} Maybe Natural
a -> ListComponents
s {$sel:maxResults:ListComponents' :: Maybe Natural
maxResults = Maybe Natural
a} :: ListComponents)

-- | A token that indicates the location of the next component in the array
-- of components, after the list of components that was previously
-- requested.
listComponents_nextToken :: Lens.Lens' ListComponents (Prelude.Maybe Prelude.Text)
listComponents_nextToken :: Lens' ListComponents (Maybe Text)
listComponents_nextToken = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListComponents' {Maybe Text
nextToken :: Maybe Text
$sel:nextToken:ListComponents' :: ListComponents -> Maybe Text
nextToken} -> Maybe Text
nextToken) (\s :: ListComponents
s@ListComponents' {} Maybe Text
a -> ListComponents
s {$sel:nextToken:ListComponents' :: Maybe Text
nextToken = Maybe Text
a} :: ListComponents)

-- | The name of a service instance for result list filtering. Proton returns
-- the component attached to the service instance, if any.
listComponents_serviceInstanceName :: Lens.Lens' ListComponents (Prelude.Maybe Prelude.Text)
listComponents_serviceInstanceName :: Lens' ListComponents (Maybe Text)
listComponents_serviceInstanceName = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListComponents' {Maybe Text
serviceInstanceName :: Maybe Text
$sel:serviceInstanceName:ListComponents' :: ListComponents -> Maybe Text
serviceInstanceName} -> Maybe Text
serviceInstanceName) (\s :: ListComponents
s@ListComponents' {} Maybe Text
a -> ListComponents
s {$sel:serviceInstanceName:ListComponents' :: Maybe Text
serviceInstanceName = Maybe Text
a} :: ListComponents)

-- | The name of a service for result list filtering. Proton returns
-- components attached to service instances of the service.
listComponents_serviceName :: Lens.Lens' ListComponents (Prelude.Maybe Prelude.Text)
listComponents_serviceName :: Lens' ListComponents (Maybe Text)
listComponents_serviceName = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListComponents' {Maybe Text
serviceName :: Maybe Text
$sel:serviceName:ListComponents' :: ListComponents -> Maybe Text
serviceName} -> Maybe Text
serviceName) (\s :: ListComponents
s@ListComponents' {} Maybe Text
a -> ListComponents
s {$sel:serviceName:ListComponents' :: Maybe Text
serviceName = Maybe Text
a} :: ListComponents)

instance Core.AWSPager ListComponents where
  page :: ListComponents
-> AWSResponse ListComponents -> Maybe ListComponents
page ListComponents
rq AWSResponse ListComponents
rs
    | forall a. AWSTruncated a => a -> Bool
Core.stop
        ( AWSResponse ListComponents
rs
            forall s a. s -> Getting (First a) s a -> Maybe a
Lens.^? Lens' ListComponentsResponse (Maybe Text)
listComponentsResponse_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 ListComponents
rs forall s a. s -> Getting a s a -> a
Lens.^. Lens' ListComponentsResponse [ComponentSummary]
listComponentsResponse_components) =
        forall a. Maybe a
Prelude.Nothing
    | Bool
Prelude.otherwise =
        forall a. a -> Maybe a
Prelude.Just
          forall a b. (a -> b) -> a -> b
Prelude.$ ListComponents
rq
          forall a b. a -> (a -> b) -> b
Prelude.& Lens' ListComponents (Maybe Text)
listComponents_nextToken
          forall s t a b. ASetter s t a b -> b -> s -> t
Lens..~ AWSResponse ListComponents
rs
          forall s a. s -> Getting (First a) s a -> Maybe a
Lens.^? Lens' ListComponentsResponse (Maybe Text)
listComponentsResponse_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 ListComponents where
  type
    AWSResponse ListComponents =
      ListComponentsResponse
  request :: (Service -> Service) -> ListComponents -> Request ListComponents
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 ListComponents
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse ListComponents)))
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 -> Int -> [ComponentSummary] -> ListComponentsResponse
ListComponentsResponse'
            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.<*> (forall (f :: * -> *) a. Applicative f => a -> f a
Prelude.pure (forall a. Enum a => a -> Int
Prelude.fromEnum Int
s))
            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
"components" forall (f :: * -> *) a. Functor f => f (Maybe a) -> a -> f a
Core..!@ forall a. Monoid a => a
Prelude.mempty)
      )

instance Prelude.Hashable ListComponents where
  hashWithSalt :: Int -> ListComponents -> Int
hashWithSalt Int
_salt ListComponents' {Maybe Natural
Maybe Text
serviceName :: Maybe Text
serviceInstanceName :: Maybe Text
nextToken :: Maybe Text
maxResults :: Maybe Natural
environmentName :: Maybe Text
$sel:serviceName:ListComponents' :: ListComponents -> Maybe Text
$sel:serviceInstanceName:ListComponents' :: ListComponents -> Maybe Text
$sel:nextToken:ListComponents' :: ListComponents -> Maybe Text
$sel:maxResults:ListComponents' :: ListComponents -> Maybe Natural
$sel:environmentName:ListComponents' :: ListComponents -> Maybe Text
..} =
    Int
_salt
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
environmentName
      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
serviceInstanceName
      forall a. Hashable a => Int -> a -> Int
`Prelude.hashWithSalt` Maybe Text
serviceName

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

instance Data.ToHeaders ListComponents where
  toHeaders :: ListComponents -> 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
"AwsProton20200720.ListComponents" ::
                          Prelude.ByteString
                      ),
            HeaderName
"Content-Type"
              forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Data.=# ( ByteString
"application/x-amz-json-1.0" ::
                          Prelude.ByteString
                      )
          ]
      )

instance Data.ToJSON ListComponents where
  toJSON :: ListComponents -> Value
toJSON ListComponents' {Maybe Natural
Maybe Text
serviceName :: Maybe Text
serviceInstanceName :: Maybe Text
nextToken :: Maybe Text
maxResults :: Maybe Natural
environmentName :: Maybe Text
$sel:serviceName:ListComponents' :: ListComponents -> Maybe Text
$sel:serviceInstanceName:ListComponents' :: ListComponents -> Maybe Text
$sel:nextToken:ListComponents' :: ListComponents -> Maybe Text
$sel:maxResults:ListComponents' :: ListComponents -> Maybe Natural
$sel:environmentName:ListComponents' :: ListComponents -> Maybe Text
..} =
    [Pair] -> Value
Data.object
      ( forall a. [Maybe a] -> [a]
Prelude.catMaybes
          [ (Key
"environmentName" 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
environmentName,
            (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
"serviceInstanceName" 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
serviceInstanceName,
            (Key
"serviceName" 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
serviceName
          ]
      )

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

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

-- | /See:/ 'newListComponentsResponse' smart constructor.
data ListComponentsResponse = ListComponentsResponse'
  { -- | A token that indicates the location of the next component in the array
    -- of components, after the current requested list of components.
    ListComponentsResponse -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text,
    -- | The response's http status code.
    ListComponentsResponse -> Int
httpStatus :: Prelude.Int,
    -- | An array of components with summary data.
    ListComponentsResponse -> [ComponentSummary]
components :: [ComponentSummary]
  }
  deriving (ListComponentsResponse -> ListComponentsResponse -> Bool
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListComponentsResponse -> ListComponentsResponse -> Bool
$c/= :: ListComponentsResponse -> ListComponentsResponse -> Bool
== :: ListComponentsResponse -> ListComponentsResponse -> Bool
$c== :: ListComponentsResponse -> ListComponentsResponse -> Bool
Prelude.Eq, Int -> ListComponentsResponse -> ShowS
[ListComponentsResponse] -> ShowS
ListComponentsResponse -> String
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListComponentsResponse] -> ShowS
$cshowList :: [ListComponentsResponse] -> ShowS
show :: ListComponentsResponse -> String
$cshow :: ListComponentsResponse -> String
showsPrec :: Int -> ListComponentsResponse -> ShowS
$cshowsPrec :: Int -> ListComponentsResponse -> ShowS
Prelude.Show, forall x. Rep ListComponentsResponse x -> ListComponentsResponse
forall x. ListComponentsResponse -> Rep ListComponentsResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ListComponentsResponse x -> ListComponentsResponse
$cfrom :: forall x. ListComponentsResponse -> Rep ListComponentsResponse x
Prelude.Generic)

-- |
-- Create a value of 'ListComponentsResponse' 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', 'listComponentsResponse_nextToken' - A token that indicates the location of the next component in the array
-- of components, after the current requested list of components.
--
-- 'httpStatus', 'listComponentsResponse_httpStatus' - The response's http status code.
--
-- 'components', 'listComponentsResponse_components' - An array of components with summary data.
newListComponentsResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  ListComponentsResponse
newListComponentsResponse :: Int -> ListComponentsResponse
newListComponentsResponse Int
pHttpStatus_ =
  ListComponentsResponse'
    { $sel:nextToken:ListComponentsResponse' :: Maybe Text
nextToken =
        forall a. Maybe a
Prelude.Nothing,
      $sel:httpStatus:ListComponentsResponse' :: Int
httpStatus = Int
pHttpStatus_,
      $sel:components:ListComponentsResponse' :: [ComponentSummary]
components = forall a. Monoid a => a
Prelude.mempty
    }

-- | A token that indicates the location of the next component in the array
-- of components, after the current requested list of components.
listComponentsResponse_nextToken :: Lens.Lens' ListComponentsResponse (Prelude.Maybe Prelude.Text)
listComponentsResponse_nextToken :: Lens' ListComponentsResponse (Maybe Text)
listComponentsResponse_nextToken = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListComponentsResponse' {Maybe Text
nextToken :: Maybe Text
$sel:nextToken:ListComponentsResponse' :: ListComponentsResponse -> Maybe Text
nextToken} -> Maybe Text
nextToken) (\s :: ListComponentsResponse
s@ListComponentsResponse' {} Maybe Text
a -> ListComponentsResponse
s {$sel:nextToken:ListComponentsResponse' :: Maybe Text
nextToken = Maybe Text
a} :: ListComponentsResponse)

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

-- | An array of components with summary data.
listComponentsResponse_components :: Lens.Lens' ListComponentsResponse [ComponentSummary]
listComponentsResponse_components :: Lens' ListComponentsResponse [ComponentSummary]
listComponentsResponse_components = forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListComponentsResponse' {[ComponentSummary]
components :: [ComponentSummary]
$sel:components:ListComponentsResponse' :: ListComponentsResponse -> [ComponentSummary]
components} -> [ComponentSummary]
components) (\s :: ListComponentsResponse
s@ListComponentsResponse' {} [ComponentSummary]
a -> ListComponentsResponse
s {$sel:components:ListComponentsResponse' :: [ComponentSummary]
components = [ComponentSummary]
a} :: ListComponentsResponse) forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced

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