Module Values_1.DescribePipelineResponseSource

Describes the details of a pipeline.

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

    The Amazon Resource Name (ARN) of the pipeline.

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

    The name of the pipeline.

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

    The display name of the pipeline.

    *)
  4. pipelineDefinition : PipelineDefinition.t option;
    (*

    The JSON pipeline definition.

    *)
  5. pipelineDescription : PipelineDescription.t option;
    (*

    The description of the pipeline.

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

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

    *)
  7. pipelineStatus : PipelineStatus.t option;
    (*

    The status of the pipeline execution.

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

    The time when the pipeline was created.

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

    The time when the pipeline was last modified.

    *)
  10. lastRunTime : Values_0.Timestamp.t option;
    (*

    The time when the pipeline was last run.

    *)
  11. createdBy : Values_0.UserContext.t option;
  12. lastModifiedBy : Values_0.UserContext.t option;
  13. parallelismConfiguration : ParallelismConfiguration.t option;
    (*

    Lists the parallelism configuration applied to the pipeline.

    *)
  14. pipelineVersionDisplayName : PipelineVersionName.t option;
    (*

    The display name of the pipeline version.

    *)
  15. pipelineVersionDescription : PipelineVersionDescription.t option;
    (*

    The description of the pipeline version.

    *)
}
Sourcetype nonrec error = [
  1. | `ResourceNotFound of Values_0.ResourceNotFound.t
  2. | `Unknown_operation_error of string * string option
]
Sourceval make : ?pipelineArn:??? -> ?pipelineName:??? -> ?pipelineDisplayName:??? -> ?pipelineDefinition:??? -> ?pipelineDescription:??? -> ?roleArn:??? -> ?pipelineStatus:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> ?lastRunTime:??? -> ?createdBy:??? -> ?lastModifiedBy:??? -> ?parallelismConfiguration:??? -> ?pipelineVersionDisplayName:??? -> ?pipelineVersionDescription:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ResourceNotFound of Values_0.ResourceNotFound.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ResourceNotFound of Values_0.ResourceNotFound.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PipelineArn.t | `Structure of (string * [> `Integer of MaxParallelExecutionSteps.t | `String of string | `Structure of (string * [> `String of string ]) list ]) list | `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