You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ExecutionTimeFilter as input to an Aws::Client method, you can use a vanilla 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.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#latest_dateTime

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

Returns:

  • (Time)

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

#oldest_dateTime

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

Returns:

  • (Time)

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