Module Values.ReactiveInsightSource

Information about a reactive insight. This object is returned by ListInsights.

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

    The ID of a reactive insight.

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

    The name of a reactive insight.

    *)
  3. severity : InsightSeverity.t option;
    (*

    The severity of the insight. For more information, see Understanding insight severities in the Amazon DevOps Guru User Guide.

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

    The status of a reactive insight.

    *)
  5. insightTimeRange : InsightTimeRange.t option;
  6. resourceCollection : ResourceCollection.t option;
  7. ssmOpsItemId : SsmOpsItemId.t option;
    (*

    The ID of the Amazon Web Services System Manager OpsItem created for this insight. You must enable the creation of OpstItems insights before they are created for each insight.

    *)
  8. description : InsightDescription.t option;
    (*

    Describes the reactive insight.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?severity:??? -> ?status:??? -> ?insightTimeRange:??? -> ?resourceCollection:??? -> ?ssmOpsItemId:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of InsightId.t | `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `String of TagValue.t ] list | `String of AppBoundaryKey.t ]) list ] list | `Structure of (string * [> `List of [> `String of StackName.t ] list ]) list | `Timestamp of Timestamp.t ]) list ]) 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