Module Values.InsightSummarySource

The summarized description of the insight.

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

    The ID of the insight.

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

    The name of the insight.

    *)
  3. category : Category.t option;
    (*

    The category of the insight.

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

    The Kubernetes minor version associated with an insight if applicable.

    *)
  5. lastRefreshTime : Timestamp.t option;
    (*

    The time Amazon EKS last successfully completed a refresh of this insight check on the cluster.

    *)
  6. lastTransitionTime : Timestamp.t option;
    (*

    The time the status of the insight last changed.

    *)
  7. description : String_.t option;
    (*

    The description of the insight which includes alert criteria, remediation recommendation, and additional resources (contains Markdown).

    *)
  8. insightStatus : InsightStatus.t option;
    (*

    An object containing more detail on the status of the insight.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?category:??? -> ?kubernetesVersion:??? -> ?lastRefreshTime:??? -> ?lastTransitionTime:??? -> ?description:??? -> ?insightStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `Enum 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