1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListGraphqlApis`](crate::operation::list_graphql_apis::builders::ListGraphqlApisFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`next_token(impl Into<String>)`](crate::operation::list_graphql_apis::builders::ListGraphqlApisFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_graphql_apis::builders::ListGraphqlApisFluentBuilder::set_next_token): <p>An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.</p>
/// - [`max_results(i32)`](crate::operation::list_graphql_apis::builders::ListGraphqlApisFluentBuilder::max_results) / [`set_max_results(i32)`](crate::operation::list_graphql_apis::builders::ListGraphqlApisFluentBuilder::set_max_results): <p>The maximum number of results that you want the request to return.</p>
/// - On success, responds with [`ListGraphqlApisOutput`](crate::operation::list_graphql_apis::ListGraphqlApisOutput) with field(s):
/// - [`graphql_apis(Option<Vec<GraphqlApi>>)`](crate::operation::list_graphql_apis::ListGraphqlApisOutput::graphql_apis): <p>The <code>GraphqlApi</code> objects.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_graphql_apis::ListGraphqlApisOutput::next_token): <p>An identifier to pass in the next request to this operation to return the next set of items in the list.</p>
/// - On failure, responds with [`SdkError<ListGraphqlApisError>`](crate::operation::list_graphql_apis::ListGraphqlApisError)
pub fn list_graphql_apis(
&self,
) -> crate::operation::list_graphql_apis::builders::ListGraphqlApisFluentBuilder {
crate::operation::list_graphql_apis::builders::ListGraphqlApisFluentBuilder::new(
self.handle.clone(),
)
}
}