Class: Aws::SWF::Types::Run
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::Run
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-swf/types.rb
Overview
Specifies the ‘runId` of a workflow execution.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#run_id ⇒ String
The ‘runId` of a workflow execution.
Instance Attribute Details
#run_id ⇒ String
The ‘runId` of a workflow execution. This ID is generated by the service and can be used to uniquely identify the workflow execution within a domain.
4240 4241 4242 4243 4244 |
# File 'lib/aws-sdk-swf/types.rb', line 4240 class Run < Struct.new( :run_id) SENSITIVE = [] include Aws::Structure end |