1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeTracker`](crate::operation::describe_tracker::builders::DescribeTrackerFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`tracker_name(impl ::std::convert::Into<String>)`](crate::operation::describe_tracker::builders::DescribeTrackerFluentBuilder::tracker_name) / [`set_tracker_name(Option<String>)`](crate::operation::describe_tracker::builders::DescribeTrackerFluentBuilder::set_tracker_name): <p>The name of the tracker resource.</p>
    /// - On success, responds with [`DescribeTrackerOutput`](crate::operation::describe_tracker::DescribeTrackerOutput) with field(s):
    ///   - [`tracker_name(Option<String>)`](crate::operation::describe_tracker::DescribeTrackerOutput::tracker_name): <p>The name of the tracker resource.</p>
    ///   - [`tracker_arn(Option<String>)`](crate::operation::describe_tracker::DescribeTrackerOutput::tracker_arn): <p>The Amazon Resource Name (ARN) for the tracker resource. Used when you need to specify a resource across all Amazon Web Services.</p>  <ul>   <li> <p>Format example: <code>arn:aws:geo:region:account-id:tracker/ExampleTracker</code> </p> </li>  </ul>
    ///   - [`description(Option<String>)`](crate::operation::describe_tracker::DescribeTrackerOutput::description): <p>The optional description for the tracker resource.</p>
    ///   - [`pricing_plan(Option<PricingPlan>)`](crate::operation::describe_tracker::DescribeTrackerOutput::pricing_plan): <p>Always returns <code>RequestBasedUsage</code>.</p>
    ///   - [`pricing_plan_data_source(Option<String>)`](crate::operation::describe_tracker::DescribeTrackerOutput::pricing_plan_data_source): <p>No longer used. Always returns an empty string.</p>
    ///   - [`tags(Option<HashMap<String, String>>)`](crate::operation::describe_tracker::DescribeTrackerOutput::tags): <p>The tags associated with the tracker resource.</p>
    ///   - [`create_time(Option<DateTime>)`](crate::operation::describe_tracker::DescribeTrackerOutput::create_time): <p>The timestamp for when the tracker 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(Option<DateTime>)`](crate::operation::describe_tracker::DescribeTrackerOutput::update_time): <p>The timestamp for when the tracker 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>
    ///   - [`kms_key_id(Option<String>)`](crate::operation::describe_tracker::DescribeTrackerOutput::kms_key_id): <p>A key identifier for an <a href="https://docs.aws.amazon.com/kms/latest/developerguide/create-keys.html">Amazon Web Services KMS customer managed key</a> assigned to the Amazon Location resource.</p>
    ///   - [`position_filtering(Option<PositionFiltering>)`](crate::operation::describe_tracker::DescribeTrackerOutput::position_filtering): <p>The position filtering method of the tracker resource.</p>
    /// - On failure, responds with [`SdkError<DescribeTrackerError>`](crate::operation::describe_tracker::DescribeTrackerError)
    pub fn describe_tracker(
        &self,
    ) -> crate::operation::describe_tracker::builders::DescribeTrackerFluentBuilder {
        crate::operation::describe_tracker::builders::DescribeTrackerFluentBuilder::new(
            self.handle.clone(),
        )
    }
}