Module Values.ReservationPurchaseRecommendationMetadataSource

Information about a recommendation, such as the timestamp for when Amazon Web Services made a specific recommendation.

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

    The ID for the recommendation.

    *)
  2. generationTimestamp : GenericString.t option;
    (*

    The timestamp for when Amazon Web Services made the recommendation.

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

    Additional metadata that might be applicable to the recommendation.

    *)
}
Sourceval make : ?recommendationId:??? -> ?generationTimestamp:??? -> ?additionalMetadata:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of GenericString.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