Module Values.CancelHarvestJobRequestSource

Cancels an in-progress harvest job.

Sourcetype nonrec t = {
  1. channelGroupName : ResourceName.t;
    (*

    The name of the channel group containing the channel from which the harvest job is running.

    *)
  2. channelName : ResourceName.t;
    (*

    The name of the channel from which the harvest job is running.

    *)
  3. originEndpointName : ResourceName.t;
    (*

    The name of the origin endpoint that the harvest job is harvesting from. This cannot be changed after the harvest job is submitted.

    *)
  4. harvestJobName : ResourceName.t;
    (*

    The name of the harvest job to cancel. This name must be unique within the channel and cannot be changed after the harvest job is submitted.

    *)
  5. eTag : EntityTag.t option;
    (*

    The current Entity Tag (ETag) associated with the harvest job. Used for concurrency control.

    *)
}
Sourceval context_ : string
Sourceval make : ?eTag:??? -> channelGroupName:ResourceName.t -> channelName:ResourceName.t -> originEndpointName:ResourceName.t -> harvestJobName:ResourceName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ResourceName.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