Struct aws_sdk_swf::input::ListOpenWorkflowExecutionsInput
source · [−]#[non_exhaustive]pub struct ListOpenWorkflowExecutionsInput { /* private fields */ }
Implementations
sourceimpl ListOpenWorkflowExecutionsInput
impl ListOpenWorkflowExecutionsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListOpenWorkflowExecutions, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ListOpenWorkflowExecutions, AwsResponseRetryClassifier>, 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
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more