Module Values.ProactiveInsightSource

Details about a proactive insight. This object is returned by ListInsights.

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

    The ID of the proactive insight.

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

    The name of the proactive 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 the proactive insight.

    *)
  5. insightTimeRange : InsightTimeRange.t option;
  6. predictionTimeRange : PredictionTimeRange.t option;
  7. resourceCollection : ResourceCollection.t option;
  8. 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.

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

    Describes the proactive insight.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?severity:??? -> ?status:??? -> ?insightTimeRange:??? -> ?predictionTimeRange:??? -> ?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