Class: Aws::SWF::Types::TerminateWorkflowExecutionInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#child_policyString

If set, specifies the policy to use for the child workflow executions of the workflow execution being terminated. This policy overrides the child policy specified for the workflow execution at registration time or when starting the execution.

The supported child policies are:

  • TERMINATE – The child executions are terminated.

  • REQUEST_CANCEL – A request to cancel is attempted for each child execution by recording a WorkflowExecutionCancelRequested event in its history. It is up to the decider to take appropriate actions when it receives an execution history with this event.

  • ABANDON – No action is taken. The child executions continue to run.

A child policy for this workflow execution must be specified either as a default for the workflow type or through this parameter. If neither this parameter is set nor a default child policy was specified at registration time then a fault is returned.

Returns:

  • (String)


5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 5488

class TerminateWorkflowExecutionInput < Struct.new(
  :domain,
  :workflow_id,
  :run_id,
  :reason,
  :details,
  :child_policy)
  SENSITIVE = []
  include Aws::Structure
end

#detailsString

Details for terminating the workflow execution.

Returns:

  • (String)


5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 5488

class TerminateWorkflowExecutionInput < Struct.new(
  :domain,
  :workflow_id,
  :run_id,
  :reason,
  :details,
  :child_policy)
  SENSITIVE = []
  include Aws::Structure
end

#domainString

The domain of the workflow execution to terminate.

Returns:

  • (String)


5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 5488

class TerminateWorkflowExecutionInput < Struct.new(
  :domain,
  :workflow_id,
  :run_id,
  :reason,
  :details,
  :child_policy)
  SENSITIVE = []
  include Aws::Structure
end

#reasonString

A descriptive reason for terminating the workflow execution.

Returns:

  • (String)


5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 5488

class TerminateWorkflowExecutionInput < Struct.new(
  :domain,
  :workflow_id,
  :run_id,
  :reason,
  :details,
  :child_policy)
  SENSITIVE = []
  include Aws::Structure
end

#run_idString

The runId of the workflow execution to terminate.

Returns:

  • (String)


5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 5488

class TerminateWorkflowExecutionInput < Struct.new(
  :domain,
  :workflow_id,
  :run_id,
  :reason,
  :details,
  :child_policy)
  SENSITIVE = []
  include Aws::Structure
end

#workflow_idString

The workflowId of the workflow execution to terminate.

Returns:

  • (String)


5488
5489
5490
5491
5492
5493
5494
5495
5496
5497
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 5488

class TerminateWorkflowExecutionInput < Struct.new(
  :domain,
  :workflow_id,
  :run_id,
  :reason,
  :details,
  :child_policy)
  SENSITIVE = []
  include Aws::Structure
end