Module Values.RecommendationSource

Recommendation information to help you remediate detected anomalous behavior that generated an insight.

Sourcetype nonrec t = {
  1. description : RecommendationDescription.t option;
    (*

    A description of the problem.

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

    The name of the recommendation.

    *)
  3. reason : RecommendationReason.t option;
    (*

    The reason DevOps Guru flagged the anomalous behavior as a problem.

    *)
  4. relatedEvents : RecommendationRelatedEvents.t option;
    (*

    Events that are related to the problem. Use these events to learn more about what's happening and to help address the issue.

    *)
  5. relatedAnomalies : RecommendationRelatedAnomalies.t option;
    (*

    Anomalies that are related to the problem. Use these Anomalies to learn more about what's happening and to help address the issue.

    *)
  6. category : RecommendationCategory.t option;
    (*

    The category type of the recommendation.

    *)
}
Sourceval make : ?description:??? -> ?link:??? -> ?name:??? -> ?reason:??? -> ?relatedEvents:??? -> ?relatedAnomalies:??? -> ?category:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of RecommendationRelatedCloudWatchMetricsSourceMetricName.t ]) list ] list | `String of RecommendationRelatedEventResourceName.t ]) list ] list | `String of RecommendationRelatedEventName.t ]) list ] list | `String of RecommendationDescription.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