Module Values.GetSavingsPlansUtilizationDetailsResponseSource

Retrieves attribute data along with aggregate utilization and savings data for a given time period. This doesn't support granular or grouped data (daily/monthly) in response. You can't retrieve data by dates in a single response similar to GetSavingsPlanUtilization, but you have the option to make multiple calls to GetSavingsPlanUtilizationDetails by providing individual dates. You can use GetDimensionValues in SAVINGS_PLANS to determine the possible dimension values. GetSavingsPlanUtilizationDetails internally groups data by SavingsPlansArn.

Sourcetype nonrec t = {
  1. savingsPlansUtilizationDetails : SavingsPlansUtilizationDetails.t option;
    (*

    Retrieves a single daily or monthly Savings Plans utilization rate and details for your account.

    *)
  2. total : SavingsPlansUtilizationAggregates.t option;
    (*

    The total Savings Plans utilization, regardless of time period.

    *)
  3. timePeriod : DateInterval.t option;
  4. nextToken : NextPageToken.t option;
    (*

    The token to retrieve the next set of results. Amazon Web Services provides the token when the response from a previous call has more results than the maximum page size.

    *)
}
Sourcetype nonrec error = [
  1. | `DataUnavailableException of DataUnavailableException.t
  2. | `InvalidNextTokenException of InvalidNextTokenException.t
  3. | `LimitExceededException of LimitExceededException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?savingsPlansUtilizationDetails:??? -> ?total:??? -> ?timePeriod:??? -> ?nextToken:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `DataUnavailableException of DataUnavailableException.t | `InvalidNextTokenException of InvalidNextTokenException.t | `LimitExceededException of LimitExceededException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `DataUnavailableException of DataUnavailableException.t | `InvalidNextTokenException of InvalidNextTokenException.t | `LimitExceededException of LimitExceededException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Map of ([> `String of AttributeType.t ] * [> `String of AttributeValue.t ]) list | `String of SavingsPlanArn.t | `Structure of (string * [> `String of GenericString.t ]) list ]) list ] list | `String of NextPageToken.t | `Structure of (string * [> `String of YearMonthDay.t | `Structure of (string * [> `String of GenericString.t ]) list ]) 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