Module Values.AccessBudgetSource

An access budget that defines consumption limits for a specific resource within defined time periods.

Sourcetype nonrec t = {
  1. resourceArn : BudgetedResourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the resource that this access budget applies to.

    *)
  2. details : AccessBudgetDetailsList.t option;
    (*

    A list of budget details for this resource. Contains active budget periods that apply to the resource.

    *)
  3. aggregateRemainingBudget : Budget.t option;
    (*

    The total remaining budget across all active budget periods for this resource.

    *)
}
Sourceval make : ?resourceArn:??? -> ?details:??? -> ?aggregateRemainingBudget:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Budget.t | `List of [> `Structure of (string * [> `Enum of string | `Integer of Budget.t | `Timestamp of SyntheticTimestamp_date_time.t ]) list ] list | `String of BudgetedResourceArn.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