Module Values.SubmitFeedbackRequestSource

The structure representing the SubmitFeedbackRequest.

Sourcetype nonrec t = {
  1. anomalyInstanceId : AnomalyInstanceId.t;
    (*

    The universally unique identifier (UUID) of the AnomalyInstance object that is included in the analysis data.

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

    Optional feedback about this anomaly.

    *)
  3. profilingGroupName : ProfilingGroupName.t;
    (*

    The name of the profiling group that is associated with the analysis data.

    *)
  4. type_ : FeedbackType.t;
    (*

    The feedback tpye. Thee are two valid values, Positive and Negative.

    *)
}
Sourceval context_ : string
Sourceval make : ?comment:??? -> anomalyInstanceId:AnomalyInstanceId.t -> profilingGroupName:ProfilingGroupName.t -> type_:FeedbackType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AnomalyInstanceId.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