Module Values.GetLoaderJobStatusInputSource

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. loadId : String_.t;
    (*

    The load ID of the load job to get the status of.

    *)
  2. details : Boolean.t option;
    (*

    Flag indicating whether or not to include details beyond the overall status (TRUE or FALSE; the default is FALSE).

    *)
  3. errors : Boolean.t option;
    (*

    Flag indicating whether or not to include a list of errors encountered (TRUE or FALSE; the default is FALSE). The list of errors is paged. The page and errorsPerPage parameters allow you to page through all the errors.

    *)
  4. page : PositiveInteger.t option;
    (*

    The error page number (a positive integer; the default is 1). Only valid when the errors parameter is set to TRUE.

    *)
  5. errorsPerPage : PositiveInteger.t option;
    (*

    The number of errors returned in each page (a positive integer; the default is 10). Only valid when the errors parameter set to TRUE.

    *)
}
Sourceval context_ : string
Sourceval make : ?details:??? -> ?errors:??? -> ?page:??? -> ?errorsPerPage:??? -> loadId:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of PositiveInteger.t | `String of String_.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