Module Values.PutReportDefinitionRequestSource

Creates the report definition for a report in Application Cost Profiler.

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

    Required. ID of the report. You can choose any valid string matching the pattern for the ID.

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

    Required. Description of the report.

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

    Required. The cadence to generate the report.

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

    Required. The format to use for the generated report.

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

    Required. Amazon Simple Storage Service (Amazon S3) location where Application Cost Profiler uploads the report.

    *)
}
Sourceval context_ : string
Sourceval make : reportId:ReportId.t -> reportDescription:ReportDescription.t -> reportFrequency:ReportFrequency.t -> format:Format_.t -> destinationS3Location:S3Location.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ReportId.t | `Structure of (string * [> `String of S3Bucket.t ]) list ]) 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