Module Values.InsightSource

Represents an insight returned by the ListInsights operation. An insight is a notification about a domain event or recommendation that helps you optimize your Amazon OpenSearch Service domain.

Sourcetype nonrec t = {
  1. insightId : GUID.t option;
    (*

    The unique identifier of the insight.

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

    The display name of the insight.

    *)
  3. type_ : InsightType.t option;
    (*

    The type of the insight. Possible values are EVENT and RECOMMENDATION.

    *)
  4. priority : InsightPriorityLevel.t option;
    (*

    The priority level of the insight. Possible values are CRITICAL, HIGH, MEDIUM, and LOW.

    *)
  5. status : InsightStatus.t option;
    (*

    The current status of the insight. Possible values are ACTIVE, RESOLVED, and DISMISSED.

    *)
  6. creationTime : UpdateTimestamp.t option;
    (*

    The timestamp when the insight was created, in epoch milliseconds.

    *)
  7. updateTime : UpdateTimestamp.t option;
    (*

    The timestamp when the insight was last updated, in epoch milliseconds.

    *)
  8. isExperimental : Boolean.t option;
    (*

    Indicates whether the insight is experimental.

    *)
}
Sourceval make : ?insightId:??? -> ?displayName:??? -> ?type_:??? -> ?priority:??? -> ?status:??? -> ?creationTime:??? -> ?updateTime:??? -> ?isExperimental:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `String of GUID.t | `Timestamp of UpdateTimestamp.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