pub struct CountOpenWorkflowExecutionsInput {
pub domain: String,
pub execution_filter: Option<WorkflowExecutionFilter>,
pub start_time_filter: ExecutionTimeFilter,
pub tag_filter: Option<TagFilter>,
pub type_filter: Option<WorkflowTypeFilter>,
}
Fields§
§domain: String
The name of the domain containing the workflow executions to count.
execution_filter: Option<WorkflowExecutionFilter>
If specified, only workflow executions matching the WorkflowId
in the filter are counted.
executionFilter
, typeFilter
and tagFilter
are mutually exclusive. You can specify at most one of these in a request.
start_time_filter: ExecutionTimeFilter
Specifies the start time criteria that workflow executions must meet in order to be counted.
tag_filter: Option<TagFilter>
If specified, only executions that have a tag that matches the filter are counted.
executionFilter
, typeFilter
and tagFilter
are mutually exclusive. You can specify at most one of these in a request.
type_filter: Option<WorkflowTypeFilter>
Specifies the type of the workflow executions to be counted.
executionFilter
, typeFilter
and tagFilter
are mutually exclusive. You can specify at most one of these in a request.
Trait Implementations§
Source§impl Clone for CountOpenWorkflowExecutionsInput
impl Clone for CountOpenWorkflowExecutionsInput
Source§fn clone(&self) -> CountOpenWorkflowExecutionsInput
fn clone(&self) -> CountOpenWorkflowExecutionsInput
Returns a duplicate 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 Default for CountOpenWorkflowExecutionsInput
impl Default for CountOpenWorkflowExecutionsInput
Source§fn default() -> CountOpenWorkflowExecutionsInput
fn default() -> CountOpenWorkflowExecutionsInput
Returns the “default value” for a type. Read more
Source§impl PartialEq for CountOpenWorkflowExecutionsInput
impl PartialEq for CountOpenWorkflowExecutionsInput
Source§fn eq(&self, other: &CountOpenWorkflowExecutionsInput) -> bool
fn eq(&self, other: &CountOpenWorkflowExecutionsInput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CountOpenWorkflowExecutionsInput
Auto Trait Implementations§
impl Freeze for CountOpenWorkflowExecutionsInput
impl RefUnwindSafe for CountOpenWorkflowExecutionsInput
impl Send for CountOpenWorkflowExecutionsInput
impl Sync for CountOpenWorkflowExecutionsInput
impl Unpin for CountOpenWorkflowExecutionsInput
impl UnwindSafe for CountOpenWorkflowExecutionsInput
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more