Module Values.PipelineSummarySource

Returns a summary of a pipeline.

Sourcetype nonrec t = {
  1. name : PipelineName.t option;
    (*

    The name of the pipeline.

    *)
  2. version : PipelineVersion.t option;
    (*

    The version number of the pipeline.

    *)
  3. pipelineType : PipelineType.t option;
    (*

    CodePipeline provides the following pipeline types, which differ in characteristics and price, so that you can tailor your pipeline features and cost to the needs of your applications. V1 type pipelines have a JSON structure that contains standard pipeline, stage, and action-level parameters. V2 type pipelines have the same structure as a V1 type, along with additional parameters for release safety and trigger configuration. Including V2 parameters, such as triggers on Git tags, in the pipeline JSON when creating or updating a pipeline will result in the pipeline having the V2 type of pipeline and the associated costs. For information about pricing for CodePipeline, see Pricing. For information about which type of pipeline to choose, see What type of pipeline is right for me?.

    *)
  4. executionMode : ExecutionMode.t option;
    (*

    The method that the pipeline will use to handle multiple executions. The default mode is SUPERSEDED.

    *)
  5. created : Timestamp.t option;
    (*

    The date and time the pipeline was created, in timestamp format.

    *)
  6. updated : Timestamp.t option;
    (*

    The date and time of the last update to the pipeline, in timestamp format.

    *)
}
Sourceval make : ?name:??? -> ?version:??? -> ?pipelineType:??? -> ?executionMode:??? -> ?created:??? -> ?updated:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of PipelineVersion.t | `String of PipelineName.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