Module Values_2.PipelineSource

A SageMaker Model Building Pipeline instance.

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) of the role that created the pipeline.

    *)
  6. pipelineStatus : Values_1.PipelineStatus.t option;
    (*

    The status of the pipeline.

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

    The creation time of the pipeline.

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

    The time that the pipeline was last modified.

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

    The time when the pipeline was last run.

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

    The parallelism configuration applied to the pipeline.

    *)
  13. tags : Values_0.TagList.t option;
    (*

    A list of tags that apply to the pipeline.

    *)
}
Sourceval make : ?pipelineArn:??? -> ?pipelineName:??? -> ?pipelineDisplayName:??? -> ?pipelineDescription:??? -> ?roleArn:??? -> ?pipelineStatus:??? -> ?creationTime:??? -> ?lastModifiedTime:??? -> ?lastRunTime:??? -> ?createdBy:??? -> ?lastModifiedBy:??? -> ?parallelismConfiguration:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of Values_1.PipelineArn.t | `Structure of (string * [> `Integer of int | `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