Module Values.StopIngestionJobRequestSource

Stops a currently running data ingestion job. You can send a StartIngestionJob request again to ingest the rest of your data when you are ready.

Sourcetype nonrec t = {
  1. knowledgeBaseId : Id.t;
    (*

    The unique identifier of the knowledge base for the data ingestion job you want to stop.

    *)
  2. dataSourceId : Id.t;
    (*

    The unique identifier of the data source for the data ingestion job you want to stop.

    *)
  3. ingestionJobId : Id.t;
    (*

    The unique identifier of the data ingestion job you want to stop.

    *)
}
Sourceval context_ : string
Sourceval make : knowledgeBaseId:Id.t -> dataSourceId:Id.t -> ingestionJobId:Id.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Id.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