amazonka-cognito-idp-2.0: gen/Amazonka/CognitoIdentityProvider/AdminListDevices.hs
{-# 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.CognitoIdentityProvider.AdminListDevices
-- Copyright : (c) 2013-2023 Brendan Hay
-- License : Mozilla Public License, v. 2.0.
-- Maintainer : Brendan Hay
-- Stability : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Lists devices, as an administrator.
--
-- Calling this action requires developer credentials.
module Amazonka.CognitoIdentityProvider.AdminListDevices
( -- * Creating a Request
AdminListDevices (..),
newAdminListDevices,
-- * Request Lenses
adminListDevices_limit,
adminListDevices_paginationToken,
adminListDevices_userPoolId,
adminListDevices_username,
-- * Destructuring the Response
AdminListDevicesResponse (..),
newAdminListDevicesResponse,
-- * Response Lenses
adminListDevicesResponse_devices,
adminListDevicesResponse_paginationToken,
adminListDevicesResponse_httpStatus,
)
where
import Amazonka.CognitoIdentityProvider.Types
import qualified Amazonka.Core as Core
import qualified Amazonka.Core.Lens.Internal as Lens
import qualified Amazonka.Data as Data
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
-- | Represents the request to list devices, as an administrator.
--
-- /See:/ 'newAdminListDevices' smart constructor.
data AdminListDevices = AdminListDevices'
{ -- | The limit of the devices request.
limit :: Prelude.Maybe Prelude.Natural,
-- | The pagination token.
paginationToken :: Prelude.Maybe Prelude.Text,
-- | The user pool ID.
userPoolId :: Prelude.Text,
-- | The user name.
username :: Data.Sensitive Prelude.Text
}
deriving (Prelude.Eq, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'AdminListDevices' 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:
--
-- 'limit', 'adminListDevices_limit' - The limit of the devices request.
--
-- 'paginationToken', 'adminListDevices_paginationToken' - The pagination token.
--
-- 'userPoolId', 'adminListDevices_userPoolId' - The user pool ID.
--
-- 'username', 'adminListDevices_username' - The user name.
newAdminListDevices ::
-- | 'userPoolId'
Prelude.Text ->
-- | 'username'
Prelude.Text ->
AdminListDevices
newAdminListDevices pUserPoolId_ pUsername_ =
AdminListDevices'
{ limit = Prelude.Nothing,
paginationToken = Prelude.Nothing,
userPoolId = pUserPoolId_,
username = Data._Sensitive Lens.# pUsername_
}
-- | The limit of the devices request.
adminListDevices_limit :: Lens.Lens' AdminListDevices (Prelude.Maybe Prelude.Natural)
adminListDevices_limit = Lens.lens (\AdminListDevices' {limit} -> limit) (\s@AdminListDevices' {} a -> s {limit = a} :: AdminListDevices)
-- | The pagination token.
adminListDevices_paginationToken :: Lens.Lens' AdminListDevices (Prelude.Maybe Prelude.Text)
adminListDevices_paginationToken = Lens.lens (\AdminListDevices' {paginationToken} -> paginationToken) (\s@AdminListDevices' {} a -> s {paginationToken = a} :: AdminListDevices)
-- | The user pool ID.
adminListDevices_userPoolId :: Lens.Lens' AdminListDevices Prelude.Text
adminListDevices_userPoolId = Lens.lens (\AdminListDevices' {userPoolId} -> userPoolId) (\s@AdminListDevices' {} a -> s {userPoolId = a} :: AdminListDevices)
-- | The user name.
adminListDevices_username :: Lens.Lens' AdminListDevices Prelude.Text
adminListDevices_username = Lens.lens (\AdminListDevices' {username} -> username) (\s@AdminListDevices' {} a -> s {username = a} :: AdminListDevices) Prelude.. Data._Sensitive
instance Core.AWSRequest AdminListDevices where
type
AWSResponse AdminListDevices =
AdminListDevicesResponse
request overrides =
Request.postJSON (overrides defaultService)
response =
Response.receiveJSON
( \s h x ->
AdminListDevicesResponse'
Prelude.<$> (x Data..?> "Devices" Core..!@ Prelude.mempty)
Prelude.<*> (x Data..?> "PaginationToken")
Prelude.<*> (Prelude.pure (Prelude.fromEnum s))
)
instance Prelude.Hashable AdminListDevices where
hashWithSalt _salt AdminListDevices' {..} =
_salt
`Prelude.hashWithSalt` limit
`Prelude.hashWithSalt` paginationToken
`Prelude.hashWithSalt` userPoolId
`Prelude.hashWithSalt` username
instance Prelude.NFData AdminListDevices where
rnf AdminListDevices' {..} =
Prelude.rnf limit
`Prelude.seq` Prelude.rnf paginationToken
`Prelude.seq` Prelude.rnf userPoolId
`Prelude.seq` Prelude.rnf username
instance Data.ToHeaders AdminListDevices where
toHeaders =
Prelude.const
( Prelude.mconcat
[ "X-Amz-Target"
Data.=# ( "AWSCognitoIdentityProviderService.AdminListDevices" ::
Prelude.ByteString
),
"Content-Type"
Data.=# ( "application/x-amz-json-1.1" ::
Prelude.ByteString
)
]
)
instance Data.ToJSON AdminListDevices where
toJSON AdminListDevices' {..} =
Data.object
( Prelude.catMaybes
[ ("Limit" Data..=) Prelude.<$> limit,
("PaginationToken" Data..=)
Prelude.<$> paginationToken,
Prelude.Just ("UserPoolId" Data..= userPoolId),
Prelude.Just ("Username" Data..= username)
]
)
instance Data.ToPath AdminListDevices where
toPath = Prelude.const "/"
instance Data.ToQuery AdminListDevices where
toQuery = Prelude.const Prelude.mempty
-- | Lists the device\'s response, as an administrator.
--
-- /See:/ 'newAdminListDevicesResponse' smart constructor.
data AdminListDevicesResponse = AdminListDevicesResponse'
{ -- | The devices in the list of devices response.
devices :: Prelude.Maybe [DeviceType],
-- | The pagination token.
paginationToken :: Prelude.Maybe Prelude.Text,
-- | The response's http status code.
httpStatus :: Prelude.Int
}
deriving (Prelude.Eq, Prelude.Show, Prelude.Generic)
-- |
-- Create a value of 'AdminListDevicesResponse' 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:
--
-- 'devices', 'adminListDevicesResponse_devices' - The devices in the list of devices response.
--
-- 'paginationToken', 'adminListDevicesResponse_paginationToken' - The pagination token.
--
-- 'httpStatus', 'adminListDevicesResponse_httpStatus' - The response's http status code.
newAdminListDevicesResponse ::
-- | 'httpStatus'
Prelude.Int ->
AdminListDevicesResponse
newAdminListDevicesResponse pHttpStatus_ =
AdminListDevicesResponse'
{ devices =
Prelude.Nothing,
paginationToken = Prelude.Nothing,
httpStatus = pHttpStatus_
}
-- | The devices in the list of devices response.
adminListDevicesResponse_devices :: Lens.Lens' AdminListDevicesResponse (Prelude.Maybe [DeviceType])
adminListDevicesResponse_devices = Lens.lens (\AdminListDevicesResponse' {devices} -> devices) (\s@AdminListDevicesResponse' {} a -> s {devices = a} :: AdminListDevicesResponse) Prelude.. Lens.mapping Lens.coerced
-- | The pagination token.
adminListDevicesResponse_paginationToken :: Lens.Lens' AdminListDevicesResponse (Prelude.Maybe Prelude.Text)
adminListDevicesResponse_paginationToken = Lens.lens (\AdminListDevicesResponse' {paginationToken} -> paginationToken) (\s@AdminListDevicesResponse' {} a -> s {paginationToken = a} :: AdminListDevicesResponse)
-- | The response's http status code.
adminListDevicesResponse_httpStatus :: Lens.Lens' AdminListDevicesResponse Prelude.Int
adminListDevicesResponse_httpStatus = Lens.lens (\AdminListDevicesResponse' {httpStatus} -> httpStatus) (\s@AdminListDevicesResponse' {} a -> s {httpStatus = a} :: AdminListDevicesResponse)
instance Prelude.NFData AdminListDevicesResponse where
rnf AdminListDevicesResponse' {..} =
Prelude.rnf devices
`Prelude.seq` Prelude.rnf paginationToken
`Prelude.seq` Prelude.rnf httpStatus