Values.GetJobResponseSourceGetJob retrieves detailed information about a specific job, including its current status, configuration, and error information if the job failed. For more information, see Job concepts in the Amazon Location Service Developer Guide.
type nonrec t = {action : JobAction.t option;Action performed by the job.
*)actionOptions : JobActionOptions.t option;Additional options for configuring job action parameters.
*)createdAt : Timestamp.t option;Job creation time in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sss.
*)endedAt : Timestamp.t option;Job completion time in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sss. Only returned for jobs in a terminal status: Completed | Failed | Cancelled.
*)error : JobError.t option;Error information if the job failed.
*)executionRoleArn : IamRoleArn.t option;IAM role used for permissions when running the job.
*)inputOptions : JobInputOptions.t option;Input configuration.
*)jobArn : GeoArn.t option;Amazon Resource Name (ARN) of the specified job.
*)jobId : JobId.t option;Unique job identifier.
*)name : ResourceName.t option;Job name (if provided during creation).
*)outputOptions : JobOutputOptions.t option;Output configuration.
*)status : JobStatus.t option;Current job status.
*)updatedAt : Timestamp.t option;Last update time in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sss.
*)}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
* [> `Enum of string
| `Map of
([> `String of TagKey.t ] * [> `String of TagValue.t ]) list
| `String of IamRoleArn.t
| `Structure of
(string
* [> `Enum of string
| `List of [> `String of JobErrorMessage.t ] list
| `String of JobInputLocation.t
| `Structure of
(string * [> `List of [> `Enum of string ] list ]) list ])
list
| `Timestamp of Timestamp.t ])
list ]