Module Values.GetRecommendationsResponseSource

The structure representing the GetRecommendationsResponse.

Sourcetype nonrec t = {
  1. anomalies : Anomalies.t option;
    (*

    The list of anomalies that the analysis has found for this profile.

    *)
  2. profileEndTime : Timestamp.t option;
    (*

    The end time of the profile the analysis data is about. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.

    *)
  3. profileStartTime : Timestamp.t option;
    (*

    The start time of the profile the analysis data is about. This is specified using the ISO 8601 format. For example, 2020-06-01T13:15:02.001Z represents 1 millisecond past June 1, 2020 1:15:02 PM UTC.

    *)
  4. profilingGroupName : ProfilingGroupName.t option;
    (*

    The name of the profiling group the analysis data is about.

    *)
  5. recommendations : Recommendations.t option;
    (*

    The list of recommendations that the analysis found for this profile.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalServerException of InternalServerException.t
  2. | `ResourceNotFoundException of ResourceNotFoundException.t
  3. | `ThrottlingException of ThrottlingException.t
  4. | `ValidationException of ValidationException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?anomalies:??? -> ?profileEndTime:??? -> ?profileStartTime:??? -> ?profilingGroupName:??? -> ?recommendations:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Double of Double.t | `Integer of Integer.t | `List of [> `Structure of (string * [> `Double of Double.t | `Integer of Integer.t | `String of String_.t | `Structure of (string * [> `Enum of string ]) list | `Timestamp of Timestamp.t ]) list ] list | `String of String_.t | `Structure of (string * [> `Double of Percentage.t | `Enum of string | `List of [> `List of [> `String of String_.t ] list | `String of String_.t ] list | `String of String_.t ]) list | `Timestamp of Timestamp.t ]) list ] list | `String of ProfilingGroupName.t | `Timestamp of Timestamp.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