aws_sdk_datazone/client/list_project_profiles.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListProjectProfiles`](crate::operation::list_project_profiles::builders::ListProjectProfilesFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_project_profiles::builders::ListProjectProfilesFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`domain_identifier(impl Into<String>)`](crate::operation::list_project_profiles::builders::ListProjectProfilesFluentBuilder::domain_identifier) / [`set_domain_identifier(Option<String>)`](crate::operation::list_project_profiles::builders::ListProjectProfilesFluentBuilder::set_domain_identifier):<br>required: **true**<br><p>The ID of the domain where you want to list project profiles.</p><br>
/// - [`name(impl Into<String>)`](crate::operation::list_project_profiles::builders::ListProjectProfilesFluentBuilder::name) / [`set_name(Option<String>)`](crate::operation::list_project_profiles::builders::ListProjectProfilesFluentBuilder::set_name):<br>required: **false**<br><p>The name of a project profile.</p><br>
/// - [`sort_by(SortFieldProject)`](crate::operation::list_project_profiles::builders::ListProjectProfilesFluentBuilder::sort_by) / [`set_sort_by(Option<SortFieldProject>)`](crate::operation::list_project_profiles::builders::ListProjectProfilesFluentBuilder::set_sort_by):<br>required: **false**<br><p>Specifies by what to sort project profiles.</p><br>
/// - [`sort_order(SortOrder)`](crate::operation::list_project_profiles::builders::ListProjectProfilesFluentBuilder::sort_order) / [`set_sort_order(Option<SortOrder>)`](crate::operation::list_project_profiles::builders::ListProjectProfilesFluentBuilder::set_sort_order):<br>required: **false**<br><p>Specifies the sort order of the project profiles.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_project_profiles::builders::ListProjectProfilesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_project_profiles::builders::ListProjectProfilesFluentBuilder::set_next_token):<br>required: **false**<br><p>When the number of project profiles is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of project profiles, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListProjectProfiles to list the next set of project profiles.</p><br>
/// - [`max_results(i32)`](crate::operation::list_project_profiles::builders::ListProjectProfilesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_project_profiles::builders::ListProjectProfilesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of project profiles to return in a single call to ListProjectProfiles. When the number of project profiles to be listed is greater than the value of MaxResults, the response contains a NextToken value that you can use in a subsequent call to ListProjectProfiles to list the next set of project profiles.</p><br>
/// - On success, responds with [`ListProjectProfilesOutput`](crate::operation::list_project_profiles::ListProjectProfilesOutput) with field(s):
/// - [`items(Option<Vec::<ProjectProfileSummary>>)`](crate::operation::list_project_profiles::ListProjectProfilesOutput::items): <p>The results of the ListProjectProfiles action.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_project_profiles::ListProjectProfilesOutput::next_token): <p>When the number of project profiles is greater than the default value for the MaxResults parameter, or if you explicitly specify a value for MaxResults that is less than the number of project profiles, the response includes a pagination token named NextToken. You can specify this NextToken value in a subsequent call to ListProjectProfiles to list the next set of project profiles.</p>
/// - On failure, responds with [`SdkError<ListProjectProfilesError>`](crate::operation::list_project_profiles::ListProjectProfilesError)
pub fn list_project_profiles(&self) -> crate::operation::list_project_profiles::builders::ListProjectProfilesFluentBuilder {
crate::operation::list_project_profiles::builders::ListProjectProfilesFluentBuilder::new(self.handle.clone())
}
}