Module Values.PipelineBlueprintSummarySource

A summary of an OpenSearch Ingestion blueprint.

Sourcetype nonrec t = {
  1. blueprintName : String_.t option;
    (*

    The name of the blueprint.

    *)
  2. displayName : String_.t option;
    (*

    The display name of the blueprint.

    *)
  3. displayDescription : String_.t option;
    (*

    A description of the blueprint.

    *)
  4. service : String_.t option;
    (*

    The name of the service that the blueprint is associated with.

    *)
  5. useCase : String_.t option;
    (*

    The use case that the blueprint relates to.

    *)
}
Sourceval make : ?blueprintName:??? -> ?displayName:??? -> ?displayDescription:??? -> ?service:??? -> ?useCase:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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