Module Values.SavingsPlansUtilizationDetailSource

A single daily or monthly Savings Plans utilization rate and details for your account. A management account in an organization have access to member accounts. You can use GetDimensionValues to determine the possible dimension values.

Sourcetype nonrec t = {
  1. savingsPlanArn : SavingsPlanArn.t option;
    (*

    The unique Amazon Resource Name (ARN) for a particular Savings Plan.

    *)
  2. attributes : Attributes.t option;
    (*

    The attribute that applies to a specific Dimension.

    *)
  3. utilization : SavingsPlansUtilization.t option;
    (*

    A ratio of your effectiveness of using existing Savings Plans to apply to workloads that are Savings Plans eligible.

    *)
  4. savings : SavingsPlansSavings.t option;
    (*

    The amount saved by using existing Savings Plans. Savings returns both net savings from savings plans and also the onDemandCostEquivalent of the Savings Plans when considering the utilization rate.

    *)
  5. amortizedCommitment : SavingsPlansAmortizedCommitment.t option;
    (*

    The total amortized commitment for a Savings Plans. Includes the sum of the upfront and recurring Savings Plans fees.

    *)
}
Sourceval make : ?savingsPlanArn:??? -> ?attributes:??? -> ?utilization:??? -> ?savings:??? -> ?amortizedCommitment:??? -> unit -> t
Sourceval to_value : t -> [> `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 ]
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