Module Values.UpdateSpendingLimitRequestSource

Updates an existing spending limit. You can modify the spending amount or time period. Changes take effect immediately.

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

    The Amazon Resource Name (ARN) of the spending limit to update.

    *)
  2. clientToken : String64.t;
    (*

    A unique, case-sensitive identifier to ensure that the operation completes no more than one time. If this token matches a previous request, Amazon Braket ignores the request, but does not return an error.

    *)
  3. spendingLimit : UpdateSpendingLimitRequestSpendingLimitString.t option;
    (*

    The new maximum amount that can be spent on the specified device, in USD.

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

    The new time period during which the spending limit is active, including start and end dates.

    *)
}
Sourceval context_ : string
Sourceval make : ?spendingLimit:??? -> ?timePeriod:??? -> spendingLimitArn:SpendingLimitArn.t -> clientToken:String64.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SpendingLimitArn.t | `Structure of (string * [> `Timestamp of SyntheticTimestamp_epoch_seconds.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