Module Values.GetEstimatedCarbonEmissionsDimensionValuesRequestSource

Returns the possible dimension values available for a customer's account. We recommend using pagination to ensure that the operation returns quickly and successfully.

Sourcetype nonrec t = {
  1. timePeriod : TimePeriod.t;
    (*

    The date range for fetching the dimension values.

    *)
  2. dimensions : DimensionList.t;
    (*

    The dimensions available for grouping estimated carbon emissions.

    *)
  3. maxResults : MaxResults.t option;
    (*

    The maximum number of results to return in a single call. Default is 40.

    *)
  4. nextToken : NextToken.t option;
    (*

    The pagination token specifying which page of results to return in the response. If no token is provided, the default page is the first page.

    *)
}
Sourceval context_ : string
Sourceval make : ?maxResults:??? -> ?nextToken:??? -> timePeriod:TimePeriod.t -> dimensions:DimensionList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `List of [> `Enum of string ] list | `String of NextToken.t | `Structure of (string * [> `Timestamp of Timestamp.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