amazonka-swf-1.6.1: Amazon Simple Workflow Service SDK.

Copyright(c) 2013-2018 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.SWF.RequestCancelWorkflowExecution

Contents

Description

Records a WorkflowExecutionCancelRequested event in the currently running workflow execution identified by the given domain, workflowId, and runId. This logically requests the cancellation of the workflow execution as a whole. It is up to the decider to take appropriate actions when it receives an execution history with this event.

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 doesn't 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 is set to OPERATION_NOT_PERMITTED . For details and example IAM policies, see Using IAM to Manage Access to Amazon SWF Workflows in the Amazon SWF Developer Guide .

Synopsis

Creating a Request

requestCancelWorkflowExecution Source #

Creates a value of RequestCancelWorkflowExecution with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • rcweRunId - The runId of the workflow execution to cancel.
  • rcweDomain - The name of the domain containing the workflow execution to cancel.
  • rcweWorkflowId - The workflowId of the workflow execution to cancel.

data RequestCancelWorkflowExecution Source #

See: requestCancelWorkflowExecution smart constructor.

Instances
Eq RequestCancelWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.RequestCancelWorkflowExecution

Data RequestCancelWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.RequestCancelWorkflowExecution

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> RequestCancelWorkflowExecution -> c RequestCancelWorkflowExecution #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c RequestCancelWorkflowExecution #

toConstr :: RequestCancelWorkflowExecution -> Constr #

dataTypeOf :: RequestCancelWorkflowExecution -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c RequestCancelWorkflowExecution) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c RequestCancelWorkflowExecution) #

gmapT :: (forall b. Data b => b -> b) -> RequestCancelWorkflowExecution -> RequestCancelWorkflowExecution #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> RequestCancelWorkflowExecution -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> RequestCancelWorkflowExecution -> r #

gmapQ :: (forall d. Data d => d -> u) -> RequestCancelWorkflowExecution -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> RequestCancelWorkflowExecution -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> RequestCancelWorkflowExecution -> m RequestCancelWorkflowExecution #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> RequestCancelWorkflowExecution -> m RequestCancelWorkflowExecution #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> RequestCancelWorkflowExecution -> m RequestCancelWorkflowExecution #

Read RequestCancelWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.RequestCancelWorkflowExecution

Show RequestCancelWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.RequestCancelWorkflowExecution

Generic RequestCancelWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.RequestCancelWorkflowExecution

Associated Types

type Rep RequestCancelWorkflowExecution :: Type -> Type #

Hashable RequestCancelWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.RequestCancelWorkflowExecution

ToJSON RequestCancelWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.RequestCancelWorkflowExecution

AWSRequest RequestCancelWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.RequestCancelWorkflowExecution

Associated Types

type Rs RequestCancelWorkflowExecution :: Type #

ToHeaders RequestCancelWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.RequestCancelWorkflowExecution

ToPath RequestCancelWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.RequestCancelWorkflowExecution

ToQuery RequestCancelWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.RequestCancelWorkflowExecution

NFData RequestCancelWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.RequestCancelWorkflowExecution

type Rep RequestCancelWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.RequestCancelWorkflowExecution

type Rep RequestCancelWorkflowExecution = D1 (MetaData "RequestCancelWorkflowExecution" "Network.AWS.SWF.RequestCancelWorkflowExecution" "amazonka-swf-1.6.1-3kde1KSCGTp3D4Dj0lEH55" False) (C1 (MetaCons "RequestCancelWorkflowExecution'" PrefixI True) (S1 (MetaSel (Just "_rcweRunId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_rcweDomain") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text) :*: S1 (MetaSel (Just "_rcweWorkflowId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text))))
type Rs RequestCancelWorkflowExecution Source # 
Instance details

Defined in Network.AWS.SWF.RequestCancelWorkflowExecution

Request Lenses

rcweRunId :: Lens' RequestCancelWorkflowExecution (Maybe Text) Source #

The runId of the workflow execution to cancel.

rcweDomain :: Lens' RequestCancelWorkflowExecution Text Source #

The name of the domain containing the workflow execution to cancel.

rcweWorkflowId :: Lens' RequestCancelWorkflowExecution Text Source #

The workflowId of the workflow execution to cancel.

Destructuring the Response

data RequestCancelWorkflowExecutionResponse Source #

Instances
Eq RequestCancelWorkflowExecutionResponse Source # 
Instance details

Defined in Network.AWS.SWF.RequestCancelWorkflowExecution

Data RequestCancelWorkflowExecutionResponse Source # 
Instance details

Defined in Network.AWS.SWF.RequestCancelWorkflowExecution

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> RequestCancelWorkflowExecutionResponse -> c RequestCancelWorkflowExecutionResponse #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c RequestCancelWorkflowExecutionResponse #

toConstr :: RequestCancelWorkflowExecutionResponse -> Constr #

dataTypeOf :: RequestCancelWorkflowExecutionResponse -> DataType #

dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c RequestCancelWorkflowExecutionResponse) #

dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c RequestCancelWorkflowExecutionResponse) #

gmapT :: (forall b. Data b => b -> b) -> RequestCancelWorkflowExecutionResponse -> RequestCancelWorkflowExecutionResponse #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> RequestCancelWorkflowExecutionResponse -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> RequestCancelWorkflowExecutionResponse -> r #

gmapQ :: (forall d. Data d => d -> u) -> RequestCancelWorkflowExecutionResponse -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> RequestCancelWorkflowExecutionResponse -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> RequestCancelWorkflowExecutionResponse -> m RequestCancelWorkflowExecutionResponse #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> RequestCancelWorkflowExecutionResponse -> m RequestCancelWorkflowExecutionResponse #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> RequestCancelWorkflowExecutionResponse -> m RequestCancelWorkflowExecutionResponse #

Read RequestCancelWorkflowExecutionResponse Source # 
Instance details

Defined in Network.AWS.SWF.RequestCancelWorkflowExecution

Show RequestCancelWorkflowExecutionResponse Source # 
Instance details

Defined in Network.AWS.SWF.RequestCancelWorkflowExecution

Generic RequestCancelWorkflowExecutionResponse Source # 
Instance details

Defined in Network.AWS.SWF.RequestCancelWorkflowExecution

NFData RequestCancelWorkflowExecutionResponse Source # 
Instance details

Defined in Network.AWS.SWF.RequestCancelWorkflowExecution

type Rep RequestCancelWorkflowExecutionResponse Source # 
Instance details

Defined in Network.AWS.SWF.RequestCancelWorkflowExecution

type Rep RequestCancelWorkflowExecutionResponse = D1 (MetaData "RequestCancelWorkflowExecutionResponse" "Network.AWS.SWF.RequestCancelWorkflowExecution" "amazonka-swf-1.6.1-3kde1KSCGTp3D4Dj0lEH55" False) (C1 (MetaCons "RequestCancelWorkflowExecutionResponse'" PrefixI False) (U1 :: Type -> Type))