Module Values.GetLoaderJobStatusOutputSource

Gets status information about a specified load job. Neptune keeps track of the most recent 1,024 bulk load jobs, and stores the last 10,000 error details per job. See Neptune Loader Get-Status API for more information. When invoking this operation in a Neptune cluster that has IAM authentication enabled, the IAM user or role making the request must have a policy attached that allows the neptune-db:GetLoaderJobStatus IAM action in that cluster..

Sourcetype nonrec t = {
  1. status : String_.t option;
    (*

    The HTTP response code for the request.

    *)
  2. payload : Document.t option;
    (*

    Status information about the load job, in a layout that could look like this:

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `BulkLoadIdNotFoundException of BulkLoadIdNotFoundException.t
  3. | `ClientTimeoutException of ClientTimeoutException.t
  4. | `ConstraintViolationException of ConstraintViolationException.t
  5. | `IllegalArgumentException of IllegalArgumentException.t
  6. | `InternalFailureException of InternalFailureException.t
  7. | `InvalidArgumentException of InvalidArgumentException.t
  8. | `InvalidParameterException of InvalidParameterException.t
  9. | `LoadUrlAccessDeniedException of LoadUrlAccessDeniedException.t
  10. | `MissingParameterException of MissingParameterException.t
  11. | `PreconditionsFailedException of PreconditionsFailedException.t
  12. | `TooManyRequestsException of TooManyRequestsException.t
  13. | `UnsupportedOperationException of UnsupportedOperationException.t
  14. | `Unknown_operation_error of string * string option
]
Sourceval make : ?status:??? -> ?payload:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of BadRequestException.t | `BulkLoadIdNotFoundException of BulkLoadIdNotFoundException.t | `ClientTimeoutException of ClientTimeoutException.t | `ConstraintViolationException of ConstraintViolationException.t | `IllegalArgumentException of IllegalArgumentException.t | `InternalFailureException of InternalFailureException.t | `InvalidArgumentException of InvalidArgumentException.t | `InvalidParameterException of InvalidParameterException.t | `LoadUrlAccessDeniedException of LoadUrlAccessDeniedException.t | `MissingParameterException of MissingParameterException.t | `PreconditionsFailedException of PreconditionsFailedException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option | `UnsupportedOperationException of UnsupportedOperationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of BadRequestException.t | `BulkLoadIdNotFoundException of BulkLoadIdNotFoundException.t | `ClientTimeoutException of ClientTimeoutException.t | `ConstraintViolationException of ConstraintViolationException.t | `IllegalArgumentException of IllegalArgumentException.t | `InternalFailureException of InternalFailureException.t | `InvalidArgumentException of InvalidArgumentException.t | `InvalidParameterException of InvalidParameterException.t | `LoadUrlAccessDeniedException of LoadUrlAccessDeniedException.t | `MissingParameterException of MissingParameterException.t | `PreconditionsFailedException of PreconditionsFailedException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option | `UnsupportedOperationException of UnsupportedOperationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Structure of 'a 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