Values.InsightSourceRepresents 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.
type nonrec t = {insightId : GUID.t option;The unique identifier of the insight.
*)displayName : String_.t option;The display name of the insight.
*)type_ : InsightType.t option;The type of the insight. Possible values are EVENT and RECOMMENDATION.
*)priority : InsightPriorityLevel.t option;The priority level of the insight. Possible values are CRITICAL, HIGH, MEDIUM, and LOW.
*)status : InsightStatus.t option;The current status of the insight. Possible values are ACTIVE, RESOLVED, and DISMISSED.
*)creationTime : UpdateTimestamp.t option;The timestamp when the insight was created, in epoch milliseconds.
*)updateTime : UpdateTimestamp.t option;The timestamp when the insight was last updated, in epoch milliseconds.
*)isExperimental : Boolean.t option;Indicates whether the insight is experimental.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Enum of string
| `String of GUID.t
| `Timestamp of UpdateTimestamp.t ])
list ]