1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListFeatures`](crate::operation::list_features::builders::ListFeaturesFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_features::builders::ListFeaturesFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`project(impl Into<String>)`](crate::operation::list_features::builders::ListFeaturesFluentBuilder::project) / [`set_project(Option<String>)`](crate::operation::list_features::builders::ListFeaturesFluentBuilder::set_project): <p>The name or ARN of the project to return the feature list from.</p>
    ///   - [`max_results(i32)`](crate::operation::list_features::builders::ListFeaturesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_features::builders::ListFeaturesFluentBuilder::set_max_results): <p>The maximum number of results to include in the response.</p>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_features::builders::ListFeaturesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_features::builders::ListFeaturesFluentBuilder::set_next_token): <p>The token to use when requesting the next set of results. You received this token from a previous <code>ListFeatures</code> operation.</p>
    /// - On success, responds with [`ListFeaturesOutput`](crate::operation::list_features::ListFeaturesOutput) with field(s):
    ///   - [`features(Option<Vec<FeatureSummary>>)`](crate::operation::list_features::ListFeaturesOutput::features): <p>An array of structures that contain the configuration details of the features in the specified project.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_features::ListFeaturesOutput::next_token): <p>The token to use in a subsequent <code>ListFeatures</code> operation to return the next set of results.</p>
    /// - On failure, responds with [`SdkError<ListFeaturesError>`](crate::operation::list_features::ListFeaturesError)
    pub fn list_features(
        &self,
    ) -> crate::operation::list_features::builders::ListFeaturesFluentBuilder {
        crate::operation::list_features::builders::ListFeaturesFluentBuilder::new(
            self.handle.clone(),
        )
    }
}