Module Values.ReportDefinitionSource

The configuration of a report in AWS Application Cost Profiler.

Sourcetype nonrec t = {
  1. reportId : ReportId.t option;
    (*

    The ID of the report.

    *)
  2. reportDescription : ReportDescription.t option;
    (*

    Description of the report

    *)
  3. reportFrequency : ReportFrequency.t option;
    (*

    The cadence at which the report is generated.

    *)
  4. format : Format_.t option;
    (*

    The format used for the generated reports.

    *)
  5. destinationS3Location : S3Location.t option;
    (*

    The location in Amazon Simple Storage Service (Amazon S3) the reports should be saved to.

    *)
  6. createdAt : Timestamp.t option;
    (*

    Timestamp (milliseconds) when this report definition was created.

    *)
  7. lastUpdatedAt : Timestamp.t option;
    (*

    Timestamp (milliseconds) when this report definition was last updated.

    *)
}
Sourceval make : ?reportId:??? -> ?reportDescription:??? -> ?reportFrequency:??? -> ?format:??? -> ?destinationS3Location:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ReportId.t | `Structure of (string * [> `String of S3Bucket.t ]) list | `Timestamp of Timestamp.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