Module Values.DescribeLimitsOutputSource

Represents the output of a DescribeLimits operation.

Sourcetype nonrec t = {
  1. accountMaxReadCapacityUnits : PositiveLongObject.t option;
    (*

    The maximum total read capacity units that your account allows you to provision across all of your tables in this Region.

    *)
  2. accountMaxWriteCapacityUnits : PositiveLongObject.t option;
    (*

    The maximum total write capacity units that your account allows you to provision across all of your tables in this Region.

    *)
  3. tableMaxReadCapacityUnits : PositiveLongObject.t option;
    (*

    The maximum read capacity units that your account allows you to provision for a new table that you are creating in this Region, including the read capacity units provisioned for its global secondary indexes (GSIs).

    *)
  4. tableMaxWriteCapacityUnits : PositiveLongObject.t option;
    (*

    The maximum write capacity units that your account allows you to provision for a new table that you are creating in this Region, including the write capacity units provisioned for its global secondary indexes (GSIs).

    *)
}
Sourcetype nonrec error = [
  1. | `InternalServerError of InternalServerError.t
  2. | `Unknown_operation_error of string * string option
]
Sourceval make : ?accountMaxReadCapacityUnits:??? -> ?accountMaxWriteCapacityUnits:??? -> ?tableMaxReadCapacityUnits:??? -> ?tableMaxWriteCapacityUnits:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalServerError of InternalServerError.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalServerError of InternalServerError.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of PositiveLongObject.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