Module Values.GetPositionResponseSource

Get the position information for a given resource. This action is no longer supported. Calls to retrieve the position information should use the GetResourcePosition API operation instead.

Sourcetype nonrec t = {
  1. position : PositionCoordinate.t option;
    (*

    The position information of the resource.

    *)
  2. accuracy : Accuracy.t option;
    (*

    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.

    *)
  3. solverType : PositionSolverType.t option;
    (*

    The type of solver used to identify the position of the resource.

    *)
  4. solverProvider : PositionSolverProvider.t option;
    (*

    The vendor of the positioning solver.

    *)
  5. solverVersion : PositionSolverVersion.t option;
    (*

    The version of the positioning solver.

    *)
  6. timestamp : ISODateTimeString.t option;
    (*

    The timestamp at which the device's position was determined.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?position:??? -> ?accuracy:??? -> ?solverType:??? -> ?solverProvider:??? -> ?solverVersion:??? -> ?timestamp:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Float of PositionCoordinateValue.t ] list | `String of PositionSolverVersion.t | `Structure of (string * [> `Float of HorizontalAccuracy.t ]) list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t