{-# 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 #-}
module Amazonka.IoTSiteWise.ListDashboards
(
ListDashboards (..),
newListDashboards,
listDashboards_nextToken,
listDashboards_maxResults,
listDashboards_projectId,
ListDashboardsResponse (..),
newListDashboardsResponse,
listDashboardsResponse_nextToken,
listDashboardsResponse_httpStatus,
listDashboardsResponse_dashboardSummaries,
)
where
import qualified Amazonka.Core as Core
import Amazonka.IoTSiteWise.Types
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
data ListDashboards = ListDashboards'
{
ListDashboards -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text,
ListDashboards -> Maybe Natural
maxResults :: Prelude.Maybe Prelude.Natural,
ListDashboards -> Text
projectId :: Prelude.Text
}
deriving (ListDashboards -> ListDashboards -> Bool
(ListDashboards -> ListDashboards -> Bool)
-> (ListDashboards -> ListDashboards -> Bool) -> Eq ListDashboards
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListDashboards -> ListDashboards -> Bool
$c/= :: ListDashboards -> ListDashboards -> Bool
== :: ListDashboards -> ListDashboards -> Bool
$c== :: ListDashboards -> ListDashboards -> Bool
Prelude.Eq, ReadPrec [ListDashboards]
ReadPrec ListDashboards
Int -> ReadS ListDashboards
ReadS [ListDashboards]
(Int -> ReadS ListDashboards)
-> ReadS [ListDashboards]
-> ReadPrec ListDashboards
-> ReadPrec [ListDashboards]
-> Read ListDashboards
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ListDashboards]
$creadListPrec :: ReadPrec [ListDashboards]
readPrec :: ReadPrec ListDashboards
$creadPrec :: ReadPrec ListDashboards
readList :: ReadS [ListDashboards]
$creadList :: ReadS [ListDashboards]
readsPrec :: Int -> ReadS ListDashboards
$creadsPrec :: Int -> ReadS ListDashboards
Prelude.Read, Int -> ListDashboards -> ShowS
[ListDashboards] -> ShowS
ListDashboards -> String
(Int -> ListDashboards -> ShowS)
-> (ListDashboards -> String)
-> ([ListDashboards] -> ShowS)
-> Show ListDashboards
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListDashboards] -> ShowS
$cshowList :: [ListDashboards] -> ShowS
show :: ListDashboards -> String
$cshow :: ListDashboards -> String
showsPrec :: Int -> ListDashboards -> ShowS
$cshowsPrec :: Int -> ListDashboards -> ShowS
Prelude.Show, (forall x. ListDashboards -> Rep ListDashboards x)
-> (forall x. Rep ListDashboards x -> ListDashboards)
-> Generic ListDashboards
forall x. Rep ListDashboards x -> ListDashboards
forall x. ListDashboards -> Rep ListDashboards x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ListDashboards x -> ListDashboards
$cfrom :: forall x. ListDashboards -> Rep ListDashboards x
Prelude.Generic)
newListDashboards ::
Prelude.Text ->
ListDashboards
newListDashboards :: Text -> ListDashboards
newListDashboards Text
pProjectId_ =
ListDashboards' :: Maybe Text -> Maybe Natural -> Text -> ListDashboards
ListDashboards'
{ $sel:nextToken:ListDashboards' :: Maybe Text
nextToken = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:maxResults:ListDashboards' :: Maybe Natural
maxResults = Maybe Natural
forall a. Maybe a
Prelude.Nothing,
$sel:projectId:ListDashboards' :: Text
projectId = Text
pProjectId_
}
listDashboards_nextToken :: Lens.Lens' ListDashboards (Prelude.Maybe Prelude.Text)
listDashboards_nextToken :: (Maybe Text -> f (Maybe Text))
-> ListDashboards -> f ListDashboards
listDashboards_nextToken = (ListDashboards -> Maybe Text)
-> (ListDashboards -> Maybe Text -> ListDashboards)
-> Lens ListDashboards ListDashboards (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListDashboards' {Maybe Text
nextToken :: Maybe Text
$sel:nextToken:ListDashboards' :: ListDashboards -> Maybe Text
nextToken} -> Maybe Text
nextToken) (\s :: ListDashboards
s@ListDashboards' {} Maybe Text
a -> ListDashboards
s {$sel:nextToken:ListDashboards' :: Maybe Text
nextToken = Maybe Text
a} :: ListDashboards)
listDashboards_maxResults :: Lens.Lens' ListDashboards (Prelude.Maybe Prelude.Natural)
listDashboards_maxResults :: (Maybe Natural -> f (Maybe Natural))
-> ListDashboards -> f ListDashboards
listDashboards_maxResults = (ListDashboards -> Maybe Natural)
-> (ListDashboards -> Maybe Natural -> ListDashboards)
-> Lens
ListDashboards ListDashboards (Maybe Natural) (Maybe Natural)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListDashboards' {Maybe Natural
maxResults :: Maybe Natural
$sel:maxResults:ListDashboards' :: ListDashboards -> Maybe Natural
maxResults} -> Maybe Natural
maxResults) (\s :: ListDashboards
s@ListDashboards' {} Maybe Natural
a -> ListDashboards
s {$sel:maxResults:ListDashboards' :: Maybe Natural
maxResults = Maybe Natural
a} :: ListDashboards)
listDashboards_projectId :: Lens.Lens' ListDashboards Prelude.Text
listDashboards_projectId :: (Text -> f Text) -> ListDashboards -> f ListDashboards
listDashboards_projectId = (ListDashboards -> Text)
-> (ListDashboards -> Text -> ListDashboards)
-> Lens ListDashboards ListDashboards Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListDashboards' {Text
projectId :: Text
$sel:projectId:ListDashboards' :: ListDashboards -> Text
projectId} -> Text
projectId) (\s :: ListDashboards
s@ListDashboards' {} Text
a -> ListDashboards
s {$sel:projectId:ListDashboards' :: Text
projectId = Text
a} :: ListDashboards)
instance Core.AWSPager ListDashboards where
page :: ListDashboards
-> AWSResponse ListDashboards -> Maybe ListDashboards
page ListDashboards
rq AWSResponse ListDashboards
rs
| Maybe Text -> Bool
forall a. AWSTruncated a => a -> Bool
Core.stop
( AWSResponse ListDashboards
ListDashboardsResponse
rs
ListDashboardsResponse
-> Getting (First Text) ListDashboardsResponse Text -> Maybe Text
forall s a. s -> Getting (First a) s a -> Maybe a
Lens.^? (Maybe Text -> Const (First Text) (Maybe Text))
-> ListDashboardsResponse
-> Const (First Text) ListDashboardsResponse
Lens' ListDashboardsResponse (Maybe Text)
listDashboardsResponse_nextToken
((Maybe Text -> Const (First Text) (Maybe Text))
-> ListDashboardsResponse
-> Const (First Text) ListDashboardsResponse)
-> ((Text -> Const (First Text) Text)
-> Maybe Text -> Const (First Text) (Maybe Text))
-> Getting (First Text) ListDashboardsResponse 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 ListDashboards
forall a. Maybe a
Prelude.Nothing
| [DashboardSummary] -> Bool
forall a. AWSTruncated a => a -> Bool
Core.stop
( AWSResponse ListDashboards
ListDashboardsResponse
rs
ListDashboardsResponse
-> Getting
[DashboardSummary] ListDashboardsResponse [DashboardSummary]
-> [DashboardSummary]
forall s a. s -> Getting a s a -> a
Lens.^. Getting
[DashboardSummary] ListDashboardsResponse [DashboardSummary]
Lens' ListDashboardsResponse [DashboardSummary]
listDashboardsResponse_dashboardSummaries
) =
Maybe ListDashboards
forall a. Maybe a
Prelude.Nothing
| Bool
Prelude.otherwise =
ListDashboards -> Maybe ListDashboards
forall a. a -> Maybe a
Prelude.Just (ListDashboards -> Maybe ListDashboards)
-> ListDashboards -> Maybe ListDashboards
forall a b. (a -> b) -> a -> b
Prelude.$
ListDashboards
rq
ListDashboards
-> (ListDashboards -> ListDashboards) -> ListDashboards
forall a b. a -> (a -> b) -> b
Prelude.& (Maybe Text -> Identity (Maybe Text))
-> ListDashboards -> Identity ListDashboards
Lens ListDashboards ListDashboards (Maybe Text) (Maybe Text)
listDashboards_nextToken
((Maybe Text -> Identity (Maybe Text))
-> ListDashboards -> Identity ListDashboards)
-> Maybe Text -> ListDashboards -> ListDashboards
forall s t a b. ASetter s t a b -> b -> s -> t
Lens..~ AWSResponse ListDashboards
ListDashboardsResponse
rs
ListDashboardsResponse
-> Getting (First Text) ListDashboardsResponse Text -> Maybe Text
forall s a. s -> Getting (First a) s a -> Maybe a
Lens.^? (Maybe Text -> Const (First Text) (Maybe Text))
-> ListDashboardsResponse
-> Const (First Text) ListDashboardsResponse
Lens' ListDashboardsResponse (Maybe Text)
listDashboardsResponse_nextToken ((Maybe Text -> Const (First Text) (Maybe Text))
-> ListDashboardsResponse
-> Const (First Text) ListDashboardsResponse)
-> ((Text -> Const (First Text) Text)
-> Maybe Text -> Const (First Text) (Maybe Text))
-> Getting (First Text) ListDashboardsResponse 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 ListDashboards where
type
AWSResponse ListDashboards =
ListDashboardsResponse
request :: ListDashboards -> Request ListDashboards
request = Service -> ListDashboards -> Request ListDashboards
forall a. ToRequest a => Service -> a -> Request a
Request.get Service
defaultService
response :: Logger
-> Service
-> Proxy ListDashboards
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse ListDashboards)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse ListDashboards))
-> Logger
-> Service
-> Proxy ListDashboards
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse ListDashboards)))
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 -> Int -> [DashboardSummary] -> ListDashboardsResponse
ListDashboardsResponse'
(Maybe Text -> Int -> [DashboardSummary] -> ListDashboardsResponse)
-> Either String (Maybe Text)
-> Either
String (Int -> [DashboardSummary] -> ListDashboardsResponse)
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 (Int -> [DashboardSummary] -> ListDashboardsResponse)
-> Either String Int
-> Either String ([DashboardSummary] -> ListDashboardsResponse)
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))
Either String ([DashboardSummary] -> ListDashboardsResponse)
-> Either String [DashboardSummary]
-> Either String ListDashboardsResponse
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> ( Object
x Object -> Text -> Either String (Maybe [DashboardSummary])
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"dashboardSummaries"
Either String (Maybe [DashboardSummary])
-> [DashboardSummary] -> Either String [DashboardSummary]
forall (f :: * -> *) a. Functor f => f (Maybe a) -> a -> f a
Core..!@ [DashboardSummary]
forall a. Monoid a => a
Prelude.mempty
)
)
instance Prelude.Hashable ListDashboards
instance Prelude.NFData ListDashboards
instance Core.ToHeaders ListDashboards where
toHeaders :: ListDashboards -> ResponseHeaders
toHeaders =
ResponseHeaders -> ListDashboards -> 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 ListDashboards where
toPath :: ListDashboards -> ByteString
toPath = ByteString -> ListDashboards -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/dashboards"
instance Core.ToQuery ListDashboards where
toQuery :: ListDashboards -> QueryString
toQuery ListDashboards' {Maybe Natural
Maybe Text
Text
projectId :: Text
maxResults :: Maybe Natural
nextToken :: Maybe Text
$sel:projectId:ListDashboards' :: ListDashboards -> Text
$sel:maxResults:ListDashboards' :: ListDashboards -> Maybe Natural
$sel:nextToken:ListDashboards' :: ListDashboards -> 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,
ByteString
"projectId" ByteString -> Text -> QueryString
forall a. ToQuery a => ByteString -> a -> QueryString
Core.=: Text
projectId
]
data ListDashboardsResponse = ListDashboardsResponse'
{
ListDashboardsResponse -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text,
ListDashboardsResponse -> Int
httpStatus :: Prelude.Int,
ListDashboardsResponse -> [DashboardSummary]
dashboardSummaries :: [DashboardSummary]
}
deriving (ListDashboardsResponse -> ListDashboardsResponse -> Bool
(ListDashboardsResponse -> ListDashboardsResponse -> Bool)
-> (ListDashboardsResponse -> ListDashboardsResponse -> Bool)
-> Eq ListDashboardsResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListDashboardsResponse -> ListDashboardsResponse -> Bool
$c/= :: ListDashboardsResponse -> ListDashboardsResponse -> Bool
== :: ListDashboardsResponse -> ListDashboardsResponse -> Bool
$c== :: ListDashboardsResponse -> ListDashboardsResponse -> Bool
Prelude.Eq, ReadPrec [ListDashboardsResponse]
ReadPrec ListDashboardsResponse
Int -> ReadS ListDashboardsResponse
ReadS [ListDashboardsResponse]
(Int -> ReadS ListDashboardsResponse)
-> ReadS [ListDashboardsResponse]
-> ReadPrec ListDashboardsResponse
-> ReadPrec [ListDashboardsResponse]
-> Read ListDashboardsResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ListDashboardsResponse]
$creadListPrec :: ReadPrec [ListDashboardsResponse]
readPrec :: ReadPrec ListDashboardsResponse
$creadPrec :: ReadPrec ListDashboardsResponse
readList :: ReadS [ListDashboardsResponse]
$creadList :: ReadS [ListDashboardsResponse]
readsPrec :: Int -> ReadS ListDashboardsResponse
$creadsPrec :: Int -> ReadS ListDashboardsResponse
Prelude.Read, Int -> ListDashboardsResponse -> ShowS
[ListDashboardsResponse] -> ShowS
ListDashboardsResponse -> String
(Int -> ListDashboardsResponse -> ShowS)
-> (ListDashboardsResponse -> String)
-> ([ListDashboardsResponse] -> ShowS)
-> Show ListDashboardsResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListDashboardsResponse] -> ShowS
$cshowList :: [ListDashboardsResponse] -> ShowS
show :: ListDashboardsResponse -> String
$cshow :: ListDashboardsResponse -> String
showsPrec :: Int -> ListDashboardsResponse -> ShowS
$cshowsPrec :: Int -> ListDashboardsResponse -> ShowS
Prelude.Show, (forall x. ListDashboardsResponse -> Rep ListDashboardsResponse x)
-> (forall x.
Rep ListDashboardsResponse x -> ListDashboardsResponse)
-> Generic ListDashboardsResponse
forall x. Rep ListDashboardsResponse x -> ListDashboardsResponse
forall x. ListDashboardsResponse -> Rep ListDashboardsResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ListDashboardsResponse x -> ListDashboardsResponse
$cfrom :: forall x. ListDashboardsResponse -> Rep ListDashboardsResponse x
Prelude.Generic)
newListDashboardsResponse ::
Prelude.Int ->
ListDashboardsResponse
newListDashboardsResponse :: Int -> ListDashboardsResponse
newListDashboardsResponse Int
pHttpStatus_ =
ListDashboardsResponse' :: Maybe Text -> Int -> [DashboardSummary] -> ListDashboardsResponse
ListDashboardsResponse'
{ $sel:nextToken:ListDashboardsResponse' :: Maybe Text
nextToken =
Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:ListDashboardsResponse' :: Int
httpStatus = Int
pHttpStatus_,
$sel:dashboardSummaries:ListDashboardsResponse' :: [DashboardSummary]
dashboardSummaries = [DashboardSummary]
forall a. Monoid a => a
Prelude.mempty
}
listDashboardsResponse_nextToken :: Lens.Lens' ListDashboardsResponse (Prelude.Maybe Prelude.Text)
listDashboardsResponse_nextToken :: (Maybe Text -> f (Maybe Text))
-> ListDashboardsResponse -> f ListDashboardsResponse
listDashboardsResponse_nextToken = (ListDashboardsResponse -> Maybe Text)
-> (ListDashboardsResponse -> Maybe Text -> ListDashboardsResponse)
-> Lens' ListDashboardsResponse (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListDashboardsResponse' {Maybe Text
nextToken :: Maybe Text
$sel:nextToken:ListDashboardsResponse' :: ListDashboardsResponse -> Maybe Text
nextToken} -> Maybe Text
nextToken) (\s :: ListDashboardsResponse
s@ListDashboardsResponse' {} Maybe Text
a -> ListDashboardsResponse
s {$sel:nextToken:ListDashboardsResponse' :: Maybe Text
nextToken = Maybe Text
a} :: ListDashboardsResponse)
listDashboardsResponse_httpStatus :: Lens.Lens' ListDashboardsResponse Prelude.Int
listDashboardsResponse_httpStatus :: (Int -> f Int)
-> ListDashboardsResponse -> f ListDashboardsResponse
listDashboardsResponse_httpStatus = (ListDashboardsResponse -> Int)
-> (ListDashboardsResponse -> Int -> ListDashboardsResponse)
-> Lens ListDashboardsResponse ListDashboardsResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListDashboardsResponse' {Int
httpStatus :: Int
$sel:httpStatus:ListDashboardsResponse' :: ListDashboardsResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: ListDashboardsResponse
s@ListDashboardsResponse' {} Int
a -> ListDashboardsResponse
s {$sel:httpStatus:ListDashboardsResponse' :: Int
httpStatus = Int
a} :: ListDashboardsResponse)
listDashboardsResponse_dashboardSummaries :: Lens.Lens' ListDashboardsResponse [DashboardSummary]
listDashboardsResponse_dashboardSummaries :: ([DashboardSummary] -> f [DashboardSummary])
-> ListDashboardsResponse -> f ListDashboardsResponse
listDashboardsResponse_dashboardSummaries = (ListDashboardsResponse -> [DashboardSummary])
-> (ListDashboardsResponse
-> [DashboardSummary] -> ListDashboardsResponse)
-> Lens' ListDashboardsResponse [DashboardSummary]
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListDashboardsResponse' {[DashboardSummary]
dashboardSummaries :: [DashboardSummary]
$sel:dashboardSummaries:ListDashboardsResponse' :: ListDashboardsResponse -> [DashboardSummary]
dashboardSummaries} -> [DashboardSummary]
dashboardSummaries) (\s :: ListDashboardsResponse
s@ListDashboardsResponse' {} [DashboardSummary]
a -> ListDashboardsResponse
s {$sel:dashboardSummaries:ListDashboardsResponse' :: [DashboardSummary]
dashboardSummaries = [DashboardSummary]
a} :: ListDashboardsResponse) (([DashboardSummary] -> f [DashboardSummary])
-> ListDashboardsResponse -> f ListDashboardsResponse)
-> (([DashboardSummary] -> f [DashboardSummary])
-> [DashboardSummary] -> f [DashboardSummary])
-> ([DashboardSummary] -> f [DashboardSummary])
-> ListDashboardsResponse
-> f ListDashboardsResponse
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. ([DashboardSummary] -> f [DashboardSummary])
-> [DashboardSummary] -> f [DashboardSummary]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced
instance Prelude.NFData ListDashboardsResponse