Module Values.GetConsolidatedReportInputSource

Get a consolidated report of your workloads. You can optionally choose to include workloads that have been shared with you.

Sourcetype nonrec t = {
  1. format : ReportFormat.t;
    (*

    The format of the consolidated report. For PDF, Base64String is returned. For JSON, Metrics is returned.

    *)
  2. includeSharedResources : IncludeSharedResources.t option;
    (*

    Set to true to have shared resources included in the report.

    *)
  3. nextToken : NextToken.t option;
  4. maxResults : GetConsolidatedReportMaxResults.t option;
    (*

    The maximum number of results to return for this request.

    *)
}
Sourceval context_ : string
Sourceval make : ?includeSharedResources:??? -> ?nextToken:??? -> ?maxResults:??? -> format:ReportFormat.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of IncludeSharedResources.t | `Enum of string | `Integer of GetConsolidatedReportMaxResults.t | `String of NextToken.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