Provides details of the CancelWorkflowExecution decision.

Access Control

You can use IAM policies to control this decision'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 Using IAM to Manage Access to Amazon SWF Workflows.

コード例 #1
0
ファイル: Decision.cs プロジェクト: rguarino4/aws-sdk-net
 public Decision WithCancelWorkflowExecutionDecisionAttributes(CancelWorkflowExecutionDecisionAttributes cancelWorkflowExecutionDecisionAttributes)
 {
     this.cancelWorkflowExecutionDecisionAttributes = cancelWorkflowExecutionDecisionAttributes;
     return this;
 }
コード例 #2
0
 /// <summary>
 /// Sets the CancelWorkflowExecutionDecisionAttributes property
 /// </summary>
 /// <param name="cancelWorkflowExecutionDecisionAttributes">The value to set for the CancelWorkflowExecutionDecisionAttributes property </param>
 /// <returns>this instance</returns>
 public Decision WithCancelWorkflowExecutionDecisionAttributes(CancelWorkflowExecutionDecisionAttributes cancelWorkflowExecutionDecisionAttributes)
 {
     this.cancelWorkflowExecutionDecisionAttributes = cancelWorkflowExecutionDecisionAttributes;
     return(this);
 }
コード例 #3
0
        /// <summary>
        /// Helper method to create a cancel workflow decision.
        /// </summary>
        /// <param name="details">Details for the cancellation.</param>
        /// <returns>Properly set up decision completed request.</returns>
        protected RespondDecisionTaskCompletedRequest CancelWorkflow(string details)
        {
            var attributes = new CancelWorkflowExecutionDecisionAttributes
            {
                Details = details
            };

            var decisionRequest = new RespondDecisionTaskCompletedRequest
            {
                Decisions = new List<Decision>
                    {
                        new Decision
                            {
                                DecisionType = "CancelWorkflowExecution",
                                CancelWorkflowExecutionDecisionAttributes = attributes 
                            }
                    }
            };

            Debug.WriteLine(">>> Decision: CancelWorkflowExecution");
            return decisionRequest;
        }