aws-sdk-location 1.103.0

AWS SDK for Amazon Location Service
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`ListPlaceIndexes`](crate::operation::list_place_indexes::builders::ListPlaceIndexesFluentBuilder) operation.
    /// This operation supports pagination; See [`into_paginator()`](crate::operation::list_place_indexes::builders::ListPlaceIndexesFluentBuilder::into_paginator).
    ///
    /// - The fluent builder is configurable:
    ///   - [`max_results(i32)`](crate::operation::list_place_indexes::builders::ListPlaceIndexesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_place_indexes::builders::ListPlaceIndexesFluentBuilder::set_max_results):<br>required: **false**<br><p>An optional limit for the maximum number of results returned in a single call.</p> <p>Default value: <code>100</code></p><br>
    ///   - [`next_token(impl Into<String>)`](crate::operation::list_place_indexes::builders::ListPlaceIndexesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_place_indexes::builders::ListPlaceIndexesFluentBuilder::set_next_token):<br>required: **false**<br><p>The pagination token specifying which page of results to return in the response. If no token is provided, the default page is the first page.</p> <p>Default value: <code>null</code></p><br>
    /// - On success, responds with [`ListPlaceIndexesOutput`](crate::operation::list_place_indexes::ListPlaceIndexesOutput) with field(s):
    ///   - [`entries(Vec::<ListPlaceIndexesResponseEntry>)`](crate::operation::list_place_indexes::ListPlaceIndexesOutput::entries): <p>Lists the place index resources that exist in your Amazon Web Services account</p>
    ///   - [`next_token(Option<String>)`](crate::operation::list_place_indexes::ListPlaceIndexesOutput::next_token): <p>A pagination token indicating that there are additional pages available. You can use the token in a new request to fetch the next page of results.</p>
    /// - On failure, responds with [`SdkError<ListPlaceIndexesError>`](crate::operation::list_place_indexes::ListPlaceIndexesError)
    pub fn list_place_indexes(&self) -> crate::operation::list_place_indexes::builders::ListPlaceIndexesFluentBuilder {
        crate::operation::list_place_indexes::builders::ListPlaceIndexesFluentBuilder::new(self.handle.clone())
    }
}