Module Values.GetReportDefinitionResultSource

Retrieves the definition of a report already configured in AWS Application Cost Profiler.

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

    ID of the report retrieved.

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

    Description of the report.

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

    Cadence used to generate the report.

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

    Format of the generated report.

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

    Amazon Simple Storage Service (Amazon S3) location where the report is uploaded.

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

    Timestamp (milliseconds) when this report definition was created.

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

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

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ThrottlingException of ThrottlingException.t
  4. | `ValidationException of ValidationException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?reportId:??? -> ?reportDescription:??? -> ?reportFrequency:??? -> ?format:??? -> ?destinationS3Location:??? -> ?createdAt:??? -> ?lastUpdated:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `InternalServerException of InternalServerException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.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