Module Values.AnalysisReportSource

Retrieves the summary of the performance analysis report created for a time period.

Sourcetype nonrec t = {
  1. analysisReportId : AnalysisReportId.t option;
    (*

    The name of the analysis report.

    *)
  2. identifier : IdentifierString.t option;
    (*

    The unique identifier of the analysis report.

    *)
  3. serviceType : ServiceType.t option;
    (*

    List the tags for the Amazon Web Services service for which Performance Insights returns metrics. Valid values are as follows: RDS DOCDB

    *)
  4. createTime : ISOTimestamp.t option;
    (*

    The time you created the analysis report.

    *)
  5. startTime : ISOTimestamp.t option;
    (*

    The analysis start time in the report.

    *)
  6. endTime : ISOTimestamp.t option;
    (*

    The analysis end time in the report.

    *)
  7. status : AnalysisStatus.t option;
    (*

    The status of the created analysis report.

    *)
  8. insights : InsightList.t option;
    (*

    The list of identified insights in the analysis report.

    *)
}
Sourceval make : ?analysisReportId:??? -> ?identifier:??? -> ?serviceType:??? -> ?createTime:??? -> ?startTime:??? -> ?endTime:??? -> ?status:??? -> ?insights:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * Awso.Botodata.value) 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