Class: Aws::SWF::Types::WorkflowExecution
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::WorkflowExecution
- Defined in:
- gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb
Overview
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.
5710 5711 5712 5713 5714 5715 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 5710 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.
5710 5711 5712 5713 5714 5715 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 5710 class WorkflowExecution < Struct.new( :workflow_id, :run_id) SENSITIVE = [] include Aws::Structure end |