aws_sdk_databasemigration/client/describe_recommendation_limitations.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeRecommendationLimitations`](crate::operation::describe_recommendation_limitations::builders::DescribeRecommendationLimitationsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_recommendation_limitations::builders::DescribeRecommendationLimitationsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`filters(Filter)`](crate::operation::describe_recommendation_limitations::builders::DescribeRecommendationLimitationsFluentBuilder::filters) / [`set_filters(Option<Vec::<Filter>>)`](crate::operation::describe_recommendation_limitations::builders::DescribeRecommendationLimitationsFluentBuilder::set_filters):<br>required: **false**<br><p>Filters applied to the limitations described in the form of key-value pairs.</p><br>
/// - [`max_records(i32)`](crate::operation::describe_recommendation_limitations::builders::DescribeRecommendationLimitationsFluentBuilder::max_records) / [`set_max_records(Option<i32>)`](crate::operation::describe_recommendation_limitations::builders::DescribeRecommendationLimitationsFluentBuilder::set_max_records):<br>required: **false**<br><p>The maximum number of records to include in the response. If more records exist than the specified <code>MaxRecords</code> value, Fleet Advisor includes a pagination token in the response so that you can retrieve the remaining results.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::describe_recommendation_limitations::builders::DescribeRecommendationLimitationsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::describe_recommendation_limitations::builders::DescribeRecommendationLimitationsFluentBuilder::set_next_token):<br>required: **false**<br><p>Specifies the unique pagination token that makes it possible to display the next page of results. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by <code>MaxRecords</code>.</p> <p>If <code>NextToken</code> is returned by a previous response, there are more results available. The value of <code>NextToken</code> 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.</p><br>
/// - On success, responds with [`DescribeRecommendationLimitationsOutput`](crate::operation::describe_recommendation_limitations::DescribeRecommendationLimitationsOutput) with field(s):
/// - [`next_token(Option<String>)`](crate::operation::describe_recommendation_limitations::DescribeRecommendationLimitationsOutput::next_token): <p>The unique pagination token returned for you to pass to a subsequent request. Fleet Advisor returns this token when the number of records in the response is greater than the <code>MaxRecords</code> value. To retrieve the next page, make the call again using the returned token and keeping all other arguments unchanged.</p>
/// - [`limitations(Option<Vec::<Limitation>>)`](crate::operation::describe_recommendation_limitations::DescribeRecommendationLimitationsOutput::limitations): <p>The list of limitations for recommendations of target Amazon Web Services engines.</p>
/// - On failure, responds with [`SdkError<DescribeRecommendationLimitationsError>`](crate::operation::describe_recommendation_limitations::DescribeRecommendationLimitationsError)
pub fn describe_recommendation_limitations(
&self,
) -> crate::operation::describe_recommendation_limitations::builders::DescribeRecommendationLimitationsFluentBuilder {
crate::operation::describe_recommendation_limitations::builders::DescribeRecommendationLimitationsFluentBuilder::new(self.handle.clone())
}
}