Struct aws_sdk_swf::model::ExecutionTimeFilter [−][src]
#[non_exhaustive]pub struct ExecutionTimeFilter {
pub oldest_date: Option<Instant>,
pub latest_date: Option<Instant>,
}
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.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.oldest_date: Option<Instant>
Specifies the oldest start or close date and time to return.
latest_date: Option<Instant>
Specifies the latest start or close date and time to return.
Implementations
Specifies the oldest start or close date and time to return.
Specifies the latest start or close date and time to return.
Creates a new builder-style object to manufacture ExecutionTimeFilter
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for ExecutionTimeFilter
impl Send for ExecutionTimeFilter
impl Sync for ExecutionTimeFilter
impl Unpin for ExecutionTimeFilter
impl UnwindSafe for ExecutionTimeFilter
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more