1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetPosition`](crate::operation::get_position::builders::GetPositionFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`resource_identifier(impl Into<String>)`](crate::operation::get_position::builders::GetPositionFluentBuilder::resource_identifier) / [`set_resource_identifier(Option<String>)`](crate::operation::get_position::builders::GetPositionFluentBuilder::set_resource_identifier):<br>required: **true**<br><p>Resource identifier used to retrieve the position information.</p><br>
    ///   - [`resource_type(PositionResourceType)`](crate::operation::get_position::builders::GetPositionFluentBuilder::resource_type) / [`set_resource_type(Option<PositionResourceType>)`](crate::operation::get_position::builders::GetPositionFluentBuilder::set_resource_type):<br>required: **true**<br><p>Resource type of the resource for which position information is retrieved.</p><br>
    /// - On success, responds with [`GetPositionOutput`](crate::operation::get_position::GetPositionOutput) with field(s):
    ///   - [`position(Option<Vec::<f32>>)`](crate::operation::get_position::GetPositionOutput::position): <p>The position information of the resource.</p>
    ///   - [`accuracy(Option<Accuracy>)`](crate::operation::get_position::GetPositionOutput::accuracy): <p>The accuracy of the estimated position in meters. An empty value indicates that no position data is available. A value of ‘0.0’ value indicates that position data is available. This data corresponds to the position information that you specified instead of the position computed by solver.</p>
    ///   - [`solver_type(Option<PositionSolverType>)`](crate::operation::get_position::GetPositionOutput::solver_type): <p>The type of solver used to identify the position of the resource.</p>
    ///   - [`solver_provider(Option<PositionSolverProvider>)`](crate::operation::get_position::GetPositionOutput::solver_provider): <p>The vendor of the positioning solver.</p>
    ///   - [`solver_version(Option<String>)`](crate::operation::get_position::GetPositionOutput::solver_version): <p>The version of the positioning solver.</p>
    ///   - [`timestamp(Option<String>)`](crate::operation::get_position::GetPositionOutput::timestamp): <p>The timestamp at which the device's position was determined.</p>
    /// - On failure, responds with [`SdkError<GetPositionError>`](crate::operation::get_position::GetPositionError)
    #[deprecated(note = "This operation is no longer supported.")]
    pub fn get_position(&self) -> crate::operation::get_position::builders::GetPositionFluentBuilder {
        crate::operation::get_position::builders::GetPositionFluentBuilder::new(self.handle.clone())
    }
}