Module Values.UpdateUsageLimitRequestSource

Update a usage limit in Amazon Redshift Serverless. You can't update the usage type or period of a usage limit.

Sourcetype nonrec t = {
  1. amount : Long.t option;
    (*

    The new limit amount. If time-based, this amount is in Redshift Processing Units (RPU) consumed per hour. If data-based, this amount is in terabytes (TB) of data transferred between Regions in cross-account sharing. The value must be a positive number.

    *)
  2. breachAction : UsageLimitBreachAction.t option;
    (*

    The new action that Amazon Redshift Serverless takes when the limit is reached.

    *)
  3. usageLimitId : String_.t;
    (*

    The identifier of the usage limit to update.

    *)
}
Sourceval context_ : string
Sourceval make : ?amount:??? -> ?breachAction:??? -> usageLimitId:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of Long.t | `String of String_.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