Module Values.GetSavingsPlansCoverageRequestSource

Retrieves the Savings Plans covered for your account. This enables you to see how much of your cost is covered by a Savings Plan. An organization’s management account can see the coverage of the associated member accounts. This supports dimensions, cost categories, and nested expressions. For any time period, you can filter data for Savings Plans usage with the following dimensions: LINKED_ACCOUNT REGION SERVICE INSTANCE_FAMILY To determine valid values for a dimension, use the GetDimensionValues operation.

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

    The time period that you want the usage and costs for. The Start date must be within 13 months. The End date must be after the Start date, and before the current date. Future dates can't be used as an End date.

    *)
  2. groupBy : GroupDefinitions.t option;
    (*

    You can group the data using the attributes INSTANCE_FAMILY, REGION, or SERVICE.

    *)
  3. granularity : Granularity.t option;
    (*

    The granularity of the Amazon Web Services cost data for your Savings Plans. Granularity can't be set if GroupBy is set. The GetSavingsPlansCoverage operation supports only DAILY and MONTHLY granularities.

    *)
  4. filter : Expression.t option;
    (*

    Filters Savings Plans coverage data by dimensions. You can filter data for Savings Plans usage with the following dimensions: LINKED_ACCOUNT REGION SERVICE INSTANCE_FAMILY GetSavingsPlansCoverage uses the same Expression object as the other operations, but only AND is supported among each dimension. If there are multiple values for a dimension, they are OR'd together. Cost category is also supported.

    *)
  5. metrics : MetricNames.t option;
    (*

    The measurement that you want your Savings Plans coverage reported in. The only valid value is SpendCoveredBySavingsPlans.

    *)
  6. 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.

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

    The number of items to be returned in a response. The default is 20, with a minimum value of 1.

    *)
  8. sortBy : SortDefinition.t option;
    (*

    The value that you want to sort the data by. The following values are supported for Key: SpendCoveredBySavingsPlan OnDemandCost CoveragePercentage TotalCost InstanceFamily Region Service The supported values for SortOrder are ASCENDING and DESCENDING.

    *)
}
Sourceval context_ : string
Sourceval make : ?groupBy:??? -> ?granularity:??? -> ?filter:??? -> ?metrics:??? -> ?nextToken:??? -> ?maxResults:??? -> ?sortBy:??? -> timePeriod:DateInterval.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * Awso.Botodata.value) 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