Module Values.SpendingLimitSummarySource

Contains summary information about a spending limit, including current spending status and configuration details.

Sourcetype nonrec t = {
  1. spendingLimitArn : SpendingLimitArn.t option;
    (*

    The Amazon Resource Name (ARN) that uniquely identifies the spending limit.

    *)
  2. deviceArn : DeviceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the quantum device associated with this spending limit.

    *)
  3. timePeriod : TimePeriod.t option;
    (*

    The time period during which the spending limit is active.

    *)
  4. spendingLimit : String_.t option;
    (*

    The maximum spending amount allowed for the device during the specified time period, in USD.

    *)
  5. queuedSpend : String_.t option;
    (*

    The amount currently queued for spending on the device, in USD.

    *)
  6. totalSpend : String_.t option;
    (*

    The total amount spent on the device so far during the current time period, in USD.

    *)
  7. createdAt : SyntheticTimestamp_date_time.t option;
    (*

    The date and time when the spending limit was created, in epoch seconds.

    *)
  8. updatedAt : SyntheticTimestamp_date_time.t option;
    (*

    The date and time when the spending limit was last modified, in epoch seconds.

    *)
  9. tags : TagsMap.t option;
    (*

    The tags associated with the spending limit. Each tag consists of a key and an optional value.

    *)
}
Sourceval make : ?spendingLimitArn:??? -> ?deviceArn:??? -> ?timePeriod:??? -> ?spendingLimit:??? -> ?queuedSpend:??? -> ?totalSpend:??? -> ?createdAt:??? -> ?updatedAt:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of SpendingLimitArn.t | `Structure of (string * [> `Timestamp of SyntheticTimestamp_epoch_seconds.t ]) list | `Timestamp of SyntheticTimestamp_date_time.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