Module Values.BudgetSummarySource

The budget summary.

Sourcetype nonrec t = {
  1. budgetId : BudgetId.t option;
    (*

    The budget ID.

    *)
  2. usageTrackingResource : UsageTrackingResource.t option;
    (*

    The resource used to track expenditure in the budget.

    *)
  3. status : BudgetStatus.t option;
    (*

    The status of the budget. ACTIVE–The budget is being evaluated. INACTIVE–The budget is inactive. This can include Expired, Canceled, or deleted Deleted statuses.

    *)
  4. displayName : ResourceName.t option;
    (*

    The display name of the budget summary to update. This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.

    *)
  5. approximateDollarLimit : ConsumedUsageLimit.t option;
    (*

    The approximate dollar limit of the budget.

    *)
  6. usages : ConsumedUsages.t option;
    (*

    The consumed usage for the budget.

    *)
  7. createdBy : CreatedBy.t option;
    (*

    The user or system that created this resource.

    *)
  8. createdAt : CreatedAt.t option;
    (*

    The date and time the resource was created.

    *)
  9. updatedBy : UpdatedBy.t option;
    (*

    The user or system that updated this resource.

    *)
  10. updatedAt : UpdatedAt.t option;
    (*

    The date and time the resource was updated.

    *)
  11. description : Description.t option;
    (*

    The description of the budget summary. This field can store any content. Escape or encode this content before displaying it on a webpage or any other system that might interpret the content of this field.

    *)
}
Sourceval make : ?budgetId:??? -> ?usageTrackingResource:??? -> ?status:??? -> ?displayName:??? -> ?approximateDollarLimit:??? -> ?usages:??? -> ?createdBy:??? -> ?createdAt:??? -> ?updatedBy:??? -> ?updatedAt:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Float of ConsumedUsageLimit.t | `String of BudgetId.t | `Structure of (string * [> `Float of Float_.t | `String of QueueId.t ]) list | `Timestamp of CreatedAt.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