{-# LANGUAGE DeriveDataTypeable #-} {-# LANGUAGE DeriveGeneric #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE RecordWildCards #-} {-# LANGUAGE TypeFamilies #-} {-# OPTIONS_GHC -fno-warn-unused-imports #-} {-# OPTIONS_GHC -fno-warn-unused-binds #-} {-# OPTIONS_GHC -fno-warn-unused-matches #-} -- Derived from AWS service descriptions, licensed under Apache 2.0. -- | -- Module : Network.AWS.SWF.DescribeWorkflowExecution -- Copyright : (c) 2013-2015 Brendan Hay -- License : Mozilla Public License, v. 2.0. -- Maintainer : Brendan Hay -- Stability : auto-generated -- Portability : non-portable (GHC extensions) -- -- Returns information about the specified workflow execution including its -- type and some statistics. -- -- This operation is eventually consistent. The results are best effort and -- may not exactly reflect recent updates and changes. -- -- __Access Control__ -- -- You can use IAM policies to control this action\'s access to Amazon SWF -- resources as follows: -- -- - Use a 'Resource' element with the domain name to limit the action to -- only specified domains. -- - Use an 'Action' element to allow or deny permission to call this -- action. -- - You cannot use an IAM policy to constrain this action\'s parameters. -- -- If the caller does not have sufficient permissions to invoke the action, -- or the parameter values fall outside the specified constraints, the -- action fails. The associated event attribute\'s __cause__ parameter will -- be set to OPERATION_NOT_PERMITTED. For details and example IAM policies, -- see -- . -- -- /See:/ for DescribeWorkflowExecution. module Network.AWS.SWF.DescribeWorkflowExecution ( -- * Creating a Request describeWorkflowExecution , DescribeWorkflowExecution -- * Request Lenses , dweDomain , dweExecution -- * Destructuring the Response , describeWorkflowExecutionResponse , DescribeWorkflowExecutionResponse -- * Response Lenses , dwersLatestActivityTaskTimestamp , dwersLatestExecutionContext , dwersResponseStatus , dwersExecutionInfo , dwersExecutionConfiguration , dwersOpenCounts ) where import Network.AWS.Prelude import Network.AWS.Request import Network.AWS.Response import Network.AWS.SWF.Types import Network.AWS.SWF.Types.Product -- | /See:/ 'describeWorkflowExecution' smart constructor. data DescribeWorkflowExecution = DescribeWorkflowExecution' { _dweDomain :: !Text , _dweExecution :: !WorkflowExecution } deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'DescribeWorkflowExecution' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'dweDomain' -- -- * 'dweExecution' describeWorkflowExecution :: Text -- ^ 'dweDomain' -> WorkflowExecution -- ^ 'dweExecution' -> DescribeWorkflowExecution describeWorkflowExecution pDomain_ pExecution_ = DescribeWorkflowExecution' { _dweDomain = pDomain_ , _dweExecution = pExecution_ } -- | The name of the domain containing the workflow execution. dweDomain :: Lens' DescribeWorkflowExecution Text dweDomain = lens _dweDomain (\ s a -> s{_dweDomain = a}); -- | The workflow execution to describe. dweExecution :: Lens' DescribeWorkflowExecution WorkflowExecution dweExecution = lens _dweExecution (\ s a -> s{_dweExecution = a}); instance AWSRequest DescribeWorkflowExecution where type Rs DescribeWorkflowExecution = DescribeWorkflowExecutionResponse request = postJSON sWF response = receiveJSON (\ s h x -> DescribeWorkflowExecutionResponse' <$> (x .?> "latestActivityTaskTimestamp") <*> (x .?> "latestExecutionContext") <*> (pure (fromEnum s)) <*> (x .:> "executionInfo") <*> (x .:> "executionConfiguration") <*> (x .:> "openCounts")) instance ToHeaders DescribeWorkflowExecution where toHeaders = const (mconcat ["X-Amz-Target" =# ("SimpleWorkflowService.DescribeWorkflowExecution" :: ByteString), "Content-Type" =# ("application/x-amz-json-1.0" :: ByteString)]) instance ToJSON DescribeWorkflowExecution where toJSON DescribeWorkflowExecution'{..} = object (catMaybes [Just ("domain" .= _dweDomain), Just ("execution" .= _dweExecution)]) instance ToPath DescribeWorkflowExecution where toPath = const "/" instance ToQuery DescribeWorkflowExecution where toQuery = const mempty -- | Contains details about a workflow execution. -- -- /See:/ 'describeWorkflowExecutionResponse' smart constructor. data DescribeWorkflowExecutionResponse = DescribeWorkflowExecutionResponse' { _dwersLatestActivityTaskTimestamp :: !(Maybe POSIX) , _dwersLatestExecutionContext :: !(Maybe Text) , _dwersResponseStatus :: !Int , _dwersExecutionInfo :: !WorkflowExecutionInfo , _dwersExecutionConfiguration :: !WorkflowExecutionConfiguration , _dwersOpenCounts :: !WorkflowExecutionOpenCounts } deriving (Eq,Read,Show,Data,Typeable,Generic) -- | Creates a value of 'DescribeWorkflowExecutionResponse' with the minimum fields required to make a request. -- -- Use one of the following lenses to modify other fields as desired: -- -- * 'dwersLatestActivityTaskTimestamp' -- -- * 'dwersLatestExecutionContext' -- -- * 'dwersResponseStatus' -- -- * 'dwersExecutionInfo' -- -- * 'dwersExecutionConfiguration' -- -- * 'dwersOpenCounts' describeWorkflowExecutionResponse :: Int -- ^ 'dwersResponseStatus' -> WorkflowExecutionInfo -- ^ 'dwersExecutionInfo' -> WorkflowExecutionConfiguration -- ^ 'dwersExecutionConfiguration' -> WorkflowExecutionOpenCounts -- ^ 'dwersOpenCounts' -> DescribeWorkflowExecutionResponse describeWorkflowExecutionResponse pResponseStatus_ pExecutionInfo_ pExecutionConfiguration_ pOpenCounts_ = DescribeWorkflowExecutionResponse' { _dwersLatestActivityTaskTimestamp = Nothing , _dwersLatestExecutionContext = Nothing , _dwersResponseStatus = pResponseStatus_ , _dwersExecutionInfo = pExecutionInfo_ , _dwersExecutionConfiguration = pExecutionConfiguration_ , _dwersOpenCounts = pOpenCounts_ } -- | The time when the last activity task was scheduled for this workflow -- execution. You can use this information to determine if the workflow has -- not made progress for an unusually long period of time and might require -- a corrective action. dwersLatestActivityTaskTimestamp :: Lens' DescribeWorkflowExecutionResponse (Maybe UTCTime) dwersLatestActivityTaskTimestamp = lens _dwersLatestActivityTaskTimestamp (\ s a -> s{_dwersLatestActivityTaskTimestamp = a}) . mapping _Time; -- | The latest executionContext provided by the decider for this workflow -- execution. A decider can provide an executionContext (a free-form -- string) when closing a decision task using RespondDecisionTaskCompleted. dwersLatestExecutionContext :: Lens' DescribeWorkflowExecutionResponse (Maybe Text) dwersLatestExecutionContext = lens _dwersLatestExecutionContext (\ s a -> s{_dwersLatestExecutionContext = a}); -- | The response status code. dwersResponseStatus :: Lens' DescribeWorkflowExecutionResponse Int dwersResponseStatus = lens _dwersResponseStatus (\ s a -> s{_dwersResponseStatus = a}); -- | Information about the workflow execution. dwersExecutionInfo :: Lens' DescribeWorkflowExecutionResponse WorkflowExecutionInfo dwersExecutionInfo = lens _dwersExecutionInfo (\ s a -> s{_dwersExecutionInfo = a}); -- | The configuration settings for this workflow execution including timeout -- values, tasklist etc. dwersExecutionConfiguration :: Lens' DescribeWorkflowExecutionResponse WorkflowExecutionConfiguration dwersExecutionConfiguration = lens _dwersExecutionConfiguration (\ s a -> s{_dwersExecutionConfiguration = a}); -- | The number of tasks for this workflow execution. This includes open and -- closed tasks of all types. dwersOpenCounts :: Lens' DescribeWorkflowExecutionResponse WorkflowExecutionOpenCounts dwersOpenCounts = lens _dwersOpenCounts (\ s a -> s{_dwersOpenCounts = a});