Class: Aws::SWF::Types::DescribeWorkflowExecutionInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::DescribeWorkflowExecutionInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-swf/types.rb
Overview
Note:
When making an API call, you may pass DescribeWorkflowExecutionInput data as a hash:
{
domain: "DomainName", # required
execution: { # required
workflow_id: "WorkflowId", # required
run_id: "WorkflowRunId", # required
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain ⇒ String
The name of the domain containing the workflow execution.
-
#execution ⇒ Types::WorkflowExecution
The workflow execution to describe.
Instance Attribute Details
#domain ⇒ String
The name of the domain containing the workflow execution.
2133 2134 2135 2136 2137 2138 |
# File 'lib/aws-sdk-swf/types.rb', line 2133 class DescribeWorkflowExecutionInput < Struct.new( :domain, :execution) SENSITIVE = [] include Aws::Structure end |
#execution ⇒ Types::WorkflowExecution
The workflow execution to describe.
2133 2134 2135 2136 2137 2138 |
# File 'lib/aws-sdk-swf/types.rb', line 2133 class DescribeWorkflowExecutionInput < Struct.new( :domain, :execution) SENSITIVE = [] include Aws::Structure end |