Module Values.PipelineSummarySource

Summary information for an OpenSearch Ingestion pipeline.

Sourcetype nonrec t = {
  1. status : PipelineStatus.t option;
    (*

    The current status of the pipeline.

    *)
  2. statusReason : PipelineStatusReason.t option;
  3. pipelineName : PipelineName.t option;
    (*

    The name of the pipeline.

    *)
  4. pipelineArn : PipelineArn.t option;
    (*

    The Amazon Resource Name (ARN) of the pipeline.

    *)
  5. minUnits : PipelineUnits.t option;
    (*

    The minimum pipeline capacity, in Ingestion Compute Units (ICUs).

    *)
  6. maxUnits : PipelineUnits.t option;
    (*

    The maximum pipeline capacity, in Ingestion Compute Units (ICUs).

    *)
  7. createdAt : Timestamp.t option;
    (*

    The date and time when the pipeline was created.

    *)
  8. lastUpdatedAt : Timestamp.t option;
    (*

    The date and time when the pipeline was last updated.

    *)
  9. destinations : PipelineDestinationList.t option;
    (*

    A list of destinations to which the pipeline writes data.

    *)
  10. tags : TagList.t option;
    (*

    A list of tags associated with the given pipeline.

    *)
}
Sourceval make : ?status:??? -> ?statusReason:??? -> ?pipelineName:??? -> ?pipelineArn:??? -> ?minUnits:??? -> ?maxUnits:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> ?destinations:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of PipelineUnits.t | `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of PipelineName.t | `Structure of (string * [> `String of String_.t ]) list | `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