Struct aws_sdk_swf::model::ExecutionTimeFilter
source · #[non_exhaustive]pub struct ExecutionTimeFilter { /* private fields */ }
Expand description
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.
Implementations§
source§impl ExecutionTimeFilter
impl ExecutionTimeFilter
sourcepub fn oldest_date(&self) -> Option<&DateTime>
pub fn oldest_date(&self) -> Option<&DateTime>
Specifies the oldest start or close date and time to return.
sourcepub fn latest_date(&self) -> Option<&DateTime>
pub fn latest_date(&self) -> Option<&DateTime>
Specifies the latest start or close date and time to return.
source§impl ExecutionTimeFilter
impl ExecutionTimeFilter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ExecutionTimeFilter
.
Trait Implementations§
source§impl Clone for ExecutionTimeFilter
impl Clone for ExecutionTimeFilter
source§fn clone(&self) -> ExecutionTimeFilter
fn clone(&self) -> ExecutionTimeFilter
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ExecutionTimeFilter
impl Debug for ExecutionTimeFilter
source§impl PartialEq<ExecutionTimeFilter> for ExecutionTimeFilter
impl PartialEq<ExecutionTimeFilter> for ExecutionTimeFilter
source§fn eq(&self, other: &ExecutionTimeFilter) -> bool
fn eq(&self, other: &ExecutionTimeFilter) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.