Module Values_2.StartPipelineExecutionRequestSource

Starts a pipeline execution.

Sourcetype nonrec t = {
  1. pipelineName : Values_1.PipelineNameOrArn.t;
    (*

    The name or Amazon Resource Name (ARN) of the pipeline.

    *)
  2. pipelineExecutionDisplayName : Values_1.PipelineExecutionName.t option;
    (*

    The display name of the pipeline execution.

    *)
  3. pipelineParameters : ParameterList.t option;
    (*

    Contains a list of pipeline parameters. This list can be empty.

    *)
  4. pipelineExecutionDescription : Values_1.PipelineExecutionDescription.t option;
    (*

    The description of the pipeline execution.

    *)
  5. clientRequestToken : Values_1.IdempotencyToken.t;
    (*

    A unique, case-sensitive identifier that you provide to ensure the idempotency of the operation. An idempotent operation completes no more than once.

    *)
  6. parallelismConfiguration : Values_1.ParallelismConfiguration.t option;
    (*

    This configuration, if specified, overrides the parallelism configuration of the parent pipeline for this specific run.

    *)
  7. selectiveExecutionConfig : Values_1.SelectiveExecutionConfig.t option;
    (*

    The selective execution configuration applied to the pipeline run.

    *)
  8. pipelineVersionId : Values_1.PipelineVersionId.t option;
    (*

    The ID of the pipeline version to start execution from.

    *)
  9. mlflowExperimentName : Values_1.MlflowExperimentEntityName.t option;
    (*

    The MLflow experiment name of the pipeline execution.

    *)
}
Sourceval context_ : string
Sourceval make : ?pipelineExecutionDisplayName:??? -> ?pipelineParameters:??? -> ?pipelineExecutionDescription:??? -> ?parallelismConfiguration:??? -> ?selectiveExecutionConfig:??? -> ?pipelineVersionId:??? -> ?mlflowExperimentName:??? -> pipelineName:Values_1.PipelineNameOrArn.t -> clientRequestToken:Values_1.IdempotencyToken.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of PipelineParameterName.t ]) list ] list | `Long of Values_1.PipelineVersionId.t | `String of Values_1.PipelineNameOrArn.t | `Structure of (string * [> `Integer of int | `List of [> `Structure of (string * [> `String of Values_0.String256.t ]) list ] list | `String of Values_0.PipelineExecutionArn.t ]) 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