aws_sdk_devicefarm/client/list_test_grid_projects.rs
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListTestGridProjects`](crate::operation::list_test_grid_projects::builders::ListTestGridProjectsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_test_grid_projects::builders::ListTestGridProjectsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`max_result(i32)`](crate::operation::list_test_grid_projects::builders::ListTestGridProjectsFluentBuilder::max_result) / [`set_max_result(Option<i32>)`](crate::operation::list_test_grid_projects::builders::ListTestGridProjectsFluentBuilder::set_max_result):<br>required: **false**<br><p>Return no more than this number of results.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_test_grid_projects::builders::ListTestGridProjectsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_test_grid_projects::builders::ListTestGridProjectsFluentBuilder::set_next_token):<br>required: **false**<br><p>From a response, used to continue a paginated listing.</p><br>
/// - On success, responds with [`ListTestGridProjectsOutput`](crate::operation::list_test_grid_projects::ListTestGridProjectsOutput) with field(s):
/// - [`test_grid_projects(Option<Vec::<TestGridProject>>)`](crate::operation::list_test_grid_projects::ListTestGridProjectsOutput::test_grid_projects): <p>The list of TestGridProjects, based on a <code>ListTestGridProjectsRequest</code>.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_test_grid_projects::ListTestGridProjectsOutput::next_token): <p>Used for pagination. Pass into <code>ListTestGridProjects</code> to get more results in a paginated request.</p>
/// - On failure, responds with [`SdkError<ListTestGridProjectsError>`](crate::operation::list_test_grid_projects::ListTestGridProjectsError)
pub fn list_test_grid_projects(&self) -> crate::operation::list_test_grid_projects::builders::ListTestGridProjectsFluentBuilder {
crate::operation::list_test_grid_projects::builders::ListTestGridProjectsFluentBuilder::new(self.handle.clone())
}
}