Class: Aws::SWF::Types::ExecutionTimeFilter

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#latest_dateTime

Specifies the latest start or close date and time to return.

Returns:

  • (Time)


2027
2028
2029
2030
2031
2032
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 2027

class ExecutionTimeFilter < Struct.new(
  :oldest_date,
  :latest_date)
  SENSITIVE = []
  include Aws::Structure
end

#oldest_dateTime

Specifies the oldest start or close date and time to return.

Returns:

  • (Time)


2027
2028
2029
2030
2031
2032
# File 'gems/aws-sdk-swf/lib/aws-sdk-swf/types.rb', line 2027

class ExecutionTimeFilter < Struct.new(
  :oldest_date,
  :latest_date)
  SENSITIVE = []
  include Aws::Structure
end