1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListResolversByFunction`](crate::operation::list_resolvers_by_function::builders::ListResolversByFunctionFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`api_id(impl Into<String>)`](crate::operation::list_resolvers_by_function::builders::ListResolversByFunctionFluentBuilder::api_id) / [`set_api_id(Option<String>)`](crate::operation::list_resolvers_by_function::builders::ListResolversByFunctionFluentBuilder::set_api_id):<br>required: **true**<br><p>The API ID.</p><br>
    ///   - [`function_id(impl Into<String>)`](crate::operation::list_resolvers_by_function::builders::ListResolversByFunctionFluentBuilder::function_id) / [`set_function_id(Option<String>)`](crate::operation::list_resolvers_by_function::builders::ListResolversByFunctionFluentBuilder::set_function_id):<br>required: **true**<br><p>The function ID.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_resolvers_by_function::builders::ListResolversByFunctionFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_resolvers_by_function::builders::ListResolversByFunctionFluentBuilder::set_next_token):<br>required: **false**<br><p>An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_resolvers_by_function::builders::ListResolversByFunctionFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_resolvers_by_function::builders::ListResolversByFunctionFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results that you want the request to return.</p><br>
    /// - On success, responds with [`ListResolversByFunctionOutput`](crate::operation::list_resolvers_by_function::ListResolversByFunctionOutput) with field(s):
    ///   - [`resolvers(Option<Vec::<Resolver>>)`](crate::operation::list_resolvers_by_function::ListResolversByFunctionOutput::resolvers): <p>The list of resolvers.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_resolvers_by_function::ListResolversByFunctionOutput::next_token): <p>An identifier that you can use to return the next set of items in the list.</p>
    /// - On failure, responds with [`SdkError<ListResolversByFunctionError>`](crate::operation::list_resolvers_by_function::ListResolversByFunctionError)
    pub fn list_resolvers_by_function(&self) -> crate::operation::list_resolvers_by_function::builders::ListResolversByFunctionFluentBuilder {
        crate::operation::list_resolvers_by_function::builders::ListResolversByFunctionFluentBuilder::new(self.handle.clone())
    }
}