Class: Aws::SWF::Types::RequestCancelWorkflowExecutionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::RequestCancelWorkflowExecutionInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-swf/types.rb
Overview
Note:
When making an API call, you may pass RequestCancelWorkflowExecutionInput data as a hash:
{
domain: "DomainName", # required
workflow_id: "WorkflowId", # required
run_id: "WorkflowRunIdOptional",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain ⇒ String
The name of the domain containing the workflow execution to cancel.
-
#run_id ⇒ String
The runId of the workflow execution to cancel.
-
#workflow_id ⇒ String
The workflowId of the workflow execution to cancel.
Instance Attribute Details
#domain ⇒ String
The name of the domain containing the workflow execution to cancel.
4568 4569 4570 4571 4572 4573 4574 |
# File 'lib/aws-sdk-swf/types.rb', line 4568 class RequestCancelWorkflowExecutionInput < Struct.new( :domain, :workflow_id, :run_id) SENSITIVE = [] include Aws::Structure end |
#run_id ⇒ String
The runId of the workflow execution to cancel.
4568 4569 4570 4571 4572 4573 4574 |
# File 'lib/aws-sdk-swf/types.rb', line 4568 class RequestCancelWorkflowExecutionInput < Struct.new( :domain, :workflow_id, :run_id) SENSITIVE = [] include Aws::Structure end |
#workflow_id ⇒ String
The workflowId of the workflow execution to cancel.
4568 4569 4570 4571 4572 4573 4574 |
# File 'lib/aws-sdk-swf/types.rb', line 4568 class RequestCancelWorkflowExecutionInput < Struct.new( :domain, :workflow_id, :run_id) SENSITIVE = [] include Aws::Structure end |