Module Values.GlobalSecondaryIndexWarmThroughputDescriptionSource

The description of the warm throughput value on a global secondary index.

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

    Represents warm throughput read units per second value for a global secondary index.

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

    Represents warm throughput write units per second value for a global secondary index.

    *)
  3. status : IndexStatus.t option;
    (*

    Represents the warm throughput status being created or updated on a global secondary index. The status can only be UPDATING or ACTIVE.

    *)
}
Sourceval make : ?readUnitsPerSecond:??? -> ?writeUnitsPerSecond:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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