Module Values.AccessBudgetSource

Controls and tracks usage limits for associated configured tables within a collaboration across queries and job. Supports both period-based budgets that can renew (daily, weekly, or monthly) and fixed lifetime budgets. Contains the resource ARN, remaining budget information, and up to two budget configurations (period-based and lifetime). By default, table usage is unlimited unless a budget is configured.

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

    The Amazon Resource Name (ARN) of the access budget resource.

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

    Detailed budget information including time bounds, remaining budget, and refresh settings.

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

    The total remaining budget across all budget parameters, showing the lower value between the per-period budget and lifetime budget for this access budget. For individual parameter budgets, see remainingBudget.

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