Values.DescribeTrackerResponseSourceRetrieves the tracker resource details.
type nonrec t = {trackerName : ResourceName.t option;The name of the tracker resource.
*)trackerArn : Arn.t option;The Amazon Resource Name (ARN) for the tracker resource. Used when you need to specify a resource across all Amazon Web Services. Format example: arn:aws:geo:region:account-id:tracker/ExampleTracker
*)description : ResourceDescription.t option;The optional description for the tracker resource.
*)pricingPlan : PricingPlan.t option;Always returns RequestBasedUsage.
*)pricingPlanDataSource : String_.t option;No longer used. Always returns an empty string.
*)createTime : Timestamp.t option;The timestamp for when the tracker resource was created in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.
*)updateTime : Timestamp.t option;The timestamp for when the tracker resource was last updated in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sssZ.
*)kmsKeyId : KmsKeyId.t option;A key identifier for an Amazon Web Services KMS customer managed key assigned to the Amazon Location resource.
*)positionFiltering : PositionFiltering.t option;The position filtering method of the tracker resource.
*)eventBridgeEnabled : Boolean.t option;Whether UPDATE events from this tracker in EventBridge are enabled. If set to true these events will be sent to EventBridge.
*)kmsKeyEnableGeospatialQueries : Boolean.t option;Enables GeospatialQueries for a tracker that uses a Amazon Web Services KMS customer managed key. This parameter is only used if you are using a KMS customer managed key. If you wish to encrypt your data using your own KMS customer managed key, then the Bounding Polygon Queries feature will be disabled by default. This is because by using this feature, a representation of your device positions will not be encrypted using the your KMS managed key. The exact device position, however; is still encrypted using your managed key. You can choose to opt-in to the Bounding Polygon Quseries feature. This is done by setting the KmsKeyEnableGeospatialQueries parameter to true when creating or updating a Tracker.
*)}type nonrec error = [ | `AccessDeniedException of AccessDeniedException.t| `InternalServerException of InternalServerException.t| `ResourceNotFoundException of ResourceNotFoundException.t| `ThrottlingException of ThrottlingException.t| `ValidationException of ValidationException.t| `Unknown_operation_error of string * string option ]val 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 ]val 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 ]val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Enum of string
| `Map of
([> `String of TagKey.t ] * [> `String of TagValue.t ]) list
| `String of ResourceName.t
| `Timestamp of Timestamp.t ])
list ]