aws_sdk_codestar/client/list_user_profiles.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 [`ListUserProfiles`](crate::operation::list_user_profiles::builders::ListUserProfilesFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - [`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>
8 /// - On success, responds with [`ListUserProfilesOutput`](crate::operation::list_user_profiles::ListUserProfilesOutput) with field(s):
9 /// - [`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>
10 /// - [`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>
11 /// - On failure, responds with [`SdkError<ListUserProfilesError>`](crate::operation::list_user_profiles::ListUserProfilesError)
12 pub fn list_user_profiles(&self) -> crate::operation::list_user_profiles::builders::ListUserProfilesFluentBuilder {
13 crate::operation::list_user_profiles::builders::ListUserProfilesFluentBuilder::new(self.handle.clone())
14 }
15}