Module Values_2.PipelineSummarySource

A summary of a pipeline.

Sourcetype nonrec t = {
  1. pipelineArn : Values_1.PipelineArn.t option;
    (*

    The Amazon Resource Name (ARN) of the pipeline.

    *)
  2. pipelineName : Values_1.PipelineName.t option;
    (*

    The name of the pipeline.

    *)
  3. pipelineDisplayName : Values_1.PipelineName.t option;
    (*

    The display name of the pipeline.

    *)
  4. pipelineDescription : Values_1.PipelineDescription.t option;
    (*

    The description of the pipeline.

    *)
  5. roleArn : Values_0.RoleArn.t option;
    (*

    The Amazon Resource Name (ARN) that the pipeline used to execute.

    *)
  6. creationTime : Values_0.Timestamp.t option;
    (*

    The creation time of the pipeline.

    *)
  7. lastModifiedTime : Values_0.Timestamp.t option;
    (*

    The time that the pipeline was last modified.

    *)
  8. lastExecutionTime : Values_0.Timestamp.t option;
    (*

    The last time that a pipeline execution began.

    *)
}
Sourceval make : ?pipelineArn:??? -> ?pipelineName:??? -> ?pipelineDisplayName:??? -> ?pipelineDescription:??? -> ?roleArn:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> ?lastExecutionTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_1.PipelineArn.t | `Timestamp of Values_0.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