Module Values.GetCostEstimateRequestSource

Retrieves information about the cost estimate for a specified resource. A cost estimate will not generate for a resource that has been deleted.

Sourcetype nonrec t = {
  1. resourceName : ResourceName.t;
    (*

    The resource name.

    *)
  2. startTime : IsoDate.t;
    (*

    The cost estimate start time. Constraints: Specified in Coordinated Universal Time (UTC). Specified in the Unix time format. For example, if you want to use a start time of October 1, 2018, at 8 PM UTC, specify 1538424000 as the start time. You can convert a human-friendly time to Unix time format using a converter like Epoch converter.

    *)
  3. endTime : IsoDate.t;
    (*

    The cost estimate end time. Constraints: Specified in Coordinated Universal Time (UTC). Specified in the Unix time format. For example, if you want to use an end time of October 1, 2018, at 9 PM UTC, specify 1538427600 as the end time. You can convert a human-friendly time to Unix time format using a converter like Epoch converter.

    *)
}
Sourceval context_ : string
Sourceval make : resourceName:ResourceName.t -> startTime:IsoDate.t -> endTime:IsoDate.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ResourceName.t | `Timestamp of IsoDate.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