aws_sdk_entityresolution/client/
list_matching_workflows.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`ListMatchingWorkflows`](crate::operation::list_matching_workflows::builders::ListMatchingWorkflowsFluentBuilder) operation.
4    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_matching_workflows::builders::ListMatchingWorkflowsFluentBuilder::into_paginator).
5    ///
6    /// - The fluent builder is configurable:
7    ///   - [`next_token(impl Into<String>)`](crate::operation::list_matching_workflows::builders::ListMatchingWorkflowsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_matching_workflows::builders::ListMatchingWorkflowsFluentBuilder::set_next_token):<br>required: **false**<br><p>The pagination token from the previous API call.</p><br>
8    ///   - [`max_results(i32)`](crate::operation::list_matching_workflows::builders::ListMatchingWorkflowsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_matching_workflows::builders::ListMatchingWorkflowsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of objects returned per page.</p><br>
9    /// - On success, responds with [`ListMatchingWorkflowsOutput`](crate::operation::list_matching_workflows::ListMatchingWorkflowsOutput) with field(s):
10    ///   - [`workflow_summaries(Option<Vec::<MatchingWorkflowSummary>>)`](crate::operation::list_matching_workflows::ListMatchingWorkflowsOutput::workflow_summaries): <p>A list of <code>MatchingWorkflowSummary</code> objects, each of which contain the fields <code>WorkflowName</code>, <code>WorkflowArn</code>, <code>CreatedAt</code>, and <code>UpdatedAt</code>.</p>
11    ///   - [`next_token(Option<String>)`](crate::operation::list_matching_workflows::ListMatchingWorkflowsOutput::next_token): <p>The pagination token from the previous API call.</p>
12    /// - On failure, responds with [`SdkError<ListMatchingWorkflowsError>`](crate::operation::list_matching_workflows::ListMatchingWorkflowsError)
13    pub fn list_matching_workflows(&self) -> crate::operation::list_matching_workflows::builders::ListMatchingWorkflowsFluentBuilder {
14        crate::operation::list_matching_workflows::builders::ListMatchingWorkflowsFluentBuilder::new(self.handle.clone())
15    }
16}