Class: Aws::SWF::Types::CloseStatusFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::CloseStatusFilter
- Defined in:
- gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb
Overview
Used to filter the closed workflow executions in visibility APIs by their close status.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#status ⇒ String
The close status that must match the close status of an execution for it to meet the criteria of this filter.
Instance Attribute Details
#status ⇒ String
The close status that must match the close status of an execution for it to meet the criteria of this filter.
894 895 896 897 898 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 894 class CloseStatusFilter < Struct.new( :status) SENSITIVE = [] include Aws::Structure end |