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
Note:
When making an API call, you may pass ExecutionTimeFilter data as a hash:
{
oldest_date: Time.now, # required
latest_date: Time.now,
}
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.
2308 2309 2310 2311 2312 2313 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 2308 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.
2308 2309 2310 2311 2312 2313 |
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 2308 class ExecutionTimeFilter < Struct.new( :oldest_date, :latest_date) SENSITIVE = [] include Aws::Structure end |