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 [`ListUserProfiles`](crate::operation::list_user_profiles::builders::ListUserProfilesFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_user_profiles::builders::ListUserProfilesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_user_profiles::builders::ListUserProfilesFluentBuilder::set_next_token):<br>required: **false**<br><p>The continuation token for the next set of results, if the results cannot be returned in one response.</p><br>
    ///   - [`max_results(i32)`](crate::operation::list_user_profiles::builders::ListUserProfilesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_user_profiles::builders::ListUserProfilesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to return in a response.</p><br>
    /// - On success, responds with [`ListUserProfilesOutput`](crate::operation::list_user_profiles::ListUserProfilesOutput) with field(s):
    ///   - [`user_profiles(Vec::<UserProfileSummary>)`](crate::operation::list_user_profiles::ListUserProfilesOutput::user_profiles): <p>All the user profiles configured in AWS CodeStar for an AWS account.</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_user_profiles::ListUserProfilesOutput::next_token): <p>The continuation token to use when requesting the next set of results, if there are more results to be returned.</p>
    /// - On failure, responds with [`SdkError<ListUserProfilesError>`](crate::operation::list_user_profiles::ListUserProfilesError)
    pub fn list_user_profiles(&self) -> crate::operation::list_user_profiles::builders::ListUserProfilesFluentBuilder {
        crate::operation::list_user_profiles::builders::ListUserProfilesFluentBuilder::new(self.handle.clone())
    }
}