Class: Aws::SWF::Types::ExecutionTimeFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::SWF::Types::ExecutionTimeFilter
- Defined in:
- gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb
Overview
Used to filter the workflow executions in visibility APIs by various
time-based rules. Each parameter, if specified, defines a rule that
must be satisfied by each returned query result. The parameter values
are in the Unix Time format. For example: "oldestDate":
1325376070.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#latest_date ⇒ Time
Specifies the latest start or close date and time to return.
-
#oldest_date ⇒ Time
Specifies the oldest start or close date and time to return.
Instance Attribute Details
#latest_date ⇒ Time
Specifies the latest start or close date and time to return.
2057 2058 2059 2060 2061 2062 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 2057 class ExecutionTimeFilter < Struct.new( :oldest_date, :latest_date) SENSITIVE = [] include Aws::Structure end |
#oldest_date ⇒ Time
Specifies the oldest start or close date and time to return.
2057 2058 2059 2060 2061 2062 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 2057 class ExecutionTimeFilter < Struct.new( :oldest_date, :latest_date) SENSITIVE = [] include Aws::Structure end |