{-# 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.Transfer.ListExecutions
(
ListExecutions (..),
newListExecutions,
listExecutions_nextToken,
listExecutions_maxResults,
listExecutions_workflowId,
ListExecutionsResponse (..),
newListExecutionsResponse,
listExecutionsResponse_nextToken,
listExecutionsResponse_httpStatus,
listExecutionsResponse_workflowId,
listExecutionsResponse_executions,
)
where
import qualified Amazonka.Core as Core
import qualified Amazonka.Lens as Lens
import qualified Amazonka.Prelude as Prelude
import qualified Amazonka.Request as Request
import qualified Amazonka.Response as Response
import Amazonka.Transfer.Types
data ListExecutions = ListExecutions'
{
ListExecutions -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text,
ListExecutions -> Maybe Natural
maxResults :: Prelude.Maybe Prelude.Natural,
ListExecutions -> Text
workflowId :: Prelude.Text
}
deriving (ListExecutions -> ListExecutions -> Bool
(ListExecutions -> ListExecutions -> Bool)
-> (ListExecutions -> ListExecutions -> Bool) -> Eq ListExecutions
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListExecutions -> ListExecutions -> Bool
$c/= :: ListExecutions -> ListExecutions -> Bool
== :: ListExecutions -> ListExecutions -> Bool
$c== :: ListExecutions -> ListExecutions -> Bool
Prelude.Eq, ReadPrec [ListExecutions]
ReadPrec ListExecutions
Int -> ReadS ListExecutions
ReadS [ListExecutions]
(Int -> ReadS ListExecutions)
-> ReadS [ListExecutions]
-> ReadPrec ListExecutions
-> ReadPrec [ListExecutions]
-> Read ListExecutions
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ListExecutions]
$creadListPrec :: ReadPrec [ListExecutions]
readPrec :: ReadPrec ListExecutions
$creadPrec :: ReadPrec ListExecutions
readList :: ReadS [ListExecutions]
$creadList :: ReadS [ListExecutions]
readsPrec :: Int -> ReadS ListExecutions
$creadsPrec :: Int -> ReadS ListExecutions
Prelude.Read, Int -> ListExecutions -> ShowS
[ListExecutions] -> ShowS
ListExecutions -> String
(Int -> ListExecutions -> ShowS)
-> (ListExecutions -> String)
-> ([ListExecutions] -> ShowS)
-> Show ListExecutions
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListExecutions] -> ShowS
$cshowList :: [ListExecutions] -> ShowS
show :: ListExecutions -> String
$cshow :: ListExecutions -> String
showsPrec :: Int -> ListExecutions -> ShowS
$cshowsPrec :: Int -> ListExecutions -> ShowS
Prelude.Show, (forall x. ListExecutions -> Rep ListExecutions x)
-> (forall x. Rep ListExecutions x -> ListExecutions)
-> Generic ListExecutions
forall x. Rep ListExecutions x -> ListExecutions
forall x. ListExecutions -> Rep ListExecutions x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ListExecutions x -> ListExecutions
$cfrom :: forall x. ListExecutions -> Rep ListExecutions x
Prelude.Generic)
newListExecutions ::
Prelude.Text ->
ListExecutions
newListExecutions :: Text -> ListExecutions
newListExecutions Text
pWorkflowId_ =
ListExecutions' :: Maybe Text -> Maybe Natural -> Text -> ListExecutions
ListExecutions'
{ $sel:nextToken:ListExecutions' :: Maybe Text
nextToken = Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:maxResults:ListExecutions' :: Maybe Natural
maxResults = Maybe Natural
forall a. Maybe a
Prelude.Nothing,
$sel:workflowId:ListExecutions' :: Text
workflowId = Text
pWorkflowId_
}
listExecutions_nextToken :: Lens.Lens' ListExecutions (Prelude.Maybe Prelude.Text)
listExecutions_nextToken :: (Maybe Text -> f (Maybe Text))
-> ListExecutions -> f ListExecutions
listExecutions_nextToken = (ListExecutions -> Maybe Text)
-> (ListExecutions -> Maybe Text -> ListExecutions)
-> Lens ListExecutions ListExecutions (Maybe Text) (Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListExecutions' {Maybe Text
nextToken :: Maybe Text
$sel:nextToken:ListExecutions' :: ListExecutions -> Maybe Text
nextToken} -> Maybe Text
nextToken) (\s :: ListExecutions
s@ListExecutions' {} Maybe Text
a -> ListExecutions
s {$sel:nextToken:ListExecutions' :: Maybe Text
nextToken = Maybe Text
a} :: ListExecutions)
listExecutions_maxResults :: Lens.Lens' ListExecutions (Prelude.Maybe Prelude.Natural)
listExecutions_maxResults :: (Maybe Natural -> f (Maybe Natural))
-> ListExecutions -> f ListExecutions
listExecutions_maxResults = (ListExecutions -> Maybe Natural)
-> (ListExecutions -> Maybe Natural -> ListExecutions)
-> Lens
ListExecutions ListExecutions (Maybe Natural) (Maybe Natural)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListExecutions' {Maybe Natural
maxResults :: Maybe Natural
$sel:maxResults:ListExecutions' :: ListExecutions -> Maybe Natural
maxResults} -> Maybe Natural
maxResults) (\s :: ListExecutions
s@ListExecutions' {} Maybe Natural
a -> ListExecutions
s {$sel:maxResults:ListExecutions' :: Maybe Natural
maxResults = Maybe Natural
a} :: ListExecutions)
listExecutions_workflowId :: Lens.Lens' ListExecutions Prelude.Text
listExecutions_workflowId :: (Text -> f Text) -> ListExecutions -> f ListExecutions
listExecutions_workflowId = (ListExecutions -> Text)
-> (ListExecutions -> Text -> ListExecutions)
-> Lens ListExecutions ListExecutions Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListExecutions' {Text
workflowId :: Text
$sel:workflowId:ListExecutions' :: ListExecutions -> Text
workflowId} -> Text
workflowId) (\s :: ListExecutions
s@ListExecutions' {} Text
a -> ListExecutions
s {$sel:workflowId:ListExecutions' :: Text
workflowId = Text
a} :: ListExecutions)
instance Core.AWSRequest ListExecutions where
type
AWSResponse ListExecutions =
ListExecutionsResponse
request :: ListExecutions -> Request ListExecutions
request = Service -> ListExecutions -> Request ListExecutions
forall a. (ToRequest a, ToJSON a) => Service -> a -> Request a
Request.postJSON Service
defaultService
response :: Logger
-> Service
-> Proxy ListExecutions
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse ListExecutions)))
response =
(Int
-> ResponseHeaders
-> Object
-> Either String (AWSResponse ListExecutions))
-> Logger
-> Service
-> Proxy ListExecutions
-> ClientResponse ClientBody
-> m (Either Error (ClientResponse (AWSResponse ListExecutions)))
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 -> Text -> [ListedExecution] -> ListExecutionsResponse
ListExecutionsResponse'
(Maybe Text
-> Int -> Text -> [ListedExecution] -> ListExecutionsResponse)
-> Either String (Maybe Text)
-> Either
String (Int -> Text -> [ListedExecution] -> ListExecutionsResponse)
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 -> Text -> [ListedExecution] -> ListExecutionsResponse)
-> Either String Int
-> Either
String (Text -> [ListedExecution] -> ListExecutionsResponse)
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 (Text -> [ListedExecution] -> ListExecutionsResponse)
-> Either String Text
-> Either String ([ListedExecution] -> ListExecutionsResponse)
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Either String Text
forall a. FromJSON a => Object -> Text -> Either String a
Core..:> Text
"WorkflowId")
Either String ([ListedExecution] -> ListExecutionsResponse)
-> Either String [ListedExecution]
-> Either String ListExecutionsResponse
forall (f :: * -> *) a b. Applicative f => f (a -> b) -> f a -> f b
Prelude.<*> (Object
x Object -> Text -> Either String (Maybe [ListedExecution])
forall a. FromJSON a => Object -> Text -> Either String (Maybe a)
Core..?> Text
"Executions" Either String (Maybe [ListedExecution])
-> [ListedExecution] -> Either String [ListedExecution]
forall (f :: * -> *) a. Functor f => f (Maybe a) -> a -> f a
Core..!@ [ListedExecution]
forall a. Monoid a => a
Prelude.mempty)
)
instance Prelude.Hashable ListExecutions
instance Prelude.NFData ListExecutions
instance Core.ToHeaders ListExecutions where
toHeaders :: ListExecutions -> ResponseHeaders
toHeaders =
ResponseHeaders -> ListExecutions -> 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
"TransferService.ListExecutions" ::
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 ListExecutions where
toJSON :: ListExecutions -> Value
toJSON ListExecutions' {Maybe Natural
Maybe Text
Text
workflowId :: Text
maxResults :: Maybe Natural
nextToken :: Maybe Text
$sel:workflowId:ListExecutions' :: ListExecutions -> Text
$sel:maxResults:ListExecutions' :: ListExecutions -> Maybe Natural
$sel:nextToken:ListExecutions' :: ListExecutions -> Maybe Text
..} =
[Pair] -> Value
Core.object
( [Maybe Pair] -> [Pair]
forall a. [Maybe a] -> [a]
Prelude.catMaybes
[ (Text
"NextToken" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..=) (Text -> Pair) -> Maybe Text -> Maybe Pair
forall (f :: * -> *) a b. Functor f => (a -> b) -> f a -> f b
Prelude.<$> Maybe Text
nextToken,
(Text
"MaxResults" 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
maxResults,
Pair -> Maybe Pair
forall a. a -> Maybe a
Prelude.Just (Text
"WorkflowId" Text -> Text -> Pair
forall kv v. (KeyValue kv, ToJSON v) => Text -> v -> kv
Core..= Text
workflowId)
]
)
instance Core.ToPath ListExecutions where
toPath :: ListExecutions -> ByteString
toPath = ByteString -> ListExecutions -> ByteString
forall a b. a -> b -> a
Prelude.const ByteString
"/"
instance Core.ToQuery ListExecutions where
toQuery :: ListExecutions -> QueryString
toQuery = QueryString -> ListExecutions -> QueryString
forall a b. a -> b -> a
Prelude.const QueryString
forall a. Monoid a => a
Prelude.mempty
data ListExecutionsResponse = ListExecutionsResponse'
{
ListExecutionsResponse -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text,
ListExecutionsResponse -> Int
httpStatus :: Prelude.Int,
ListExecutionsResponse -> Text
workflowId :: Prelude.Text,
ListExecutionsResponse -> [ListedExecution]
executions :: [ListedExecution]
}
deriving (ListExecutionsResponse -> ListExecutionsResponse -> Bool
(ListExecutionsResponse -> ListExecutionsResponse -> Bool)
-> (ListExecutionsResponse -> ListExecutionsResponse -> Bool)
-> Eq ListExecutionsResponse
forall a. (a -> a -> Bool) -> (a -> a -> Bool) -> Eq a
/= :: ListExecutionsResponse -> ListExecutionsResponse -> Bool
$c/= :: ListExecutionsResponse -> ListExecutionsResponse -> Bool
== :: ListExecutionsResponse -> ListExecutionsResponse -> Bool
$c== :: ListExecutionsResponse -> ListExecutionsResponse -> Bool
Prelude.Eq, ReadPrec [ListExecutionsResponse]
ReadPrec ListExecutionsResponse
Int -> ReadS ListExecutionsResponse
ReadS [ListExecutionsResponse]
(Int -> ReadS ListExecutionsResponse)
-> ReadS [ListExecutionsResponse]
-> ReadPrec ListExecutionsResponse
-> ReadPrec [ListExecutionsResponse]
-> Read ListExecutionsResponse
forall a.
(Int -> ReadS a)
-> ReadS [a] -> ReadPrec a -> ReadPrec [a] -> Read a
readListPrec :: ReadPrec [ListExecutionsResponse]
$creadListPrec :: ReadPrec [ListExecutionsResponse]
readPrec :: ReadPrec ListExecutionsResponse
$creadPrec :: ReadPrec ListExecutionsResponse
readList :: ReadS [ListExecutionsResponse]
$creadList :: ReadS [ListExecutionsResponse]
readsPrec :: Int -> ReadS ListExecutionsResponse
$creadsPrec :: Int -> ReadS ListExecutionsResponse
Prelude.Read, Int -> ListExecutionsResponse -> ShowS
[ListExecutionsResponse] -> ShowS
ListExecutionsResponse -> String
(Int -> ListExecutionsResponse -> ShowS)
-> (ListExecutionsResponse -> String)
-> ([ListExecutionsResponse] -> ShowS)
-> Show ListExecutionsResponse
forall a.
(Int -> a -> ShowS) -> (a -> String) -> ([a] -> ShowS) -> Show a
showList :: [ListExecutionsResponse] -> ShowS
$cshowList :: [ListExecutionsResponse] -> ShowS
show :: ListExecutionsResponse -> String
$cshow :: ListExecutionsResponse -> String
showsPrec :: Int -> ListExecutionsResponse -> ShowS
$cshowsPrec :: Int -> ListExecutionsResponse -> ShowS
Prelude.Show, (forall x. ListExecutionsResponse -> Rep ListExecutionsResponse x)
-> (forall x.
Rep ListExecutionsResponse x -> ListExecutionsResponse)
-> Generic ListExecutionsResponse
forall x. Rep ListExecutionsResponse x -> ListExecutionsResponse
forall x. ListExecutionsResponse -> Rep ListExecutionsResponse x
forall a.
(forall x. a -> Rep a x) -> (forall x. Rep a x -> a) -> Generic a
$cto :: forall x. Rep ListExecutionsResponse x -> ListExecutionsResponse
$cfrom :: forall x. ListExecutionsResponse -> Rep ListExecutionsResponse x
Prelude.Generic)
newListExecutionsResponse ::
Prelude.Int ->
Prelude.Text ->
ListExecutionsResponse
newListExecutionsResponse :: Int -> Text -> ListExecutionsResponse
newListExecutionsResponse Int
pHttpStatus_ Text
pWorkflowId_ =
ListExecutionsResponse' :: Maybe Text
-> Int -> Text -> [ListedExecution] -> ListExecutionsResponse
ListExecutionsResponse'
{ $sel:nextToken:ListExecutionsResponse' :: Maybe Text
nextToken =
Maybe Text
forall a. Maybe a
Prelude.Nothing,
$sel:httpStatus:ListExecutionsResponse' :: Int
httpStatus = Int
pHttpStatus_,
$sel:workflowId:ListExecutionsResponse' :: Text
workflowId = Text
pWorkflowId_,
$sel:executions:ListExecutionsResponse' :: [ListedExecution]
executions = [ListedExecution]
forall a. Monoid a => a
Prelude.mempty
}
listExecutionsResponse_nextToken :: Lens.Lens' ListExecutionsResponse (Prelude.Maybe Prelude.Text)
listExecutionsResponse_nextToken :: (Maybe Text -> f (Maybe Text))
-> ListExecutionsResponse -> f ListExecutionsResponse
listExecutionsResponse_nextToken = (ListExecutionsResponse -> Maybe Text)
-> (ListExecutionsResponse -> Maybe Text -> ListExecutionsResponse)
-> Lens
ListExecutionsResponse
ListExecutionsResponse
(Maybe Text)
(Maybe Text)
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListExecutionsResponse' {Maybe Text
nextToken :: Maybe Text
$sel:nextToken:ListExecutionsResponse' :: ListExecutionsResponse -> Maybe Text
nextToken} -> Maybe Text
nextToken) (\s :: ListExecutionsResponse
s@ListExecutionsResponse' {} Maybe Text
a -> ListExecutionsResponse
s {$sel:nextToken:ListExecutionsResponse' :: Maybe Text
nextToken = Maybe Text
a} :: ListExecutionsResponse)
listExecutionsResponse_httpStatus :: Lens.Lens' ListExecutionsResponse Prelude.Int
listExecutionsResponse_httpStatus :: (Int -> f Int)
-> ListExecutionsResponse -> f ListExecutionsResponse
listExecutionsResponse_httpStatus = (ListExecutionsResponse -> Int)
-> (ListExecutionsResponse -> Int -> ListExecutionsResponse)
-> Lens ListExecutionsResponse ListExecutionsResponse Int Int
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListExecutionsResponse' {Int
httpStatus :: Int
$sel:httpStatus:ListExecutionsResponse' :: ListExecutionsResponse -> Int
httpStatus} -> Int
httpStatus) (\s :: ListExecutionsResponse
s@ListExecutionsResponse' {} Int
a -> ListExecutionsResponse
s {$sel:httpStatus:ListExecutionsResponse' :: Int
httpStatus = Int
a} :: ListExecutionsResponse)
listExecutionsResponse_workflowId :: Lens.Lens' ListExecutionsResponse Prelude.Text
listExecutionsResponse_workflowId :: (Text -> f Text)
-> ListExecutionsResponse -> f ListExecutionsResponse
listExecutionsResponse_workflowId = (ListExecutionsResponse -> Text)
-> (ListExecutionsResponse -> Text -> ListExecutionsResponse)
-> Lens ListExecutionsResponse ListExecutionsResponse Text Text
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListExecutionsResponse' {Text
workflowId :: Text
$sel:workflowId:ListExecutionsResponse' :: ListExecutionsResponse -> Text
workflowId} -> Text
workflowId) (\s :: ListExecutionsResponse
s@ListExecutionsResponse' {} Text
a -> ListExecutionsResponse
s {$sel:workflowId:ListExecutionsResponse' :: Text
workflowId = Text
a} :: ListExecutionsResponse)
listExecutionsResponse_executions :: Lens.Lens' ListExecutionsResponse [ListedExecution]
listExecutionsResponse_executions :: ([ListedExecution] -> f [ListedExecution])
-> ListExecutionsResponse -> f ListExecutionsResponse
listExecutionsResponse_executions = (ListExecutionsResponse -> [ListedExecution])
-> (ListExecutionsResponse
-> [ListedExecution] -> ListExecutionsResponse)
-> Lens
ListExecutionsResponse
ListExecutionsResponse
[ListedExecution]
[ListedExecution]
forall s a b t. (s -> a) -> (s -> b -> t) -> Lens s t a b
Lens.lens (\ListExecutionsResponse' {[ListedExecution]
executions :: [ListedExecution]
$sel:executions:ListExecutionsResponse' :: ListExecutionsResponse -> [ListedExecution]
executions} -> [ListedExecution]
executions) (\s :: ListExecutionsResponse
s@ListExecutionsResponse' {} [ListedExecution]
a -> ListExecutionsResponse
s {$sel:executions:ListExecutionsResponse' :: [ListedExecution]
executions = [ListedExecution]
a} :: ListExecutionsResponse) (([ListedExecution] -> f [ListedExecution])
-> ListExecutionsResponse -> f ListExecutionsResponse)
-> (([ListedExecution] -> f [ListedExecution])
-> [ListedExecution] -> f [ListedExecution])
-> ([ListedExecution] -> f [ListedExecution])
-> ListExecutionsResponse
-> f ListExecutionsResponse
forall b c a. (b -> c) -> (a -> b) -> a -> c
Prelude.. ([ListedExecution] -> f [ListedExecution])
-> [ListedExecution] -> f [ListedExecution]
forall s t a b. (Coercible s a, Coercible t b) => Iso s t a b
Lens.coerced
instance Prelude.NFData ListExecutionsResponse