aws_sdk_dax/client/
describe_default_parameters.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeDefaultParameters`](crate::operation::describe_default_parameters::builders::DescribeDefaultParametersFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`max_results(i32)`](crate::operation::describe_default_parameters::builders::DescribeDefaultParametersFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::describe_default_parameters::builders::DescribeDefaultParametersFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to include in the response. If more results exist than the specified <code>MaxResults</code> value, a token is included in the response so that the remaining results can be retrieved.</p> <p>The value for <code>MaxResults</code> must be between 20 and 100.</p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::describe_default_parameters::builders::DescribeDefaultParametersFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::describe_default_parameters::builders::DescribeDefaultParametersFluentBuilder::set_next_token):<br>required: **false**<br><p>An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by <code>MaxResults</code>.</p><br>
    /// - On success, responds with [`DescribeDefaultParametersOutput`](crate::operation::describe_default_parameters::DescribeDefaultParametersOutput) with field(s):
    ///   - [`next_token(Option<String>)`](crate::operation::describe_default_parameters::DescribeDefaultParametersOutput::next_token): <p>Provides an identifier to allow retrieval of paginated results.</p>
    ///   - [`parameters(Option<Vec::<Parameter>>)`](crate::operation::describe_default_parameters::DescribeDefaultParametersOutput::parameters): <p>A list of parameters. Each element in the list represents one parameter.</p>
    /// - On failure, responds with [`SdkError<DescribeDefaultParametersError>`](crate::operation::describe_default_parameters::DescribeDefaultParametersError)
    pub fn describe_default_parameters(&self) -> crate::operation::describe_default_parameters::builders::DescribeDefaultParametersFluentBuilder {
        crate::operation::describe_default_parameters::builders::DescribeDefaultParametersFluentBuilder::new(self.handle.clone())
    }
}