Module Values.ActivatePipelineInputSource

Contains the parameters for ActivatePipeline.

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

    The ID of the pipeline.

    *)
  2. parameterValues : ParameterValueList.t option;
    (*

    A list of parameter values to pass to the pipeline at activation.

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

    The date and time to resume the pipeline. By default, the pipeline resumes from the last completed execution.

    *)
}
Sourceval context_ : string
Sourceval make : ?parameterValues:??? -> ?startTimestamp:??? -> pipelineId:Id.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of FieldNameString.t ]) list ] list | `String of Id.t | `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