Module Values.GetJobResponseSource

GetJob 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.

Sourcetype nonrec t = {
  1. action : JobAction.t option;
    (*

    Action performed by the job.

    *)
  2. actionOptions : JobActionOptions.t option;
    (*

    Additional options for configuring job action parameters.

    *)
  3. createdAt : Timestamp.t option;
    (*

    Job creation time in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sss.

    *)
  4. 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.

    *)
  5. error : JobError.t option;
    (*

    Error information if the job failed.

    *)
  6. executionRoleArn : IamRoleArn.t option;
    (*

    IAM role used for permissions when running the job.

    *)
  7. inputOptions : JobInputOptions.t option;
    (*

    Input configuration.

    *)
  8. jobArn : GeoArn.t option;
    (*

    Amazon Resource Name (ARN) of the specified job.

    *)
  9. jobId : JobId.t option;
    (*

    Unique job identifier.

    *)
  10. name : ResourceName.t option;
    (*

    Job name (if provided during creation).

    *)
  11. outputOptions : JobOutputOptions.t option;
    (*

    Output configuration.

    *)
  12. status : JobStatus.t option;
    (*

    Current job status.

    *)
  13. updatedAt : Timestamp.t option;
    (*

    Last update time in ISO 8601 format: YYYY-MM-DDThh:mm:ss.sss.

    *)
  14. tags : TagMap.t option;
    (*

    Tags and corresponding values associated with the specified job.

    *)
}
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 : ?action:??? -> ?actionOptions:??? -> ?createdAt:??? -> ?endedAt:??? -> ?error:??? -> ?executionRoleArn:??? -> ?inputOptions:??? -> ?jobArn:??? -> ?jobId:??? -> ?name:??? -> ?outputOptions:??? -> ?status:??? -> ?updatedAt:??? -> ?tags:??? -> 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 | `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 ]
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