{-# 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.Transfer.ListExecutions
-- Copyright   : (c) 2013-2021 Brendan Hay
-- License     : Mozilla Public License, v. 2.0.
-- Maintainer  : Brendan Hay <brendan.g.hay+amazonka@gmail.com>
-- Stability   : auto-generated
-- Portability : non-portable (GHC extensions)
--
-- Lists all executions for the specified workflow.
module Amazonka.Transfer.ListExecutions
  ( -- * Creating a Request
    ListExecutions (..),
    newListExecutions,

    -- * Request Lenses
    listExecutions_nextToken,
    listExecutions_maxResults,
    listExecutions_workflowId,

    -- * Destructuring the Response
    ListExecutionsResponse (..),
    newListExecutionsResponse,

    -- * Response Lenses
    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

-- | /See:/ 'newListExecutions' smart constructor.
data ListExecutions = ListExecutions'
  { -- | @ListExecutions@ returns the @NextToken@ parameter in the output. You
    -- can then pass the @NextToken@ parameter in a subsequent command to
    -- continue listing additional executions.
    --
    -- This is useful for pagination, for instance. If you have 100 executions
    -- for a workflow, you might only want to list first 10. If so, callthe API
    -- by specifing the @max-results@:
    --
    -- @aws transfer list-executions --max-results 10@
    --
    -- This returns details for the first 10 executions, as well as the pointer
    -- (@NextToken@) to the eleventh execution. You can now call the API again,
    -- suppling the @NextToken@ value you received:
    --
    -- @aws transfer list-executions --max-results 10 --next-token $somePointerReturnedFromPreviousListResult@
    --
    -- This call returns the next 10 executions, the 11th through the 20th. You
    -- can then repeat the call until the details for all 100 executions have
    -- been returned.
    ListExecutions -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text,
    -- | Specifies the aximum number of executions to return.
    ListExecutions -> Maybe Natural
maxResults :: Prelude.Maybe Prelude.Natural,
    -- | A unique identifier for the workflow.
    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)

-- |
-- Create a value of 'ListExecutions' 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', 'listExecutions_nextToken' - @ListExecutions@ returns the @NextToken@ parameter in the output. You
-- can then pass the @NextToken@ parameter in a subsequent command to
-- continue listing additional executions.
--
-- This is useful for pagination, for instance. If you have 100 executions
-- for a workflow, you might only want to list first 10. If so, callthe API
-- by specifing the @max-results@:
--
-- @aws transfer list-executions --max-results 10@
--
-- This returns details for the first 10 executions, as well as the pointer
-- (@NextToken@) to the eleventh execution. You can now call the API again,
-- suppling the @NextToken@ value you received:
--
-- @aws transfer list-executions --max-results 10 --next-token $somePointerReturnedFromPreviousListResult@
--
-- This call returns the next 10 executions, the 11th through the 20th. You
-- can then repeat the call until the details for all 100 executions have
-- been returned.
--
-- 'maxResults', 'listExecutions_maxResults' - Specifies the aximum number of executions to return.
--
-- 'workflowId', 'listExecutions_workflowId' - A unique identifier for the workflow.
newListExecutions ::
  -- | 'workflowId'
  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@ returns the @NextToken@ parameter in the output. You
-- can then pass the @NextToken@ parameter in a subsequent command to
-- continue listing additional executions.
--
-- This is useful for pagination, for instance. If you have 100 executions
-- for a workflow, you might only want to list first 10. If so, callthe API
-- by specifing the @max-results@:
--
-- @aws transfer list-executions --max-results 10@
--
-- This returns details for the first 10 executions, as well as the pointer
-- (@NextToken@) to the eleventh execution. You can now call the API again,
-- suppling the @NextToken@ value you received:
--
-- @aws transfer list-executions --max-results 10 --next-token $somePointerReturnedFromPreviousListResult@
--
-- This call returns the next 10 executions, the 11th through the 20th. You
-- can then repeat the call until the details for all 100 executions have
-- been returned.
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)

-- | Specifies the aximum number of executions to return.
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)

-- | A unique identifier for the workflow.
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

-- | /See:/ 'newListExecutionsResponse' smart constructor.
data ListExecutionsResponse = ListExecutionsResponse'
  { -- | @ListExecutions@ returns the @NextToken@ parameter in the output. You
    -- can then pass the @NextToken@ parameter in a subsequent command to
    -- continue listing additional executions.
    ListExecutionsResponse -> Maybe Text
nextToken :: Prelude.Maybe Prelude.Text,
    -- | The response's http status code.
    ListExecutionsResponse -> Int
httpStatus :: Prelude.Int,
    -- | A unique identifier for the workflow.
    ListExecutionsResponse -> Text
workflowId :: Prelude.Text,
    -- | Returns the details for each execution.
    --
    -- -   __NextToken__: returned from a call to several APIs, you can use
    --     pass it to a subsequent command to continue listing additional
    --     executions.
    --
    -- -   __StartTime__: timestamp indicating when the execution began.
    --
    -- -   __Executions__: details of the execution, including the execution
    --     ID, initial file location, and Service metadata.
    --
    -- -   __Status__: one of the following values: @IN_PROGRESS@, @COMPLETED@,
    --     @EXCEPTION@, @HANDLING_EXEPTION@.
    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)

-- |
-- Create a value of 'ListExecutionsResponse' 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', 'listExecutionsResponse_nextToken' - @ListExecutions@ returns the @NextToken@ parameter in the output. You
-- can then pass the @NextToken@ parameter in a subsequent command to
-- continue listing additional executions.
--
-- 'httpStatus', 'listExecutionsResponse_httpStatus' - The response's http status code.
--
-- 'workflowId', 'listExecutionsResponse_workflowId' - A unique identifier for the workflow.
--
-- 'executions', 'listExecutionsResponse_executions' - Returns the details for each execution.
--
-- -   __NextToken__: returned from a call to several APIs, you can use
--     pass it to a subsequent command to continue listing additional
--     executions.
--
-- -   __StartTime__: timestamp indicating when the execution began.
--
-- -   __Executions__: details of the execution, including the execution
--     ID, initial file location, and Service metadata.
--
-- -   __Status__: one of the following values: @IN_PROGRESS@, @COMPLETED@,
--     @EXCEPTION@, @HANDLING_EXEPTION@.
newListExecutionsResponse ::
  -- | 'httpStatus'
  Prelude.Int ->
  -- | 'workflowId'
  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
    }

-- | @ListExecutions@ returns the @NextToken@ parameter in the output. You
-- can then pass the @NextToken@ parameter in a subsequent command to
-- continue listing additional executions.
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)

-- | The response's http status code.
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)

-- | A unique identifier for the workflow.
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)

-- | Returns the details for each execution.
--
-- -   __NextToken__: returned from a call to several APIs, you can use
--     pass it to a subsequent command to continue listing additional
--     executions.
--
-- -   __StartTime__: timestamp indicating when the execution began.
--
-- -   __Executions__: details of the execution, including the execution
--     ID, initial file location, and Service metadata.
--
-- -   __Status__: one of the following values: @IN_PROGRESS@, @COMPLETED@,
--     @EXCEPTION@, @HANDLING_EXEPTION@.
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