Module Values.ReactiveInsightSummarySource

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

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

    The ID of a reactive summary.

    *)
  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. serviceCollection : ServiceCollection.t option;
    (*

    A collection of the names of Amazon Web Services services.

    *)
  8. associatedResourceArns : AssociatedResourceArns.t option;
    (*

    The Amazon Resource Names (ARNs) of the Amazon Web Services resources that generated this insight.

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