// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListLaunchProfiles`](crate::operation::list_launch_profiles::builders::ListLaunchProfilesFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_launch_profiles::builders::ListLaunchProfilesFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`max_results(i32)`](crate::operation::list_launch_profiles::builders::ListLaunchProfilesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_launch_profiles::builders::ListLaunchProfilesFluentBuilder::set_max_results):<br>required: **false**<br><p>The max number of results to return in the response.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_launch_profiles::builders::ListLaunchProfilesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_launch_profiles::builders::ListLaunchProfilesFluentBuilder::set_next_token):<br>required: **false**<br><p>The token for the next set of results, or null if there are no more results.</p><br>
/// - [`principal_id(impl Into<String>)`](crate::operation::list_launch_profiles::builders::ListLaunchProfilesFluentBuilder::principal_id) / [`set_principal_id(Option<String>)`](crate::operation::list_launch_profiles::builders::ListLaunchProfilesFluentBuilder::set_principal_id):<br>required: **false**<br><p>The principal ID. This currently supports a IAM Identity Center UserId. </p><br>
/// - [`states(LaunchProfileState)`](crate::operation::list_launch_profiles::builders::ListLaunchProfilesFluentBuilder::states) / [`set_states(Option<Vec::<LaunchProfileState>>)`](crate::operation::list_launch_profiles::builders::ListLaunchProfilesFluentBuilder::set_states):<br>required: **false**<br><p>Filter this request to launch profiles in any of the given states.</p><br>
/// - [`studio_id(impl Into<String>)`](crate::operation::list_launch_profiles::builders::ListLaunchProfilesFluentBuilder::studio_id) / [`set_studio_id(Option<String>)`](crate::operation::list_launch_profiles::builders::ListLaunchProfilesFluentBuilder::set_studio_id):<br>required: **true**<br><p>The studio ID. </p><br>
/// - On success, responds with [`ListLaunchProfilesOutput`](crate::operation::list_launch_profiles::ListLaunchProfilesOutput) with field(s):
/// - [`launch_profiles(Option<Vec::<LaunchProfile>>)`](crate::operation::list_launch_profiles::ListLaunchProfilesOutput::launch_profiles): <p>A collection of launch profiles.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_launch_profiles::ListLaunchProfilesOutput::next_token): <p>The token for the next set of results, or null if there are no more results.</p>
/// - On failure, responds with [`SdkError<ListLaunchProfilesError>`](crate::operation::list_launch_profiles::ListLaunchProfilesError)
pub fn list_launch_profiles(&self) -> crate::operation::list_launch_profiles::builders::ListLaunchProfilesFluentBuilder {
crate::operation::list_launch_profiles::builders::ListLaunchProfilesFluentBuilder::new(self.handle.clone())
}
}