{-# 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.Kinesis.GetRecords
(
GetRecords (..),
newGetRecords,
getRecords_limit,
getRecords_shardIterator,
GetRecordsResponse (..),
newGetRecordsResponse,
getRecordsResponse_nextShardIterator,
getRecordsResponse_millisBehindLatest,
getRecordsResponse_childShards,
getRecordsResponse_httpStatus,
getRecordsResponse_records,
)
where
import qualified Amazonka.Core as Core
import Amazonka.Kinesis.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 GetRecords = GetRecords'
{
GetRecords -> Maybe Natural
limit :: Prelude.Maybe Prelude.Natural,
GetRecords -> Text
shardIterator :: Prelude.Text
}
deriving (GetRecords -> GetRecords -> Bool
(GetRecords -> GetRecords -> Bool)
-> (GetRecords -> GetRecords -> Bool) -> Eq GetRecords
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: GetRecords -> GetRecords -> Bool
$c/= :: GetRecords -> GetRecords -> Bool
== :: GetRecords -> GetRecords -> Bool
$c== :: GetRecords -> GetRecords -> Bool
Prelude.Eq, ReadPrec [GetRecords]
ReadPrec GetRecords
Int -> ReadS GetRecords
ReadS [GetRecords]
(Int -> ReadS GetRecords)
-> ReadS [GetRecords]
-> ReadPrec GetRecords
-> ReadPrec [GetRecords]
-> Read GetRecords
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [GetRecords]
$creadListPrec :: ReadPrec [GetRecords]
readPrec :: ReadPrec GetRecords
$creadPrec :: ReadPrec GetRecords
readList :: ReadS [GetRecords]
$creadList :: ReadS [GetRecords]
readsPrec :: Int -> ReadS GetRecords
$creadsPrec :: Int -> ReadS GetRecords
Prelude.Read, Int -> GetRecords -> ShowS
[GetRecords] -> ShowS
GetRecords -> String
(Int -> GetRecords -> ShowS)
-> (GetRecords -> String)
-> ([GetRecords] -> ShowS)
-> Show GetRecords
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [GetRecords] -> ShowS
$cshowList :: [GetRecords] -> ShowS
show :: GetRecords -> String
$cshow :: GetRecords -> String
showsPrec :: Int -> GetRecords -> ShowS
$cshowsPrec :: Int -> GetRecords -> ShowS
Prelude.Show, (forall x. GetRecords -> Rep GetRecords x)
-> (forall x. Rep GetRecords x -> GetRecords) -> Generic GetRecords
forall x. Rep GetRecords x -> GetRecords
forall x. GetRecords -> Rep GetRecords x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep GetRecords x -> GetRecords
$cfrom :: forall x. GetRecords -> Rep GetRecords x
Prelude.Generic)
newGetRecords ::
Prelude.Text ->
GetRecords
newGetRecords :: Text -> GetRecords
newGetRecords Text
pShardIterator_ =
GetRecords' :: Maybe Natural -> Text -> GetRecords
GetRecords'
{ $sel:limit:GetRecords' :: Maybe Natural
limit = Maybe Natural
forall a. Maybe a
Prelude.Nothing,
$sel:shardIterator:GetRecords' :: Text
shardIterator = Text
pShardIterator_
}
getRecords_limit :: Lens.Lens' GetRecords (Prelude.Maybe Prelude.Natural)
getRecords_limit :: (Maybe Natural -> f (Maybe Natural)) -> GetRecords -> f GetRecords
getRecords_limit = (GetRecords -> Maybe Natural)
-> (GetRecords -> Maybe Natural -> GetRecords)
-> Lens GetRecords GetRecords (Maybe Natural) (Maybe Natural)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetRecords' {Maybe Natural
limit :: Maybe Natural
$sel:limit:GetRecords' :: GetRecords -> Maybe Natural
limit} -> Maybe Natural
limit) (\s :: GetRecords
s@GetRecords' {} Maybe Natural
a -> GetRecords
s {$sel:limit:GetRecords' :: Maybe Natural
limit = Maybe Natural
a} :: GetRecords)
getRecords_shardIterator :: Lens.Lens' GetRecords Prelude.Text
getRecords_shardIterator :: (Text -> f Text) -> GetRecords -> f GetRecords
getRecords_shardIterator = (GetRecords -> Text)
-> (GetRecords -> Text -> GetRecords)
-> Lens GetRecords GetRecords Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetRecords' {Text
shardIterator :: Text
$sel:shardIterator:GetRecords' :: GetRecords -> Text
shardIterator} -> Text
shardIterator) (\s :: GetRecords
s@GetRecords' {} Text
a -> GetRecords
s {$sel:shardIterator:GetRecords' :: Text
shardIterator = Text
a} :: GetRecords)
instance Core.AWSRequest GetRecords where
type AWSResponse GetRecords = GetRecordsResponse
request :: GetRecords -> Request GetRecords
request = Service -> GetRecords -> Request GetRecords
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy GetRecords
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse GetRecords)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse GetRecords))
-> Logger
-> Service
-> Proxy GetRecords
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse GetRecords)))
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 Natural
-> Maybe [ChildShard]
-> Int
-> [Record]
-> GetRecordsResponse
GetRecordsResponse'
(Maybe Text
-> Maybe Natural
-> Maybe [ChildShard]
-> Int
-> [Record]
-> GetRecordsResponse)
-> Either String (Maybe Text)
-> Either
String
(Maybe Natural
-> Maybe [ChildShard] -> Int -> [Record] -> GetRecordsResponse)
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
"NextShardIterator")
Either
String
(Maybe Natural
-> Maybe [ChildShard] -> Int -> [Record] -> GetRecordsResponse)
-> Either String (Maybe Natural)
-> Either
String
(Maybe [ChildShard] -> Int -> [Record] -> GetRecordsResponse)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Either String (Maybe Natural)
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"MillisBehindLatest")
Either
String
(Maybe [ChildShard] -> Int -> [Record] -> GetRecordsResponse)
-> Either String (Maybe [ChildShard])
-> Either String (Int -> [Record] -> GetRecordsResponse)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Either String (Maybe (Maybe [ChildShard]))
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"ChildShards" Either String (Maybe (Maybe [ChildShard]))
-> Maybe [ChildShard] -> Either String (Maybe [ChildShard])
forall (f :: * -> *) a. Functor f => f (Maybe a) -> a -> f a
Core..!@ Maybe [ChildShard]
forall a. Monoid a => a
Prelude.mempty)
Either String (Int -> [Record] -> GetRecordsResponse)
-> Either String Int
-> Either String ([Record] -> GetRecordsResponse)
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 ([Record] -> GetRecordsResponse)
-> Either String [Record] -> Either String GetRecordsResponse
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Either String (Maybe [Record])
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"Records" Either String (Maybe [Record])
-> [Record] -> Either String [Record]
forall (f :: * -> *) a. Functor f => f (Maybe a) -> a -> f a
Core..!@ [Record]
forall a. Monoid a => a
Prelude.mempty)
)
instance Prelude.Hashable GetRecords
instance Prelude.NFData GetRecords
instance Core.ToHeaders GetRecords where
toHeaders :: GetRecords -> ResponseHeaders
toHeaders =
ResponseHeaders -> GetRecords -> ResponseHeaders
forall a b. a -> b -> a
Prelude.const
( [ResponseHeaders] -> ResponseHeaders
forall a. Monoid a => [a] -> a
Prelude.mconcat
[ HeaderName
"X-Amz-Target"
HeaderName -> ByteString -> ResponseHeaders
forall a. ToHeader a => HeaderName -> a -> ResponseHeaders
Core.=# ( ByteString
"Kinesis_20131202.GetRecords" ::
Prelude.ByteString
),
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.ToJSON GetRecords where
toJSON :: GetRecords -> Value
toJSON GetRecords' {Maybe Natural
Text
shardIterator :: Text
limit :: Maybe Natural
$sel:shardIterator:GetRecords' :: GetRecords -> Text
$sel:limit:GetRecords' :: GetRecords -> Maybe Natural
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ (Text
"Limit" Text -> Natural -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (Natural -> Pair) -> Maybe Natural -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Natural
limit,
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just
(Text
"ShardIterator" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
shardIterator)
]
)
instance Core.ToPath GetRecords where
toPath :: GetRecords -> ByteString
toPath = ByteString -> GetRecords -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery GetRecords where
toQuery :: GetRecords -> QueryString
toQuery = QueryString -> GetRecords -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data GetRecordsResponse = GetRecordsResponse'
{
GetRecordsResponse -> Maybe Text
nextShardIterator :: Prelude.Maybe Prelude.Text,
GetRecordsResponse -> Maybe Natural
millisBehindLatest :: Prelude.Maybe Prelude.Natural,
GetRecordsResponse -> Maybe [ChildShard]
childShards :: Prelude.Maybe [ChildShard],
GetRecordsResponse -> Int
httpStatus :: Prelude.Int,
GetRecordsResponse -> [Record]
records :: [Record]
}
deriving (GetRecordsResponse -> GetRecordsResponse -> Bool
(GetRecordsResponse -> GetRecordsResponse -> Bool)
-> (GetRecordsResponse -> GetRecordsResponse -> Bool)
-> Eq GetRecordsResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: GetRecordsResponse -> GetRecordsResponse -> Bool
$c/= :: GetRecordsResponse -> GetRecordsResponse -> Bool
== :: GetRecordsResponse -> GetRecordsResponse -> Bool
$c== :: GetRecordsResponse -> GetRecordsResponse -> Bool
Prelude.Eq, ReadPrec [GetRecordsResponse]
ReadPrec GetRecordsResponse
Int -> ReadS GetRecordsResponse
ReadS [GetRecordsResponse]
(Int -> ReadS GetRecordsResponse)
-> ReadS [GetRecordsResponse]
-> ReadPrec GetRecordsResponse
-> ReadPrec [GetRecordsResponse]
-> Read GetRecordsResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [GetRecordsResponse]
$creadListPrec :: ReadPrec [GetRecordsResponse]
readPrec :: ReadPrec GetRecordsResponse
$creadPrec :: ReadPrec GetRecordsResponse
readList :: ReadS [GetRecordsResponse]
$creadList :: ReadS [GetRecordsResponse]
readsPrec :: Int -> ReadS GetRecordsResponse
$creadsPrec :: Int -> ReadS GetRecordsResponse
Prelude.Read, Int -> GetRecordsResponse -> ShowS
[GetRecordsResponse] -> ShowS
GetRecordsResponse -> String
(Int -> GetRecordsResponse -> ShowS)
-> (GetRecordsResponse -> String)
-> ([GetRecordsResponse] -> ShowS)
-> Show GetRecordsResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [GetRecordsResponse] -> ShowS
$cshowList :: [GetRecordsResponse] -> ShowS
show :: GetRecordsResponse -> String
$cshow :: GetRecordsResponse -> String
showsPrec :: Int -> GetRecordsResponse -> ShowS
$cshowsPrec :: Int -> GetRecordsResponse -> ShowS
Prelude.Show, (forall x. GetRecordsResponse -> Rep GetRecordsResponse x)
-> (forall x. Rep GetRecordsResponse x -> GetRecordsResponse)
-> Generic GetRecordsResponse
forall x. Rep GetRecordsResponse x -> GetRecordsResponse
forall x. GetRecordsResponse -> Rep GetRecordsResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep GetRecordsResponse x -> GetRecordsResponse
$cfrom :: forall x. GetRecordsResponse -> Rep GetRecordsResponse x
Prelude.Generic)
newGetRecordsResponse ::
Prelude.Int ->
GetRecordsResponse
newGetRecordsResponse :: Int -> GetRecordsResponse
newGetRecordsResponse Int
pHttpStatus_ =
GetRecordsResponse' :: Maybe Text
-> Maybe Natural
-> Maybe [ChildShard]
-> Int
-> [Record]
-> GetRecordsResponse
GetRecordsResponse'
{ $sel:nextShardIterator:GetRecordsResponse' :: Maybe Text
nextShardIterator =
Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:millisBehindLatest:GetRecordsResponse' :: Maybe Natural
millisBehindLatest = Maybe Natural
forall a. Maybe a
Prelude.Nothing,
$sel:childShards:GetRecordsResponse' :: Maybe [ChildShard]
childShards = Maybe [ChildShard]
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:GetRecordsResponse' :: Int
httpStatus = Int
pHttpStatus_,
$sel:records:GetRecordsResponse' :: [Record]
records = [Record]
forall a. Monoid a => a
Prelude.mempty
}
getRecordsResponse_nextShardIterator :: Lens.Lens' GetRecordsResponse (Prelude.Maybe Prelude.Text)
getRecordsResponse_nextShardIterator :: (Maybe Text -> f (Maybe Text))
-> GetRecordsResponse -> f GetRecordsResponse
getRecordsResponse_nextShardIterator = (GetRecordsResponse -> Maybe Text)
-> (GetRecordsResponse -> Maybe Text -> GetRecordsResponse)
-> Lens
GetRecordsResponse GetRecordsResponse (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetRecordsResponse' {Maybe Text
nextShardIterator :: Maybe Text
$sel:nextShardIterator:GetRecordsResponse' :: GetRecordsResponse -> Maybe Text
nextShardIterator} -> Maybe Text
nextShardIterator) (\s :: GetRecordsResponse
s@GetRecordsResponse' {} Maybe Text
a -> GetRecordsResponse
s {$sel:nextShardIterator:GetRecordsResponse' :: Maybe Text
nextShardIterator = Maybe Text
a} :: GetRecordsResponse)
getRecordsResponse_millisBehindLatest :: Lens.Lens' GetRecordsResponse (Prelude.Maybe Prelude.Natural)
getRecordsResponse_millisBehindLatest :: (Maybe Natural -> f (Maybe Natural))
-> GetRecordsResponse -> f GetRecordsResponse
getRecordsResponse_millisBehindLatest = (GetRecordsResponse -> Maybe Natural)
-> (GetRecordsResponse -> Maybe Natural -> GetRecordsResponse)
-> Lens
GetRecordsResponse
GetRecordsResponse
(Maybe Natural)
(Maybe Natural)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetRecordsResponse' {Maybe Natural
millisBehindLatest :: Maybe Natural
$sel:millisBehindLatest:GetRecordsResponse' :: GetRecordsResponse -> Maybe Natural
millisBehindLatest} -> Maybe Natural
millisBehindLatest) (\s :: GetRecordsResponse
s@GetRecordsResponse' {} Maybe Natural
a -> GetRecordsResponse
s {$sel:millisBehindLatest:GetRecordsResponse' :: Maybe Natural
millisBehindLatest = Maybe Natural
a} :: GetRecordsResponse)
getRecordsResponse_childShards :: Lens.Lens' GetRecordsResponse (Prelude.Maybe [ChildShard])
getRecordsResponse_childShards :: (Maybe [ChildShard] -> f (Maybe [ChildShard]))
-> GetRecordsResponse -> f GetRecordsResponse
getRecordsResponse_childShards = (GetRecordsResponse -> Maybe [ChildShard])
-> (GetRecordsResponse -> Maybe [ChildShard] -> GetRecordsResponse)
-> Lens
GetRecordsResponse
GetRecordsResponse
(Maybe [ChildShard])
(Maybe [ChildShard])
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetRecordsResponse' {Maybe [ChildShard]
childShards :: Maybe [ChildShard]
$sel:childShards:GetRecordsResponse' :: GetRecordsResponse -> Maybe [ChildShard]
childShards} -> Maybe [ChildShard]
childShards) (\s :: GetRecordsResponse
s@GetRecordsResponse' {} Maybe [ChildShard]
a -> GetRecordsResponse
s {$sel:childShards:GetRecordsResponse' :: Maybe [ChildShard]
childShards = Maybe [ChildShard]
a} :: GetRecordsResponse) ((Maybe [ChildShard] -> f (Maybe [ChildShard]))
-> GetRecordsResponse -> f GetRecordsResponse)
-> ((Maybe [ChildShard] -> f (Maybe [ChildShard]))
-> Maybe [ChildShard] -> f (Maybe [ChildShard]))
-> (Maybe [ChildShard] -> f (Maybe [ChildShard]))
-> GetRecordsResponse
-> f GetRecordsResponse
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. AnIso [ChildShard] [ChildShard] [ChildShard] [ChildShard]
-> Iso
(Maybe [ChildShard])
(Maybe [ChildShard])
(Maybe [ChildShard])
(Maybe [ChildShard])
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 [ChildShard] [ChildShard] [ChildShard] [ChildShard]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced
getRecordsResponse_httpStatus :: Lens.Lens' GetRecordsResponse Prelude.Int
getRecordsResponse_httpStatus :: (Int -> f Int) -> GetRecordsResponse -> f GetRecordsResponse
getRecordsResponse_httpStatus = (GetRecordsResponse -> Int)
-> (GetRecordsResponse -> Int -> GetRecordsResponse)
-> Lens GetRecordsResponse GetRecordsResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetRecordsResponse' {Int
httpStatus :: Int
$sel:httpStatus:GetRecordsResponse' :: GetRecordsResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: GetRecordsResponse
s@GetRecordsResponse' {} Int
a -> GetRecordsResponse
s {$sel:httpStatus:GetRecordsResponse' :: Int
httpStatus = Int
a} :: GetRecordsResponse)
getRecordsResponse_records :: Lens.Lens' GetRecordsResponse [Record]
getRecordsResponse_records :: ([Record] -> f [Record])
-> GetRecordsResponse -> f GetRecordsResponse
getRecordsResponse_records = (GetRecordsResponse -> [Record])
-> (GetRecordsResponse -> [Record] -> GetRecordsResponse)
-> Lens GetRecordsResponse GetRecordsResponse [Record] [Record]
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\GetRecordsResponse' {[Record]
records :: [Record]
$sel:records:GetRecordsResponse' :: GetRecordsResponse -> [Record]
records} -> [Record]
records) (\s :: GetRecordsResponse
s@GetRecordsResponse' {} [Record]
a -> GetRecordsResponse
s {$sel:records:GetRecordsResponse' :: [Record]
records = [Record]
a} :: GetRecordsResponse) (([Record] -> f [Record])
-> GetRecordsResponse -> f GetRecordsResponse)
-> (([Record] -> f [Record]) -> [Record] -> f [Record])
-> ([Record] -> f [Record])
-> GetRecordsResponse
-> f GetRecordsResponse
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. ([Record] -> f [Record]) -> [Record] -> f [Record]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced
instance Prelude.NFData GetRecordsResponse