Class: Aws::SWF::Types::WorkflowExecutionFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::WorkflowExecutionFilter
- Defined in:
- gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb
Overview
Note:
When making an API call, you may pass WorkflowExecutionFilter data as a hash:
{
workflow_id: "WorkflowId", # required
}
Used to filter the workflow executions in visibility APIs by their
workflowId
.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#workflow_id ⇒ String
The workflowId to pass of match the criteria of this filter.
Instance Attribute Details
#workflow_id ⇒ String
The workflowId to pass of match the criteria of this filter.
6845 6846 6847 6848 6849 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 6845 class WorkflowExecutionFilter < Struct.new( :workflow_id) SENSITIVE = [] include Aws::Structure end |