1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribePlaceIndex`](crate::operation::describe_place_index::builders::DescribePlaceIndexFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`index_name(impl Into<String>)`](crate::operation::describe_place_index::builders::DescribePlaceIndexFluentBuilder::index_name) / [`set_index_name(Option<String>)`](crate::operation::describe_place_index::builders::DescribePlaceIndexFluentBuilder::set_index_name):<br>required: **true**<br><p>The name of the place index resource.</p><br>
    /// - On success, responds with [`DescribePlaceIndexOutput`](crate::operation::describe_place_index::DescribePlaceIndexOutput) with field(s):
    ///   - [`index_name(String)`](crate::operation::describe_place_index::DescribePlaceIndexOutput::index_name): <p>The name of the place index resource being described.</p>
    ///   - [`index_arn(String)`](crate::operation::describe_place_index::DescribePlaceIndexOutput::index_arn): <p>The Amazon Resource Name (ARN) for the place index resource. Used to specify a resource across Amazon Web Services.</p> <ul>  <li>   <p>Format example: <code>arn:aws:geo:region:account-id:place-index/ExamplePlaceIndex</code></p></li> </ul>
    ///   - [`pricing_plan(Option<PricingPlan>)`](crate::operation::describe_place_index::DescribePlaceIndexOutput::pricing_plan): <p>No longer used. Always returns <code>RequestBasedUsage</code>.</p>
    ///   - [`description(String)`](crate::operation::describe_place_index::DescribePlaceIndexOutput::description): <p>The optional description for the place index resource.</p>
    ///   - [`create_time(DateTime)`](crate::operation::describe_place_index::DescribePlaceIndexOutput::create_time): <p>The timestamp for when the place index resource was created in <a href="https://www.iso.org/iso-8601-date-and-time-format.html">ISO 8601</a> format: <code>YYYY-MM-DDThh:mm:ss.sssZ</code>.</p>
    ///   - [`update_time(DateTime)`](crate::operation::describe_place_index::DescribePlaceIndexOutput::update_time): <p>The timestamp for when the place index resource was last updated in <a href="https://www.iso.org/iso-8601-date-and-time-format.html">ISO 8601</a> format: <code>YYYY-MM-DDThh:mm:ss.sssZ</code>.</p>
    ///   - [`data_source(String)`](crate::operation::describe_place_index::DescribePlaceIndexOutput::data_source): <p>The data provider of geospatial data. Values can be one of the following:</p> <ul>  <li>   <p><code>Esri</code></p></li>  <li>   <p><code>Grab</code></p></li>  <li>   <p><code>Here</code></p></li> </ul> <p>For more information about data providers, see <a href="https://docs.aws.amazon.com/location/latest/developerguide/what-is-data-provider.html">Amazon Location Service data providers</a>.</p>
    ///   - [`data_source_configuration(Option<DataSourceConfiguration>)`](crate::operation::describe_place_index::DescribePlaceIndexOutput::data_source_configuration): <p>The specified data storage option for requesting Places.</p>
    ///   - [`tags(Option<HashMap::<String, String>>)`](crate::operation::describe_place_index::DescribePlaceIndexOutput::tags): <p>Tags associated with place index resource.</p>
    /// - On failure, responds with [`SdkError<DescribePlaceIndexError>`](crate::operation::describe_place_index::DescribePlaceIndexError)
    pub fn describe_place_index(&self) -> crate::operation::describe_place_index::builders::DescribePlaceIndexFluentBuilder {
        crate::operation::describe_place_index::builders::DescribePlaceIndexFluentBuilder::new(self.handle.clone())
    }
}