Module Values.RecommendationReportDetailsSource

Contains detailed information about a recommendation report.

Sourcetype nonrec t = {
  1. completionTime : RecommendationReportTimeStamp.t option;
    (*

    The time that the recommendation report generation task completes.

    *)
  2. s3Bucket : String_.t option;
    (*

    The S3 bucket where the report file is located.

    *)
  3. s3Keys : S3Keys.t option;
    (*

    The Amazon S3 key name of the report file.

    *)
  4. startTime : RecommendationReportTimeStamp.t option;
    (*

    The time that the recommendation report generation task starts.

    *)
  5. status : RecommendationReportStatus.t option;
    (*

    The status of the recommendation report generation task.

    *)
  6. statusMessage : RecommendationReportStatusMessage.t option;
    (*

    The status message for recommendation report generation.

    *)
}
Sourceval make : ?completionTime:??? -> ?s3Bucket:??? -> ?s3Keys:??? -> ?startTime:??? -> ?status:??? -> ?statusMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of String_.t | `Timestamp of RecommendationReportTimeStamp.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