Module Values.DescribeLimitsOutputSource

Describes the shard limits and usage for the account. If you update your account limits, the old limits might be returned for a few minutes. This operation has a limit of one transaction per second per account.

Sourcetype nonrec t = {
  1. shardLimit : ShardCountObject.t option;
    (*

    The maximum number of shards.

    *)
  2. openShardCount : ShardCountObject.t option;
    (*

    The number of open shards.

    *)
  3. onDemandStreamCount : OnDemandStreamCountObject.t option;
    (*

    Indicates the number of data streams with the on-demand capacity mode.

    *)
  4. onDemandStreamCountLimit : OnDemandStreamCountLimitObject.t option;
    (*

    The maximum number of data streams with the on-demand capacity mode.

    *)
}
Sourcetype nonrec error = [
  1. | `LimitExceededException of LimitExceededException.t
  2. | `Unknown_operation_error of string * string option
]
Sourceval make : ?shardLimit:??? -> ?openShardCount:??? -> ?onDemandStreamCount:??? -> ?onDemandStreamCountLimit:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `LimitExceededException of LimitExceededException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `LimitExceededException of LimitExceededException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of ShardCountObject.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