Struct aws_sdk_swf::input::ListOpenWorkflowExecutionsInput
source · [−]#[non_exhaustive]pub struct ListOpenWorkflowExecutionsInput {
pub domain: Option<String>,
pub start_time_filter: Option<ExecutionTimeFilter>,
pub type_filter: Option<WorkflowTypeFilter>,
pub tag_filter: Option<TagFilter>,
pub next_page_token: Option<String>,
pub maximum_page_size: i32,
pub reverse_order: bool,
pub execution_filter: Option<WorkflowExecutionFilter>,
}
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.domain: Option<String>
The name of the domain that contains the workflow executions to list.
start_time_filter: Option<ExecutionTimeFilter>
Workflow executions are included in the returned results based on whether their start times are within the range specified by this filter.
type_filter: Option<WorkflowTypeFilter>
If specified, only executions of the type specified in the filter are returned.
executionFilter
, typeFilter
and tagFilter
are mutually exclusive. You can specify at most one of these in a request.
tag_filter: Option<TagFilter>
If specified, only executions that have the matching tag are listed.
executionFilter
, typeFilter
and tagFilter
are mutually exclusive. You can specify at most one of these in a request.
next_page_token: Option<String>
If NextPageToken
is returned there are more results available. The value of NextPageToken
is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 60 seconds. Using an expired pagination token will return a 400
error: "Specified token has exceeded its maximum lifetime
".
The configured maximumPageSize
determines how many results can be returned in a single call.
maximum_page_size: i32
The maximum number of results that are returned per call. Use nextPageToken
to obtain further pages of results.
reverse_order: bool
When set to true
, returns the results in reverse order. By default the results are returned in descending order of the start time of the executions.
execution_filter: Option<WorkflowExecutionFilter>
If specified, only workflow executions matching the workflow ID specified in the filter are returned.
executionFilter
, typeFilter
and tagFilter
are mutually exclusive. You can specify at most one of these in a request.
Implementations
sourceimpl ListOpenWorkflowExecutionsInput
impl ListOpenWorkflowExecutionsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListOpenWorkflowExecutions, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListOpenWorkflowExecutions, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ListOpenWorkflowExecutions
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture ListOpenWorkflowExecutionsInput
sourceimpl ListOpenWorkflowExecutionsInput
impl ListOpenWorkflowExecutionsInput
sourcepub fn domain(&self) -> Option<&str>
pub fn domain(&self) -> Option<&str>
The name of the domain that contains the workflow executions to list.
sourcepub fn start_time_filter(&self) -> Option<&ExecutionTimeFilter>
pub fn start_time_filter(&self) -> Option<&ExecutionTimeFilter>
Workflow executions are included in the returned results based on whether their start times are within the range specified by this filter.
sourcepub fn type_filter(&self) -> Option<&WorkflowTypeFilter>
pub fn type_filter(&self) -> Option<&WorkflowTypeFilter>
If specified, only executions of the type specified in the filter are returned.
executionFilter
, typeFilter
and tagFilter
are mutually exclusive. You can specify at most one of these in a request.
sourcepub fn tag_filter(&self) -> Option<&TagFilter>
pub fn tag_filter(&self) -> Option<&TagFilter>
If specified, only executions that have the matching tag are listed.
executionFilter
, typeFilter
and tagFilter
are mutually exclusive. You can specify at most one of these in a request.
sourcepub fn next_page_token(&self) -> Option<&str>
pub fn next_page_token(&self) -> Option<&str>
If NextPageToken
is returned there are more results available. The value of NextPageToken
is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. Each pagination token expires after 60 seconds. Using an expired pagination token will return a 400
error: "Specified token has exceeded its maximum lifetime
".
The configured maximumPageSize
determines how many results can be returned in a single call.
sourcepub fn maximum_page_size(&self) -> i32
pub fn maximum_page_size(&self) -> i32
The maximum number of results that are returned per call. Use nextPageToken
to obtain further pages of results.
sourcepub fn reverse_order(&self) -> bool
pub fn reverse_order(&self) -> bool
When set to true
, returns the results in reverse order. By default the results are returned in descending order of the start time of the executions.
sourcepub fn execution_filter(&self) -> Option<&WorkflowExecutionFilter>
pub fn execution_filter(&self) -> Option<&WorkflowExecutionFilter>
If specified, only workflow executions matching the workflow ID specified in the filter are returned.
executionFilter
, typeFilter
and tagFilter
are mutually exclusive. You can specify at most one of these in a request.
Trait Implementations
sourceimpl Clone for ListOpenWorkflowExecutionsInput
impl Clone for ListOpenWorkflowExecutionsInput
sourcefn clone(&self) -> ListOpenWorkflowExecutionsInput
fn clone(&self) -> ListOpenWorkflowExecutionsInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<ListOpenWorkflowExecutionsInput> for ListOpenWorkflowExecutionsInput
impl PartialEq<ListOpenWorkflowExecutionsInput> for ListOpenWorkflowExecutionsInput
sourcefn eq(&self, other: &ListOpenWorkflowExecutionsInput) -> bool
fn eq(&self, other: &ListOpenWorkflowExecutionsInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ListOpenWorkflowExecutionsInput) -> bool
fn ne(&self, other: &ListOpenWorkflowExecutionsInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for ListOpenWorkflowExecutionsInput
Auto Trait Implementations
impl RefUnwindSafe for ListOpenWorkflowExecutionsInput
impl Send for ListOpenWorkflowExecutionsInput
impl Sync for ListOpenWorkflowExecutionsInput
impl Unpin for ListOpenWorkflowExecutionsInput
impl UnwindSafe for ListOpenWorkflowExecutionsInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more