Module Values.RecommendationDetailHourlyMetricsSource

Contains the hourly metrics for the given recommendation over the lookback period.

Sourcetype nonrec t = {
  1. startTime : ZonedDateTime.t option;
  2. estimatedOnDemandCost : GenericString.t option;
    (*

    The remaining On-Demand cost estimated to not be covered by the recommended Savings Plan, over the length of the lookback period.

    *)
  3. currentCoverage : GenericString.t option;
    (*

    The current amount of Savings Plans eligible usage that the Savings Plan covered.

    *)
  4. estimatedCoverage : GenericString.t option;
    (*

    The estimated coverage amount based on the recommended Savings Plan.

    *)
  5. estimatedNewCommitmentUtilization : GenericString.t option;
    (*

    The estimated utilization for the recommended Savings Plan.

    *)
}
Sourceval make : ?startTime:??? -> ?estimatedOnDemandCost:??? -> ?currentCoverage:??? -> ?estimatedCoverage:??? -> ?estimatedNewCommitmentUtilization:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ZonedDateTime.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