aws_sdk_cleanroomsml/client/list_configured_model_algorithms.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 [`ListConfiguredModelAlgorithms`](crate::operation::list_configured_model_algorithms::builders::ListConfiguredModelAlgorithmsFluentBuilder) operation.
4 /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_configured_model_algorithms::builders::ListConfiguredModelAlgorithmsFluentBuilder::into_paginator).
5 ///
6 /// - The fluent builder is configurable:
7 /// - [`next_token(impl Into<String>)`](crate::operation::list_configured_model_algorithms::builders::ListConfiguredModelAlgorithmsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_configured_model_algorithms::builders::ListConfiguredModelAlgorithmsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token value retrieved from a previous call to access the next page of results.</p><br>
8 /// - [`max_results(i32)`](crate::operation::list_configured_model_algorithms::builders::ListConfiguredModelAlgorithmsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_configured_model_algorithms::builders::ListConfiguredModelAlgorithmsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum size of the results that is returned per call.</p><br>
9 /// - On success, responds with [`ListConfiguredModelAlgorithmsOutput`](crate::operation::list_configured_model_algorithms::ListConfiguredModelAlgorithmsOutput) with field(s):
10 /// - [`next_token(Option<String>)`](crate::operation::list_configured_model_algorithms::ListConfiguredModelAlgorithmsOutput::next_token): <p>The token value used to access the next page of results.</p>
11 /// - [`configured_model_algorithms(Vec::<ConfiguredModelAlgorithmSummary>)`](crate::operation::list_configured_model_algorithms::ListConfiguredModelAlgorithmsOutput::configured_model_algorithms): <p>The list of configured model algorithms.</p>
12 /// - On failure, responds with [`SdkError<ListConfiguredModelAlgorithmsError>`](crate::operation::list_configured_model_algorithms::ListConfiguredModelAlgorithmsError)
13 pub fn list_configured_model_algorithms(
14 &self,
15 ) -> crate::operation::list_configured_model_algorithms::builders::ListConfiguredModelAlgorithmsFluentBuilder {
16 crate::operation::list_configured_model_algorithms::builders::ListConfiguredModelAlgorithmsFluentBuilder::new(self.handle.clone())
17 }
18}