aws_sdk_pinpoint/client/get_recommender_configurations.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 [`GetRecommenderConfigurations`](crate::operation::get_recommender_configurations::builders::GetRecommenderConfigurationsFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`page_size(impl Into<String>)`](crate::operation::get_recommender_configurations::builders::GetRecommenderConfigurationsFluentBuilder::page_size) / [`set_page_size(Option<String>)`](crate::operation::get_recommender_configurations::builders::GetRecommenderConfigurationsFluentBuilder::set_page_size):<br>required: **false**<br><p>The maximum number of items to include in each page of a paginated response. This parameter is not supported for application, campaign, and journey metrics.</p><br>
7 /// - [`token(impl Into<String>)`](crate::operation::get_recommender_configurations::builders::GetRecommenderConfigurationsFluentBuilder::token) / [`set_token(Option<String>)`](crate::operation::get_recommender_configurations::builders::GetRecommenderConfigurationsFluentBuilder::set_token):<br>required: **false**<br><p>The NextToken string that specifies which page of results to return in a paginated response.</p><br>
8 /// - On success, responds with [`GetRecommenderConfigurationsOutput`](crate::operation::get_recommender_configurations::GetRecommenderConfigurationsOutput) with field(s):
9 /// - [`list_recommender_configurations_response(Option<ListRecommenderConfigurationsResponse>)`](crate::operation::get_recommender_configurations::GetRecommenderConfigurationsOutput::list_recommender_configurations_response): <p>Provides information about all the recommender model configurations that are associated with your Amazon Pinpoint account.</p>
10 /// - On failure, responds with [`SdkError<GetRecommenderConfigurationsError>`](crate::operation::get_recommender_configurations::GetRecommenderConfigurationsError)
11 pub fn get_recommender_configurations(
12 &self,
13 ) -> crate::operation::get_recommender_configurations::builders::GetRecommenderConfigurationsFluentBuilder {
14 crate::operation::get_recommender_configurations::builders::GetRecommenderConfigurationsFluentBuilder::new(self.handle.clone())
15 }
16}