Class: Aws::SWF::Types::WorkflowExecution
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::WorkflowExecution
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-swf/types.rb
Overview
Note:
When making an API call, you may pass WorkflowExecution data as a hash:
{
workflow_id: "WorkflowId", # required
run_id: "WorkflowRunId", # required
}
Represents a workflow execution.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#run_id ⇒ String
A system-generated unique identifier for the workflow execution.
-
#workflow_id ⇒ String
The user defined identifier associated with the workflow execution.
Instance Attribute Details
#run_id ⇒ String
A system-generated unique identifier for the workflow execution.
6489 6490 6491 6492 6493 6494 |
# File 'lib/aws-sdk-swf/types.rb', line 6489 class WorkflowExecution < Struct.new( :workflow_id, :run_id) SENSITIVE = [] include Aws::Structure end |
#workflow_id ⇒ String
The user defined identifier associated with the workflow execution.
6489 6490 6491 6492 6493 6494 |
# File 'lib/aws-sdk-swf/types.rb', line 6489 class WorkflowExecution < Struct.new( :workflow_id, :run_id) SENSITIVE = [] include Aws::Structure end |