Module Values.GenerationSummarySource

The summary of the Savings Plans recommendation generation.

Sourcetype nonrec t = {
  1. recommendationId : RecommendationId.t option;
    (*

    Indicates the ID for this specific recommendation.

    *)
  2. generationStatus : GenerationStatus.t option;
    (*

    Indicates whether the recommendation generation succeeded, is processing, or failed.

    *)
  3. generationStartedTime : ZonedDateTime.t option;
    (*

    Indicates the start time of the recommendation generation.

    *)
  4. generationCompletionTime : ZonedDateTime.t option;
    (*

    Indicates the completion time of the recommendation generation.

    *)
  5. estimatedCompletionTime : ZonedDateTime.t option;
    (*

    Indicates the estimated time for when the recommendation generation will complete.

    *)
}
Sourceval make : ?recommendationId:??? -> ?generationStatus:??? -> ?generationStartedTime:??? -> ?generationCompletionTime:??? -> ?estimatedCompletionTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of RecommendationId.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